[libgsf] new namespace info



commit 4e0fc217075e147ebe47f54c6ade31b8eb042dbe
Author: Andreas J. Guelzow <aguelzow pyrshep ca>
Date:   Sat May 16 22:57:24 2009 -0600

    new namespace info
    
    2009-05-16  Andreas J. Guelzow <aguelzow pyrshep ca>
    
    	* gsf/gsf-opendoc-utils.h: add namespace enumeration constant for
    	  new OOo and Gnumeric namespaces
    	* gsf/gsf-opendoc-utils.c (gsf_ooo_ns): add new namespaces for OOo
    	  and Gnumeric
---
 ChangeLog               |    7 +++++++
 gsf/gsf-opendoc-utils.c |    5 +++++
 gsf/gsf-opendoc-utils.h |    7 ++++++-
 3 files changed, 18 insertions(+), 1 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index beb8194..b496a07 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2009-05-16  Andreas J. Guelzow <aguelzow pyrshep ca>
+
+	* gsf/gsf-opendoc-utils.h: add namespace enumeration constant for
+	  new OOo and Gnumeric namespaces
+	* gsf/gsf-opendoc-utils.c (gsf_ooo_ns): add new namespaces for OOo
+	  and Gnumeric
+
 2009-05-13  Andreas J. Guelzow <aguelzow pyrshep ca>
 
 	* gsf/gsf-libxml.c (gsf_xml_out_start_element): remove erroneous
diff --git a/gsf/gsf-opendoc-utils.c b/gsf/gsf-opendoc-utils.c
index d5013df..47e1644 100644
--- a/gsf/gsf-opendoc-utils.c
+++ b/gsf/gsf-opendoc-utils.c
@@ -88,6 +88,8 @@ GsfXMLInNS gsf_ooo_ns[] = {
 
 	/* OOo 3.0.x */
 	GSF_XML_IN_NS (OO_NS_OF,        "urn:oasis:names:tc:opendocument:xmlns:of:1.2"),
+	GSF_XML_IN_NS (OO_NS_FIELD,     "urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0"),
+	GSF_XML_IN_NS (OO_NS_FORMX,     "urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0"),
 
 	GSF_XML_IN_NS (OO_NS_RPT,       "http://openoffice.org/2005/report";),
 	GSF_XML_IN_NS (OO_NS_RDFA,      "http://docs.oasis-open.org/opendocument/meta/rdfa#";),
@@ -111,6 +113,9 @@ GsfXMLInNS gsf_ooo_ns[] = {
 
 	/* Microsoft Excel Formulas in ODF */
 	GSF_XML_IN_NS (OO_MS_NS_MSOXL, "http://schemas.microsoft.com/office/excel/formula";),
+
+	/* Gnumeric ODF extensions */
+	GSF_XML_IN_NS (OO_GNUM_NS_EXT, "http://www.gnumeric.org/odf-extension/1.0";),
 	{ NULL, 0 }
 };
 
diff --git a/gsf/gsf-opendoc-utils.h b/gsf/gsf-opendoc-utils.h
index 50b2276..1c3dae7 100644
--- a/gsf/gsf-opendoc-utils.h
+++ b/gsf/gsf-opendoc-utils.h
@@ -64,6 +64,8 @@ enum {
 	OO_NS_RPT,
 	OO_NS_OF,
 	OO_NS_RDFA,
+	OO_NS_FIELD,
+	OO_NS_FORMX,
 
 	/* Other OpenDocument 1.1 */
 	OO_NS_ANIM,
@@ -81,7 +83,10 @@ enum {
 	OO_CLEVERAGE_NS_DC,
 
 	/* Microsoft Excel Formulas */
-	OO_MS_NS_MSOXL
+	OO_MS_NS_MSOXL,
+
+	/* Gnumeric ODF extensions */
+	OO_GNUM_NS_EXT
 };
 
 extern GsfXMLInNS gsf_ooo_ns[];



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]