From c21c5191538d6cdaf3d89f930de016cdd69adf63 Mon Sep 17 00:00:00 2001 From: PeiYong Zhang <peiyongz@apache.org> Date: Mon, 10 Feb 2003 20:49:44 +0000 Subject: [PATCH] Remove -weol from the command line option list, since the value for -weol is taken literally, thus, value like "\n" ( not the end-of-line), is printed out in the resultant xml stream. git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@174773 13f79535-47bb-0310-9956-ffa450edef68 --- doc/domprint.xml | 1 - samples/DOMPrint/DOMPrint.cpp | 14 +------------- scripts/sanityTest_ExpectedResult.log | 1 - 3 files changed, 1 insertion(+), 15 deletions(-) diff --git a/doc/domprint.xml b/doc/domprint.xml index e115776cd..42be33697 100644 --- a/doc/domprint.xml +++ b/doc/domprint.xml @@ -33,7 +33,6 @@ Options: -wenc=XXX Use a particular encoding for output. Default is the same encoding as the input XML file. UTF-8 if input XML file has not XML declaration. - -weol=xxx Set the end of line sequence. Default set by DOMWriter. -wscs=xxx Enable/Disable split-cdata-sections. Default on. -wddc=xxx Enable/Disable discard-default-content. Default on. -wflt=xxx Enable/Disable filtering. Default off. diff --git a/samples/DOMPrint/DOMPrint.cpp b/samples/DOMPrint/DOMPrint.cpp index 859a264f0..89f8715c3 100644 --- a/samples/DOMPrint/DOMPrint.cpp +++ b/samples/DOMPrint/DOMPrint.cpp @@ -147,9 +147,6 @@ // The encoding we are to output in. If not set on the command line, // then it is defaults to the encoding of the input XML file. // -// gMyEOLSequence -// The end of line sequence we are to output. -// // gSplitCdataSections // Indicates whether split-cdata-sections is to be enabled or not. // @@ -173,7 +170,6 @@ static bool gDoCreate = false; static char* goutputfile = 0; // options for DOMWriter's features static const XMLCh* gOutputEncoding = 0; -static const XMLCh* gMyEOLSequence = 0; static bool gSplitCdataSections = true; static bool gDiscardDefaultContent = true; @@ -203,7 +199,6 @@ void usage() " -wenc=XXX Use a particular encoding for output. Default is\n" " the same encoding as the input XML file. UTF-8 if\n" " input XML file has not XML declaration.\n" - " -weol=xxx Set the end of line sequence. Default set by DOMWriter\n" " -wfile=xxx Write to a file instead of stdout.\n" " -wscs=xxx Enable/Disable split-cdata-sections. Default on\n" " -wddc=xxx Enable/Disable discard-default-content. Default on\n" @@ -311,11 +306,6 @@ int main(int argC, char* argV[]) { goutputfile = &(argV[parmInd][7]); } - else if (!strncmp(argV[parmInd], "-weol=", 6)) - { - // Get out the end of line - gMyEOLSequence = XMLString::transcode( &(argV[parmInd][6]) ); - } else if (!strncmp(argV[parmInd], "-wddc=", 6)) { const char* const parm = &argV[parmInd][6]; @@ -476,8 +466,7 @@ int main(int argC, char* argV[]) DOMImplementation *impl = DOMImplementationRegistry::getDOMImplementation(tempStr); DOMWriter *theSerializer = ((DOMImplementationLS*)impl)->createDOMWriter(); - // set user specified end of line sequence and output encoding - theSerializer->setNewLine(gMyEOLSequence); + // set user specified output encoding theSerializer->setEncoding(gOutputEncoding); // plug in user's own filter @@ -576,7 +565,6 @@ int main(int argC, char* argV[]) XMLPlatformUtils::Terminate(); delete (void *)gOutputEncoding; // const problems. - delete (void *)gMyEOLSequence; // const problems. return retval; } diff --git a/scripts/sanityTest_ExpectedResult.log b/scripts/sanityTest_ExpectedResult.log index f50247a59..8cab84076 100644 --- a/scripts/sanityTest_ExpectedResult.log +++ b/scripts/sanityTest_ExpectedResult.log @@ -426,7 +426,6 @@ Options: -wenc=XXX Use a particular encoding for output. Default is the same encoding as the input XML file. UTF-8 if input XML file has not XML declaration. - -weol=xxx Set the end of line sequence. Default set by DOMWriter -wfile=xxx Write to a file instead of stdout. -wscs=xxx Enable/Disable split-cdata-sections. Default on -wddc=xxx Enable/Disable discard-default-content. Default on -- GitLab