1 /* This file is part of EdiTeX, an editor of mathematical
2 * expressions based on TeX syntax.
4 * Copyright (C) 2002-2003 Luca Padovani <lpadovan@cs.unibo.it>,
5 * 2003 Paolo Marinelli <pmarinel@cs.unibo.it>.
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 * For more information, please visit the project's home page
22 * http://helm.cs.unibo.it/editex/
23 * or send an email to <lpadovan@cs.unibo.it>
33 #include "TDocument.hh"
34 #include "CMathMLFactoryXSLTDiff.hh"
35 #include "AMathMLConsumer.hh"
37 CMathMLFactoryXSLTDiff::CMathMLFactoryXSLTDiff(ALogger& l, const DOMX::XSLTStylesheet& s)
38 : AMathMLFactory(l), style(s)
40 DOM::DOMImplementation di;
42 result = di.createDocument(MATHML_NS_URI, "m:math", dt);
46 CMathMLFactoryXSLTDiff::documentModified(TDocument& doc)
49 std::vector< std::pair<DOM::GdomeString, DOM::GdomeString> > dirtyId;
50 if (TNode dirty = doc.dirtyNode())
51 if (false && result.get_documentElement().hasAttribute("xref"))
52 dirtyId.push_back(std::make_pair(DOM::GdomeString("id"),
53 DOM::GdomeString("'" + std::string(dirty["id"]) + "'")));
56 DOM::Document res = style.apply(doc.document());
59 //cout << "*** THE TEX DOCUMENT" << endl;
60 //style.save(doc.document(), stdout);
61 //std::cout << "*** THE CURRENT DOCUMENT:" << std::endl;
62 //if (result) style.save(result, stdout);
63 //std::cout << "*** THE NEW DOCUMENT:" << std::endl;
64 //style.save(res, stdout);
65 //std::cout << "*** THE DIFF:" << std::endl;
66 DOMX::Diff diff = DOMX::Diff::diff(result, res);
67 //style.save(diff.document(), stdout);
72 //std::cout << "=== APPLY = " << (t1 - t0) / 1000 << " DIFF = " << (t2 - t1) / 1000 << " PATCH = " << (t3 - t2) / 1000 << std::endl;
78 CMathMLFactoryXSLTDiff::subst(const DOM::Element& e1, const DOM::GdomeString& id, const DOM::Element& e2)
82 if (e1.getAttribute("xref") == id)
84 DOMX::Diff diff = DOMX::Diff::diff(e1, e2);
85 //style.save(diff.document(), stdout);
91 DOM::Node p = e1.get_firstChild();
94 while (p && p.get_nodeType() != DOM::Node::ELEMENT_NODE) p = p.get_nextSibling();
96 if (subst(p, id, e2)) return true;
97 else p = p.get_nextSibling();