writerfilter/CustomTarget_source.mk        |    7 --
 writerfilter/source/ooxml/namespaceids.py  |   53 ++++++++++++++++
 writerfilter/source/ooxml/namespaceids.xsl |   92 -----------------------------
 writerfilter/source/ooxml/qnametostr.py    |    1 
 4 files changed, 56 insertions(+), 97 deletions(-)

New commits:
commit 785dc709d5d560666ef3150c4506286f4a20925b
Author: Miklos Vajna <vmik...@collabora.co.uk>
Date:   Sun Jul 6 12:42:54 2014 +0200

    writerfilter: convert namespaceids to Python
    
    Change-Id: Ia57a41aba91f00f3c1fb63a82c9793bf43434afb

diff --git a/writerfilter/CustomTarget_source.mk 
b/writerfilter/CustomTarget_source.mk
index a7413d0..989a623 100644
--- a/writerfilter/CustomTarget_source.mk
+++ b/writerfilter/CustomTarget_source.mk
@@ -75,7 +75,6 @@ 
writerfilter_SRC_ooxml_FactoryValues_py=$(writerfilter_SRC)/ooxml/factory_values
 writerfilter_SRC_ooxml_FastTokens_py=$(writerfilter_SRC)/ooxml/fasttokens.py
 
writerfilter_SRC_ooxml_GperfFastTokenHandler_py=$(writerfilter_SRC)/ooxml/gperffasttokenhandler.py
 writerfilter_SRC_ooxml_Model=$(writerfilter_SRC)/ooxml/model.xml
-writerfilter_SRC_ooxml_NamespaceIds_xsl=$(writerfilter_SRC)/ooxml/namespaceids.xsl
 
writerfilter_SRC_ooxml_Preprocess_py=$(writerfilter_SRC)/ooxml/modelpreprocess.py
 writerfilter_SRC_ooxml_QNameToStr_py=$(writerfilter_SRC)/ooxml/qnametostr.py
 writerfilter_SRC_ooxml_ResourceIds_py=$(writerfilter_SRC)/ooxml/resourceids.py
@@ -105,9 +104,9 @@ $(writerfilter_GEN_ooxml_Model_processed) : 
$(writerfilter_SRC_ooxml_Preprocess_
        $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),build,PY ,1)
        $(call gb_Helper_abbreviate_dirs, $(writerfilter_PYTHONCOMMAND) 
$(writerfilter_SRC_ooxml_Preprocess_py) 
$(writerfilter_DEP_ooxml_Namespaces_txt) $(writerfilter_SRC_ooxml_Model)) > $@
 
-$(writerfilter_GEN_ooxml_NamespaceIds_hxx) : 
$(writerfilter_SRC_ooxml_NamespaceIds_xsl) 
$(writerfilter_GEN_ooxml_Model_processed) | $(writerfilter_WORK)/ooxml/.dir
-       $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),build,XSL,1)
-       $(call gb_Helper_abbreviate_dirs, $(writerfilter_XSLTCOMMAND) 
$(writerfilter_SRC_ooxml_NamespaceIds_xsl) 
$(writerfilter_GEN_ooxml_Model_processed)) > $@
+$(writerfilter_GEN_ooxml_NamespaceIds_hxx) : 
$(writerfilter_SRC)/ooxml/namespaceids.py 
$(writerfilter_GEN_ooxml_Model_processed) | $(writerfilter_WORK)/ooxml/.dir
+       $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),build,PY ,1)
+       $(call gb_Helper_abbreviate_dirs, $(writerfilter_PYTHONCOMMAND) $< 
$(writerfilter_GEN_ooxml_Model_processed)) > $@
 
 $(writerfilter_GEN_ooxml_QNameToStr_cxx): 
$(writerfilter_SRC_ooxml_QNameToStr_py) 
$(writerfilter_GEN_ooxml_Model_processed)
        $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),build,PY ,1)
