Skip to content
Snippets Groups Projects
Commit 7cdafb34 authored by PeiYong Zhang's avatar PeiYong Zhang
Browse files

format-pretty-print partially supported

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@173812 13f79535-47bb-0310-9956-ffa450edef68
parent d746498c
No related branches found
No related tags found
No related merge requests found
......@@ -37,6 +37,7 @@ Options:
-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.
-wfpp=xxx Enable/Disable format-pretty-print. Default off.
-? Show this help
* = Default if not provided explicitly.
......
......@@ -176,6 +176,7 @@ static const XMLCh* gMyEOLSequence = 0;
static bool gSplitCdataSections = true;
static bool gDiscardDefaultContent = true;
static bool gUseFilter = false;
static bool gFormatPrettyPrint = false;
static XercesDOMParser::ValSchemes gValScheme = XercesDOMParser::Val_Auto;
......@@ -203,6 +204,7 @@ void usage()
" -wscs=xxx Enable/Disable split-cdata-sections. Default on \n"
" -wddc=xxx Enable/Disable discard-default-content. Default on \n"
" -wflt=xxx Enable/Disable filtering. Default off \n"
" -wfpp=xxx Enable/Disable format-pretty-print. Default off \n"
" -? Show this help.\n\n"
" * = Default if not provided explicitly.\n\n"
"The parser has intrinsic support for the following encodings:\n"
......@@ -350,6 +352,21 @@ int main(int argC, char* argV[])
XMLPlatformUtils::Terminate();
return 2;
}
}
else if (!strncmp(argV[parmInd], "-wfpp=", 6))
{
const char* const parm = &argV[parmInd][6];
if (!strcmp(parm, "on"))
gFormatPrettyPrint = true;
else if (!strcmp(parm, "off"))
gFormatPrettyPrint = false;
else
{
cerr << "Unknown -wfpp= value: " << parm << endl;
XMLPlatformUtils::Terminate();
return 2;
}
}
else
{
......@@ -461,7 +478,10 @@ int main(int argC, char* argV[])
if (theSerializer->canSetFeature(XMLUni::fgDOMWRTDiscardDefaultContent, gDiscardDefaultContent))
theSerializer->setFeature(XMLUni::fgDOMWRTDiscardDefaultContent, gDiscardDefaultContent);
//
if (theSerializer->canSetFeature(XMLUni::fgDOMWRTFormatPrettyPrint, gFormatPrettyPrint))
theSerializer->setFeature(XMLUni::fgDOMWRTFormatPrettyPrint, gFormatPrettyPrint);
//
// Plug in a format target to receive the resultant
// XML stream from the serializer.
//
......
......@@ -427,6 +427,7 @@ Options:
-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
-wfpp=xxx Enable/Disable format-pretty-print. Default off
-? Show this help.
* = Default if not provided explicitly.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment