diff --git a/doc/program.xml b/doc/program.xml index 7d489c17fc03c12c48a141f0b0742e7d67b1d05e..3b00c8945660fa70754b2e52f0ae17e0a1e15ca3 100644 --- a/doc/program.xml +++ b/doc/program.xml @@ -357,7 +357,9 @@ MySAX2Handler::fatalError(const SAXParseException& exception) <p/> <table> - <tr><td colspan="2"><em>http://apache.org/xml/features/validation/reuse-validator</em> (deprecated)</td></tr> + <tr><td colspan="2"><em>http://apache.org/xml/features/validation/reuse-validator</em> (deprecated) <br/> + Please use <em>http://apache.org/xml/features/validation/reuse-grammar</em> + </td></tr> <tr><td><em>true:</em></td><td> The parser will reuse grammar information from previous parses in subsequent parses. </td></tr> <tr><td><em>false:</em></td><td> The parser will not reuse any grammar information. (default)</td></tr> </table> diff --git a/src/parsers/SAX2XMLReaderImpl.hpp b/src/parsers/SAX2XMLReaderImpl.hpp index 92d84af83b81b6ad01c5d4b37b54c50aee3879db..1e7d95af765ec53ea2058ba554e633bc1e1a7aa7 100644 --- a/src/parsers/SAX2XMLReaderImpl.hpp +++ b/src/parsers/SAX2XMLReaderImpl.hpp @@ -56,6 +56,9 @@ /* * $Log$ + * Revision 1.15 2001/11/14 14:15:42 tng + * Update SAX2 feature documentation. + * * Revision 1.14 2001/09/12 13:03:43 tng * [Bug 3155] SAX2 does not offer progressive parse. * @@ -631,6 +634,7 @@ public : /** * Set the state of any feature in a SAX2 XMLReader. * Supported features in SAX2 for xerces-c are: + * <br>(See http://xml.apache.org/xerces-c/program.html#SAX2Features for detail description). * * <br>http://xml.org/sax/features/validation (default: true) * <br>http://xml.org/sax/features/namespaces (default: true) @@ -639,6 +643,7 @@ public : * <br>http://apache.org/xml/features/validation/reuse-grammar (default: false) * <br>http://apache.org/xml/features/validation/schema (default: true) * <br>http://apache.org/xml/features/validation/schema-full-checking (default: false) + * <br>http://apache.org/xml/features/validation/reuse-validator (Deprecated) (default: false) * * @param name The unique identifier (URI) of the feature. * @param value The requested state of the feature (true or false). diff --git a/src/sax2/SAX2XMLReader.hpp b/src/sax2/SAX2XMLReader.hpp index e5365dd971164a5b6f79eb085a699204d0dc8585..cb1388e87d75814987ef68ef42cffe911fa54931 100644 --- a/src/sax2/SAX2XMLReader.hpp +++ b/src/sax2/SAX2XMLReader.hpp @@ -56,6 +56,9 @@ /* * $Log$ + * Revision 1.13 2001/11/14 14:15:59 tng + * Update SAX2 feature documentation. + * * Revision 1.12 2001/09/12 13:03:43 tng * [Bug 3155] SAX2 does not offer progressive parse. * @@ -451,14 +454,16 @@ public: /** * Set the state of any feature in a SAX2 XMLReader. * Supported features in SAX2 for xerces-c are: + * <br>(See http://xml.apache.org/xerces-c/program.html#SAX2Features for detail description). * * <br>http://xml.org/sax/features/validation (default: true) * <br>http://xml.org/sax/features/namespaces (default: true) * <br>http://xml.org/sax/features/namespace-prefixes (default: true) * <br>http://apache.org/xml/features/validation/dynamic (default: false) - * <br>http://apache.org/xml/features/validation/reuse-validator (default: false) + * <br>http://apache.org/xml/features/validation/reuse-grammar (default: false) * <br>http://apache.org/xml/features/validation/schema (default: true) * <br>http://apache.org/xml/features/validation/schema-full-checking (default: false) + * <br>http://apache.org/xml/features/validation/reuse-validator (Deprecated) (default: false) * * @param name The unique identifier (URI) of the feature. * @param value The requested state of the feature (true or false).