diff --git a/writerfilter/source/ooxml/namespaceids.py 
b/writerfilter/source/ooxml/namespaceids.py
new file mode 100644
index 0000000..2135b48
--- /dev/null
+++ b/writerfilter/source/ooxml/namespaceids.py
@@ -0,0 +1,53 @@
+#!/usr/bin/env python
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+
+from __future__ import print_function
+import xml.sax
+import sys
+
+
+class ContentHandler(xml.sax.handler.ContentHandler):
+    def __init__(self):
+        self.tokens = []
+
+    def startDocument(self):
+        print("""
+#ifndef INCLUDED_OOXML_NAMESPACESIDS_HXX
+#define INCLUDED_OOXML_NAMESPACESIDS_HXX
+
+#include <map>
+#include <vector>
+#include <boost/shared_ptr.hpp>
+#include <string>
+
+#include <resourcemodel/WW8ResourceModel.hxx>
+
+namespace writerfilter {
+namespace ooxml {
+using namespace ::std;
+using namespace ::com::sun::star;
+""")
+
+    def endDocument(self):
+        print("""
+}}
+#endif //INCLUDED_OOXML_NAMESPACESIDS_HXX""")
+
+    def startElement(self, name, attrs):
+        if name == "namespace-alias":
+            token = """const sal_uInt32 NS_%s = %s;""" % (attrs["alias"], 
attrs["id"])
+            if token not in self.tokens:
+                self.tokens.append(token)
+                print(token)
+
+parser = xml.sax.make_parser()
+parser.setContentHandler(ContentHandler())
+parser.parse(sys.argv[1])
+
+# vim:set shiftwidth=4 softtabstop=4 expandtab:
diff --git a/writerfilter/source/ooxml/namespaceids.xsl 
b/writerfilter/source/ooxml/namespaceids.xsl
deleted file mode 100644
index d92593d..0000000
--- a/writerfilter/source/ooxml/namespaceids.xsl
+++ /dev/null
@@ -1,92 +0,0 @@
-<!--
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- *   Licensed to the Apache Software Foundation (ASF) under one or more
- *   contributor license agreements. See the NOTICE file distributed
- *   with this work for additional information regarding copyright
- *   ownership. The ASF licenses this file to you under the Apache
- *   License, Version 2.0 (the "License"); you may not use this file
- *   except in compliance with the License. You may obtain a copy of
- *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
--->
-<xsl:stylesheet 
-    version="1.0" 
-    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; 
-    xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" 
-    xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" 
-    xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" 
-    xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" 
-    xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" 
-    xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" 
-    xmlns:xlink="http://www.w3.org/1999/xlink"; 
-    xmlns:dc="http://purl.org/dc/elements/1.1/"; 
-    xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
-    xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
-    xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
-    xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
-    xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
-    xmlns:math="http://www.w3.org/1998/Math/MathML"; 
-    xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" 
-    xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
-    xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" 
-    xmlns:ooo="http://openoffice.org/2004/office"; 
-    xmlns:ooow="http://openoffice.org/2004/writer"; 
-    xmlns:oooc="http://openoffice.org/2004/calc"; 
-    xmlns:dom="http://www.w3.org/2001/xml-events"; 
-    xmlns:xforms="http://www.w3.org/2002/xforms"; 
-    xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
-    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
-    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";  
-    xmlns:rng="http://relaxng.org/ns/structure/1.0";
-    xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"; 
-    xmlns:UML = 'org.omg.xmi.namespace.UML' xml:space="default">
-  <xsl:output method="text" />
-  <xsl:param name="prefix"/>
-  
-  <xsl:include href="factorytools.xsl"/>
-
-<xsl:key name="namespaces-by-id" match="namespace-alias" use="@id"/>
-<xsl:template name="namespaceids">
-  <xsl:for-each select="//namespace-alias[generate-id() = 
generate-id(key('namespaces-by-id', @id)[1])]">
-    <xsl:text>
-const sal_uInt32 </xsl:text>
-<xsl:call-template name="namespaceid"/>
-<xsl:text> = </xsl:text>
-<xsl:value-of select="@id"/>
-<xsl:text>;</xsl:text>
-  </xsl:for-each>
-</xsl:template>
-
-  <xsl:template match="/">
-    <out xml:space="preserve">
-      <xsl:call-template name="licenseheader"/>
-      <xsl:text>
-#ifndef INCLUDED_OOXML_NAMESPACESIDS_HXX
-#define INCLUDED_OOXML_NAMESPACESIDS_HXX
-
-#include &lt;map&gt;
-#include &lt;vector&gt;
-#include &lt;boost/shared_ptr.hpp&gt;
-#include &lt;string&gt;
-
-#include &lt;resourcemodel/WW8ResourceModel.hxx&gt;
-
-namespace writerfilter {
-namespace ooxml {
-using namespace ::std;
-using namespace ::com::sun::star;
-</xsl:text>
-<xsl:call-template name="namespaceids"/>
-<xsl:text>
-
-}}
-#endif //INCLUDED_OOXML_NAMESPACESIDS_HXX&#xa;</xsl:text></out></xsl:template>
-
-  <xsl:template match="*"/>
-</xsl:stylesheet>
diff --git a/writerfilter/source/ooxml/qnametostr.py 
b/writerfilter/source/ooxml/qnametostr.py
index 520f135..e03d6bf 100644
--- a/writerfilter/source/ooxml/qnametostr.py
+++ b/writerfilter/source/ooxml/qnametostr.py
@@ -38,7 +38,6 @@ void QNameToString::init_ooxml()
 """)
 
     def startElement(self, name, attrs):
-        pass
         for k, v in list(attrs.items()):
             if k == "tokenid":
                 if v.startswith("ooxml:"):
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to