jdonohue 00/03/23 04:59:37
Modified: c/src/XSLT Constants.cpp Constants.hpp StylesheetRoot.cpp
StylesheetRoot.hpp XSLTEngineImpl.cpp
Log:
Implemented omit-xml-declaration
Revision Changes Path
1.2 +2 -1 xml-xalan/c/src/XSLT/Constants.cpp
Index: Constants.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XSLT/Constants.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Constants.cpp 2000/01/26 20:33:24 1.1
+++ Constants.cpp 2000/03/23 12:59:36 1.2
@@ -210,7 +210,8 @@
const DOMString
Constants::ATTRNAME_OUTPUT_MEDIATYPE(XALAN_STATIC_UCODE_STRING("media-type"));
const DOMString Constants::ATTRNAME_OUTPUT_STANDALONE
(XALAN_STATIC_UCODE_STRING("standalone"));
const DOMString
Constants::ATTRNAME_OUTPUT_VERSION(XALAN_STATIC_UCODE_STRING("version"));
-const DOMString
Constants::ATTRNAME_OUTPUT_XMLDECL(XALAN_STATIC_UCODE_STRING("xml-declaration"));
+//const DOMString
Constants::ATTRNAME_OUTPUT_XMLDECL(XALAN_STATIC_UCODE_STRING("xml-declaration"));
+const DOMString
Constants::ATTRNAME_OUTPUT_OMITXMLDECL(XALAN_STATIC_UCODE_STRING("omit-xml-declaration"));
const DOMString
Constants::ATTRVAL_OUTPUT_METHOD_HTML(XALAN_STATIC_UCODE_STRING("html"));
const DOMString
Constants::ATTRVAL_OUTPUT_METHOD_XML(XALAN_STATIC_UCODE_STRING("xml"));
const DOMString
Constants::ATTRVAL_OUTPUT_METHOD_TEXT(XALAN_STATIC_UCODE_STRING("text"));
1.4 +5 -2 xml-xalan/c/src/XSLT/Constants.hpp
Index: Constants.hpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XSLT/Constants.hpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- Constants.hpp 2000/01/26 20:33:07 1.3
+++ Constants.hpp 2000/03/23 12:59:36 1.4
@@ -342,7 +342,9 @@
static const DOMString ATTRNAME_OUTPUT_MEDIATYPE;
static const DOMString ATTRNAME_OUTPUT_STANDALONE;
static const DOMString ATTRNAME_OUTPUT_VERSION;
- static const DOMString ATTRNAME_OUTPUT_XMLDECL;
+// static const DOMString ATTRNAME_OUTPUT_XMLDECL;
+ static const DOMString ATTRNAME_OUTPUT_OMITXMLDECL;
+
static const DOMString ATTRVAL_OUTPUT_METHOD_HTML;
static const DOMString ATTRVAL_OUTPUT_METHOD_XML;
static const DOMString ATTRVAL_OUTPUT_METHOD_TEXT;
@@ -427,7 +429,8 @@
TATTRNAME_OUTPUT_MEDIATYPE = 50,
TATTRNAME_OUTPUT_STANDALONE= 51,
TATTRNAME_OUTPUT_VERSION = 52,
- TATTRNAME_OUTPUT_XMLDECL = 53,
+ TATTRNAME_OUTPUT_OMITXMLDECL = 53,
+ // TATTRNAME_OUTPUT_XMLDECL = 53,
TATTRNAME_PRIORITY = 54,
TATTRNAME_REFID = 55,
TATTRNAME_RESULTNS = 56,
1.7 +5 -5 xml-xalan/c/src/XSLT/StylesheetRoot.cpp
Index: StylesheetRoot.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XSLT/StylesheetRoot.cpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- StylesheetRoot.cpp 2000/03/20 17:34:54 1.6
+++ StylesheetRoot.cpp 2000/03/23 12:59:36 1.7
@@ -124,7 +124,7 @@
m_mediatype(),
m_doctypeSystem(),
m_doctypePublic(),
- m_xmlDecl(true),
+ m_omitxmlDecl(false),
m_standalone(),
m_cdataSectionElems(),
m_defaultTextRule(0),
@@ -297,7 +297,7 @@
case Formatter::OUTPUT_METH_HTML:
flistener = new FormatterToHTML(
*pw, m_version, doIndent, indentAmount,
m_encoding, m_mediatype,
- m_doctypeSystem, m_doctypePublic,
m_xmlDecl, m_standalone,
+ m_doctypeSystem, m_doctypePublic, !
m_omitxmlDecl, m_standalone,
&m_cdataSectionElems);
newListener = true;
break;
@@ -309,7 +309,7 @@
default:
flistener = new FormatterToXML(
*pw, m_version, doIndent, indentAmount,
m_encoding, m_mediatype,
- m_doctypeSystem, m_doctypePublic,
m_xmlDecl, m_standalone,
+ m_doctypeSystem, m_doctypePublic, !
m_omitxmlDecl, m_standalone,
&m_cdataSectionElems);
newListener = true;
break;
@@ -528,9 +528,9 @@
{
m_doctypePublic = atts.getValue(i);
}
- else if(equals(aname,Constants::ATTRNAME_OUTPUT_XMLDECL))
+ else if(equals(aname,Constants::ATTRNAME_OUTPUT_OMITXMLDECL))
{
- m_xmlDecl = getYesOrNo(aname, atts.getValue(i),
constructionContext);
+ m_omitxmlDecl = getYesOrNo(aname, atts.getValue(i),
constructionContext);
}
else if(equals(aname,Constants::ATTRNAME_OUTPUT_STANDALONE))
{
1.6 +3 -3 xml-xalan/c/src/XSLT/StylesheetRoot.hpp
Index: StylesheetRoot.hpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XSLT/StylesheetRoot.hpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- StylesheetRoot.hpp 2000/03/01 20:43:44 1.5
+++ StylesheetRoot.hpp 2000/03/23 12:59:36 1.6
@@ -58,7 +58,7 @@
#define XALAN_STYLESHEETROOT_HEADER_GUARD
/**
- * $Id: StylesheetRoot.hpp,v 1.5 2000/03/01 20:43:44 jdonohue Exp $
+ * $Id: StylesheetRoot.hpp,v 1.6 2000/03/23 12:59:36 jdonohue Exp $
*
* $State: Exp $
*
@@ -198,7 +198,7 @@
*
* @return true to output declarations
*/
- bool getOutputXMLDecl() { return m_xmlDecl; }
+ bool getOmitOutputXMLDecl() { return m_omitxmlDecl; }
/**
* Get the standalone string that was specified in the stylesheet,
either
@@ -307,7 +307,7 @@
/**
* Tells whether or not to output an XML declaration.
*/
- bool m_xmlDecl; // = false;
+ bool m_omitxmlDecl; // = false;
/**
* Tells what the xmldecl should specify for the standalone value.
1.19 +2 -141 xml-xalan/c/src/XSLT/XSLTEngineImpl.cpp
Index: XSLTEngineImpl.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XSLT/XSLTEngineImpl.cpp,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- XSLTEngineImpl.cpp 2000/03/21 15:39:02 1.18
+++ XSLTEngineImpl.cpp 2000/03/23 12:59:36 1.19
@@ -55,7 +55,7 @@
* <http://www.apache.org/>.
*/
/**
- * $Id: XSLTEngineImpl.cpp,v 1.18 2000/03/21 15:39:02 jdonohue Exp $
+ * $Id: XSLTEngineImpl.cpp,v 1.19 2000/03/23 12:59:36 jdonohue Exp $
*
* $State: Exp $
*
@@ -902,145 +902,6 @@
// SECTION: XSL directive handling functions
//==========================================================
-#if 0
-void
-XSLTEngineImpl::initXSLTKeys()
-{
- m_elementKeys.clear();
-
- m_elementKeys[Constants::ELEMNAME_APPLY_TEMPLATES_STRING] =
Constants::ELEMNAME_APPLY_TEMPLATES;
- m_elementKeys[Constants::ELEMNAME_WITHPARAM_STRING] =
Constants::ELEMNAME_WITHPARAM;
- m_elementKeys[Constants::ELEMNAME_CONSTRUCT_STRING] =
Constants::ELEMNAME_CONSTRUCT;
- m_elementKeys[Constants::ELEMNAME_CONTENTS_STRING] =
Constants::ELEMNAME_CONTENTS;
- m_elementKeys[Constants::ELEMNAME_COPY_STRING] =
Constants::ELEMNAME_COPY;
- m_elementKeys[Constants::ELEMNAME_COPY_OF_STRING] =
Constants::ELEMNAME_COPY_OF;
-
- m_elementKeys[Constants::ELEMNAME_ATTRIBUTESET_STRING] =
Constants::ELEMNAME_DEFINEATTRIBUTESET;
-
- m_elementKeys[Constants::ELEMNAME_USE_STRING] = Constants::ELEMNAME_USE;
-
- m_elementKeys[Constants::ELEMNAME_VARIABLE_STRING] =
Constants::ELEMNAME_VARIABLE;
- m_elementKeys[Constants::ELEMNAME_PARAMVARIABLE_STRING] =
Constants::ELEMNAME_PARAMVARIABLE;
-
- m_elementKeys[Constants::ELEMNAME_DISPLAYIF_STRING] =
Constants::ELEMNAME_DISPLAYIF;
- m_elementKeys[Constants::ELEMNAME_EMPTY_STRING] =
Constants::ELEMNAME_EMPTY;
- m_elementKeys[Constants::ELEMNAME_EVAL_STRING] =
Constants::ELEMNAME_EVAL;
- m_elementKeys[Constants::ELEMNAME_CALLTEMPLATE_STRING] =
Constants::ELEMNAME_CALLTEMPLATE;
- m_elementKeys[Constants::ELEMNAME_TEMPLATE_STRING] =
Constants::ELEMNAME_TEMPLATE;
- m_elementKeys[Constants::ELEMNAME_STYLESHEET_STRING] =
Constants::ELEMNAME_STYLESHEET;
- m_elementKeys[Constants::ELEMNAME_TRANSFORM_STRING] =
Constants::ELEMNAME_STYLESHEET;
- m_elementKeys[Constants::ELEMNAME_IMPORT_STRING] =
Constants::ELEMNAME_IMPORT;
- m_elementKeys[Constants::ELEMNAME_INCLUDE_STRING] =
Constants::ELEMNAME_INCLUDE;
- m_elementKeys[Constants::ELEMNAME_FOREACH_STRING] =
Constants::ELEMNAME_FOREACH;
- m_elementKeys[Constants::ELEMNAME_VALUEOF_STRING] =
Constants::ELEMNAME_VALUEOF;
- m_elementKeys[Constants::ELEMNAME_KEY_STRING] = Constants::ELEMNAME_KEY;
- m_elementKeys[Constants::ELEMNAME_STRIPSPACE_STRING] =
Constants::ELEMNAME_STRIPSPACE;
- m_elementKeys[Constants::ELEMNAME_PRESERVESPACE_STRING] =
Constants::ELEMNAME_PRESERVESPACE;
- m_elementKeys[Constants::ELEMNAME_NUMBER_STRING] =
Constants::ELEMNAME_NUMBER;
- m_elementKeys[Constants::ELEMNAME_IF_STRING] = Constants::ELEMNAME_IF;
- m_elementKeys[Constants::ELEMNAME_CHOOSE_STRING] =
Constants::ELEMNAME_CHOOSE;
- m_elementKeys[Constants::ELEMNAME_WHEN_STRING] =
Constants::ELEMNAME_WHEN;
- m_elementKeys[Constants::ELEMNAME_OTHERWISE_STRING] =
Constants::ELEMNAME_OTHERWISE;
- m_elementKeys[Constants::ELEMNAME_TEXT_STRING] =
Constants::ELEMNAME_TEXT;
- m_elementKeys[Constants::ELEMNAME_ELEMENT_STRING] =
Constants::ELEMNAME_ELEMENT;
- m_elementKeys[Constants::ELEMNAME_ATTRIBUTE_STRING] =
Constants::ELEMNAME_ATTRIBUTE;
- m_elementKeys[Constants::ELEMNAME_SORT_STRING] =
Constants::ELEMNAME_SORT;
- m_elementKeys[Constants::ELEMNAME_PI_STRING] = Constants::ELEMNAME_PI;
- m_elementKeys[Constants::ELEMNAME_COMMENT_STRING] =
Constants::ELEMNAME_COMMENT;
-
- m_elementKeys[Constants::ELEMNAME_COUNTER_STRING] =
Constants::ELEMNAME_COUNTER;
- m_elementKeys[Constants::ELEMNAME_COUNTERS_STRING] =
Constants::ELEMNAME_COUNTERS;
- m_elementKeys[Constants::ELEMNAME_COUNTERINCREMENT_STRING] =
Constants::ELEMNAME_COUNTERINCREMENT;
- m_elementKeys[Constants::ELEMNAME_COUNTERRESET_STRING] =
Constants::ELEMNAME_COUNTERRESET;
- m_elementKeys[Constants::ELEMNAME_COUNTERSCOPE_STRING] =
Constants::ELEMNAME_COUNTERSCOPE;
-
- m_elementKeys[Constants::ELEMNAME_APPLY_IMPORTS_STRING] =
Constants::ELEMNAME_APPLY_IMPORTS;
-
- m_elementKeys[Constants::ELEMNAME_EXTENSION_STRING] =
Constants::ELEMNAME_EXTENSION;
-
- m_elementKeys[Constants::ELEMNAME_MESSAGE_STRING] =
Constants::ELEMNAME_MESSAGE;
- m_elementKeys[Constants::ELEMNAME_LOCALE_STRING] =
Constants::ELEMNAME_LOCALE;
- m_elementKeys[Constants::ELEMNAME_FALLBACK_STRING] =
Constants::ELEMNAME_FALLBACK;
-
- m_elementKeys[Constants::ELEMNAME_OUTPUT_STRING] =
Constants::ELEMNAME_OUTPUT;
-
- m_XSLT4JElementKeys[Constants::ELEMNAME_CSSSTYLECONVERSION_STRING] =
Constants::ELEMNAME_CSSSTYLECONVERSION;
-
- m_XSLT4JElementKeys[Constants::ELEMNAME_COMPONENT_STRING] =
Constants::ELEMNAME_COMPONENT;
- m_XSLT4JElementKeys[Constants::ELEMNAME_SCRIPT_STRING] =
Constants::ELEMNAME_SCRIPT;
-
- m_attributeKeys[Constants::ATTRNAME_OUTPUT_METHOD] =
Constants::TATTRNAME_OUTPUT_METHOD;
- m_attributeKeys[Constants::ATTRNAME_AMOUNT] =
Constants::TATTRNAME_AMOUNT;
- m_attributeKeys[Constants::ATTRNAME_ANCESTOR] =
Constants::TATTRNAME_ANCESTOR;
- m_attributeKeys[Constants::ATTRNAME_ARCHIVE] =
Constants::TATTRNAME_ARCHIVE;
- m_attributeKeys[Constants::ATTRNAME_ATTRIBUTE] =
Constants::TATTRNAME_ATTRIBUTE;
- m_attributeKeys[Constants::ATTRNAME_ATTRIBUTE_SET] =
Constants::TATTRNAME_ATTRIBUTE_SET;
- m_attributeKeys[Constants::ATTRNAME_CASEORDER] =
Constants::TATTRNAME_CASEORDER;
- m_attributeKeys[Constants::ATTRNAME_CLASS] = Constants::TATTRNAME_CLASS;
- m_attributeKeys[Constants::ATTRNAME_CLASSID] =
Constants::TATTRNAME_CLASSID;
- m_attributeKeys[Constants::ATTRNAME_CODEBASE] =
Constants::TATTRNAME_CODEBASE;
- m_attributeKeys[Constants::ATTRNAME_CODETYPE] =
Constants::TATTRNAME_CODETYPE;
- m_attributeKeys[Constants::ATTRNAME_CONDITION] =
Constants::TATTRNAME_CONDITION;
- m_attributeKeys[Constants::ATTRNAME_COPYTYPE] =
Constants::TATTRNAME_COPYTYPE;
- m_attributeKeys[Constants::ATTRNAME_COUNT] = Constants::TATTRNAME_COUNT;
- m_attributeKeys[Constants::ATTRNAME_DATATYPE] =
Constants::TATTRNAME_DATATYPE;
- m_attributeKeys[Constants::ATTRNAME_DEFAULT] =
Constants::TATTRNAME_DEFAULT;
- m_attributeKeys[Constants::ATTRNAME_DEFAULTSPACE] =
Constants::TATTRNAME_DEFAULTSPACE;
- m_attributeKeys[Constants::ATTRNAME_DEPTH] = Constants::TATTRNAME_DEPTH;
- m_attributeKeys[Constants::ATTRNAME_DIGITGROUPSEP] =
Constants::TATTRNAME_DIGITGROUPSEP;
- m_attributeKeys[Constants::ATTRNAME_DISABLE_OUTPUT_ESCAPING] =
Constants::TATTRNAME_DISABLE_OUTPUT_ESCAPING;
- m_attributeKeys[Constants::ATTRNAME_ELEMENT] =
Constants::TATTRNAME_ELEMENT;
- m_attributeKeys[Constants::ATTRNAME_ELEMENTS] =
Constants::TATTRNAME_ELEMENTS;
- m_attributeKeys[Constants::ATTRNAME_EXPR] = Constants::TATTRNAME_EXPR;
- m_attributeKeys[Constants::ATTRNAME_EXTENSIONELEMENTPREFIXES] =
Constants::TATTRNAME_EXTENSIONELEMENTPREFIXES;
- m_attributeKeys[Constants::ATTRNAME_FORMAT] =
Constants::TATTRNAME_FORMAT;
- m_attributeKeys[Constants::ATTRNAME_FROM] = Constants::TATTRNAME_FROM;
- m_attributeKeys[Constants::ATTRNAME_GROUPINGSEPARATOR] =
Constants::TATTRNAME_GROUPINGSEPARATOR;
- m_attributeKeys[Constants::ATTRNAME_GROUPINGSIZE] =
Constants::TATTRNAME_GROUPINGSIZE;
- m_attributeKeys[Constants::ATTRNAME_HREF] = Constants::TATTRNAME_HREF;
- m_attributeKeys[Constants::ATTRNAME_ID] = Constants::TATTRNAME_ID;
- m_attributeKeys[Constants::ATTRNAME_IMPORTANCE] =
Constants::TATTRNAME_IMPORTANCE;
- m_attributeKeys[Constants::ATTRNAME_INDENTRESULT] =
Constants::TATTRNAME_INDENTRESULT;
- m_attributeKeys[Constants::ATTRNAME_LANG] = Constants::TATTRNAME_LANG;
- m_attributeKeys[Constants::ATTRNAME_LETTERVALUE] =
Constants::TATTRNAME_LETTERVALUE;
- m_attributeKeys[Constants::ATTRNAME_LEVEL] = Constants::TATTRNAME_LEVEL;
- m_attributeKeys[Constants::ATTRNAME_MATCH] = Constants::TATTRNAME_MATCH;
- m_attributeKeys[Constants::ATTRNAME_METHOD] =
Constants::TATTRNAME_METHOD;
- m_attributeKeys[Constants::ATTRNAME_MODE] = Constants::TATTRNAME_MODE;
- m_attributeKeys[Constants::ATTRNAME_NAME] = Constants::TATTRNAME_NAME;
- m_attributeKeys[Constants::ATTRNAME_NAMESPACE] =
Constants::TATTRNAME_NAMESPACE;
- m_attributeKeys[Constants::ATTRNAME_NDIGITSPERGROUP] =
Constants::TATTRNAME_NDIGITSPERGROUP;
- m_attributeKeys[Constants::ATTRNAME_NS] = Constants::TATTRNAME_NS;
- m_attributeKeys[Constants::ATTRNAME_ONLY] = Constants::TATTRNAME_ONLY;
- m_attributeKeys[Constants::ATTRNAME_ORDER] = Constants::TATTRNAME_ORDER;
- m_attributeKeys[Constants::ATTRNAME_OUTPUT_CDATA_SECTION_ELEMENTS] =
Constants::TATTRNAME_OUTPUT_CDATA_SECTION_ELEMENTS;
- m_attributeKeys[Constants::ATTRNAME_OUTPUT_DOCTYPE_PUBLIC] =
Constants::TATTRNAME_OUTPUT_DOCTYPE_PUBLIC;
- m_attributeKeys[Constants::ATTRNAME_OUTPUT_DOCTYPE_SYSTEM] =
Constants::TATTRNAME_OUTPUT_DOCTYPE_SYSTEM;
- m_attributeKeys[Constants::ATTRNAME_OUTPUT_ENCODING] =
Constants::TATTRNAME_OUTPUT_ENCODING;
- m_attributeKeys[Constants::ATTRNAME_OUTPUT_INDENT] =
Constants::TATTRNAME_OUTPUT_INDENT;
- m_attributeKeys[Constants::ATTRNAME_OUTPUT_MEDIATYPE] =
Constants::TATTRNAME_OUTPUT_MEDIATYPE;
- m_attributeKeys[Constants::ATTRNAME_OUTPUT_STANDALONE] =
Constants::TATTRNAME_OUTPUT_STANDALONE;
- m_attributeKeys[Constants::ATTRNAME_OUTPUT_VERSION] =
Constants::TATTRNAME_OUTPUT_VERSION;
- m_attributeKeys[Constants::ATTRNAME_OUTPUT_XMLDECL] =
Constants::TATTRNAME_OUTPUT_XMLDECL;
- m_attributeKeys[Constants::ATTRNAME_PRIORITY] =
Constants::TATTRNAME_PRIORITY;
- m_attributeKeys[Constants::ATTRNAME_REFID] = Constants::TATTRNAME_REFID;
- m_attributeKeys[Constants::ATTRNAME_RESULTNS] =
Constants::TATTRNAME_RESULTNS;
- m_attributeKeys[Constants::ATTRNAME_SELECT] =
Constants::TATTRNAME_SELECT;
- m_attributeKeys[Constants::ATTRNAME_SEQUENCESRC] =
Constants::TATTRNAME_SEQUENCESRC;
- m_attributeKeys[Constants::ATTRNAME_STYLE] = Constants::TATTRNAME_STYLE;
- m_attributeKeys[Constants::ATTRNAME_TEST] = Constants::TATTRNAME_TEST;
- m_attributeKeys[Constants::ATTRNAME_TOSTRING] =
Constants::TATTRNAME_TOSTRING;
- m_attributeKeys[Constants::ATTRNAME_TYPE] = Constants::TATTRNAME_TYPE;
- m_attributeKeys[Constants::ATTRNAME_USE] = Constants::TATTRNAME_USE;
- m_attributeKeys[Constants::ATTRNAME_USEATTRIBUTESETS] =
Constants::TATTRNAME_USEATTRIBUTESETS;
- m_attributeKeys[Constants::ATTRNAME_VALUE] = Constants::TATTRNAME_VALUE;
-
- m_attributeKeys[Constants::ATTRNAME_XMLNSDEF] =
Constants::TATTRNAME_XMLNSDEF;
- m_attributeKeys[Constants::ATTRNAME_XMLNS] = Constants::TATTRNAME_XMLNS;
- m_attributeKeys[Constants::ATTRNAME_XMLSPACE] =
Constants::TATTRNAME_XMLSPACE;
-}
-#endif
-
int
@@ -4376,7 +4237,7 @@
s_attributeKeys[Constants::ATTRNAME_OUTPUT_MEDIATYPE] =
Constants::TATTRNAME_OUTPUT_MEDIATYPE;
s_attributeKeys[Constants::ATTRNAME_OUTPUT_STANDALONE] =
Constants::TATTRNAME_OUTPUT_STANDALONE;
s_attributeKeys[Constants::ATTRNAME_OUTPUT_VERSION] =
Constants::TATTRNAME_OUTPUT_VERSION;
- s_attributeKeys[Constants::ATTRNAME_OUTPUT_XMLDECL] =
Constants::TATTRNAME_OUTPUT_XMLDECL;
+ s_attributeKeys[Constants::ATTRNAME_OUTPUT_OMITXMLDECL] =
Constants::TATTRNAME_OUTPUT_OMITXMLDECL;
s_attributeKeys[Constants::ATTRNAME_PRIORITY] =
Constants::TATTRNAME_PRIORITY;
s_attributeKeys[Constants::ATTRNAME_REFID] = Constants::TATTRNAME_REFID;
s_attributeKeys[Constants::ATTRNAME_RESULTNS] =
Constants::TATTRNAME_RESULTNS;