mrglavas 2005/02/18 11:53:24 Modified: java/src/org/apache/xerces/impl Constants.java Log: Adding three new feature URIs for XInclude processing. Enable XInclude procssing: http://apache.org/xml/features/xinclude (default: false) Enable base URI fixup: http://apache.org/xml/features/xinclude/fixup-base-uris (default: true) Enable language fixup: http://apache.org/xml/features/xinclude/fixup-language (default: true) Revision Changes Path 1.49 +13 -4 xml-xerces/java/src/org/apache/xerces/impl/Constants.java Index: Constants.java =================================================================== RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/Constants.java,v retrieving revision 1.48 retrieving revision 1.49 diff -u -r1.48 -r1.49 --- Constants.java 9 Feb 2005 15:34:03 -0000 1.48 +++ Constants.java 18 Feb 2005 19:53:24 -0000 1.49 @@ -122,9 +122,6 @@ /** JAXP schemaSource property: when used internally may include DTD sources (DOM) */ public static final String SCHEMA_SOURCE = "schemaSource"; - /** Honour all schemaLocations (multiple imports etc) feature */ - public static final String HONOUR_ALL_SCHEMALOCATIONS_FEATURE = "honour-all-schemaLocations"; - /** JAXP schemaSource language: when used internally may include DTD namespace (DOM) */ public static final String SCHEMA_LANGUAGE = "schemaLanguage"; @@ -273,6 +270,18 @@ /** Validate annotations feature ("validate-annotations"). */ public static final String VALIDATE_ANNOTATIONS_FEATURE = "validate-annotations"; + /** Honour all schemaLocations feature ("honour-all-schemaLocations"). */ + public static final String HONOUR_ALL_SCHEMALOCATIONS_FEATURE = "honour-all-schemaLocations"; + + /** XInclude processing feature ("xinclude"). */ + public static final String XINCLUDE_FEATURE = "xinclude"; + + /** XInclude fixup base URIs feature ("xinclude/fixup-base-uris"). */ + public static final String XINCLUDE_FIXUP_BASE_URIS_FEATURE = "xinclude/fixup-base-uris"; + + /** XInclude fixup language feature ("xinclude/fixup-language"). */ + public static final String XINCLUDE_FIXUP_LANGUAGE_FEATURE = "xinclude/fixup-language"; + /** Internal performance related feature: * false - the parser settings (features/properties) have not changed between 2 parses * true - the parser settings have changed between 2 parses
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]