dbertoni 01/06/06 14:57:37
Modified: c/src/TestXSLT process.cpp
Log:
Removed EER options for controlling entity reference expansion.
Revision Changes Path
1.64 +0 -9 xml-xalan/c/src/TestXSLT/process.cpp
Index: process.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/TestXSLT/process.cpp,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- process.cpp 2001/05/02 15:41:14 1.63
+++ process.cpp 2001/06/06 21:57:35 1.64
@@ -204,8 +204,6 @@
<< endl
<< " [-ESCAPE (Specifies which characters to escape. {default
is <>&\"\'\\r\\n}]"
<< endl
- << " [-EER (Expand entity references. By default, they are
not expanded.)]"
- << endl
<< " [-INDENT n (Controls how many spaces to indent. {default
is 0})]"
<< endl
<< " [-VALIDATE (Controls whether validation occurs.
Validation is off by default.)]"
@@ -270,7 +268,6 @@
bool escapeCData;
bool setQuietConflictWarnings;
bool setQuietMode;
- bool shouldExpandEntityRefs;
bool stripCData;
bool versionOnly;
bool traceTemplates;
@@ -296,7 +293,6 @@
escapeCData(false),
setQuietConflictWarnings(false),
setQuietMode(false),
- shouldExpandEntityRefs(false),
stripCData(false),
versionOnly(false),
traceTemplates(false),
@@ -458,10 +454,6 @@
{
p.doValidation = true;
}
- else if(!compareNoCase("-EER", argv[i]))
- {
- p.shouldExpandEntityRefs = true;
- }
else if (!compareNoCase("-PARAM", argv[i]))
{
++i;
@@ -930,7 +922,6 @@
xmlParserLiaison.setSpecialCharacters(TranscodeFromLocalCodePage(c_str(params.specialCharacters)));
}
-
xmlParserLiaison.SetShouldExpandEntityRefs(params.shouldExpandEntityRefs);
xmlParserLiaison.setUseValidation(params.doValidation);
assert(params.inFileName.size() > 0);
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]