summaryrefslogtreecommitdiff
path: root/cpp/src/XMLTransform/XMLTransform.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-11-06 21:35:04 +0000
committerMarc Laukien <marc@zeroc.com>2002-11-06 21:35:04 +0000
commitef26d3cb335b4dc8ca86d499d6dba9b0e3ef9505 (patch)
treeefd40b745753bf14696290ad7b24f0e698db6704 /cpp/src/XMLTransform/XMLTransform.cpp
parentadding package (diff)
downloadice-ef26d3cb335b4dc8ca86d499d6dba9b0e3ef9505.tar.bz2
ice-ef26d3cb335b4dc8ca86d499d6dba9b0e3ef9505.tar.xz
ice-ef26d3cb335b4dc8ca86d499d6dba9b0e3ef9505.zip
fixed copyright date
Diffstat (limited to 'cpp/src/XMLTransform/XMLTransform.cpp')
-rw-r--r--cpp/src/XMLTransform/XMLTransform.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/XMLTransform/XMLTransform.cpp b/cpp/src/XMLTransform/XMLTransform.cpp
index 59199537084..3eb4695c328 100644
--- a/cpp/src/XMLTransform/XMLTransform.cpp
+++ b/cpp/src/XMLTransform/XMLTransform.cpp
@@ -422,7 +422,7 @@ convertQName(const string& qname, const DocumentInfoPtr& info)
// TODO: These cannot be allocated as static strings since xerces API calls cannot be made until
// XMLPlatformUtils::Initialize has been called.
//
-//static DOMString schemaURI("http://www.w3.org/2001/XMLSchema");
+//static DOMString schemaURI("http://www.w3.org/2002/XMLSchema");
//static DOMString schemaElementName("schema");
//
@@ -2393,7 +2393,7 @@ XMLTransform::TransformFactory::createDefaultInitializedSequenceElementTransform
DOMNode*
XMLTransform::TransformFactory::findSchemaRoot(DOMDocument* root)
{
- ArrayJanitor<XMLCh> schemaURI(XMLString::transcode("http://www.w3.org/2001/XMLSchema"));
+ ArrayJanitor<XMLCh> schemaURI(XMLString::transcode("http://www.w3.org/2002/XMLSchema"));
ArrayJanitor<XMLCh> schemaLocalName(XMLString::transcode("schema"));
DOMNodeList* nodes = root->getElementsByTagNameNS(schemaURI.get(), schemaLocalName.get());
@@ -2515,7 +2515,7 @@ XMLTransform::DBTransformer::transform(const DBEnvironmentPtr& dbEnv, const DBPt
//
const string header = "<ice:data xmlns=\"http://www.noorg.org/schemas\""
" xmlns:ice=\"http://www.zeroc.com/schemas\""
- " xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\""
+ " xmlns:xsi=\"http://www.w3.org/2002/XMLSchema-instance\""
" xsi:schemaLocation=\"http://www.noorg.org/schemas Dummy.xsd\">";
const string footer = "</ice:data>";