sandygao 2003/01/16 15:03:49 Modified: java/docs features.xml Log: A new feature: http://apache.org/xml/features/standard-uri-conformant When it's turned on, it has to be a URI where a URI is expected, otherwise a URI.MalformedURI excpetion (a subclass of IOException) is thrown. Revision Changes Path 1.33 +16 -0 xml-xerces/java/docs/features.xml Index: features.xml =================================================================== RCS file: /home/cvs/xml-xerces/java/docs/features.xml,v retrieving revision 1.32 retrieving revision 1.33 diff -u -r1.32 -r1.33 --- features.xml 2 Dec 2002 20:42:23 -0000 1.32 +++ features.xml 16 Jan 2003 23:03:49 -0000 1.33 @@ -307,6 +307,22 @@ <default value='false'/> </feature> + <feature name='http://apache.org/xml/features/standard-uri-conformant' + id='standard-uri-conformant'> + <true>Requires that a URI has to be provided where a URI is expected.</true> + <false> + Some invalid URI's are accepted as valid values when a URI is expected. + Examples include: using platform dependent file separator in place of '/'; + using Windows/DOS path names like "c:\blah" and "\\host\dir\blah"; using + invalid URI characters (space, for example). + </false> + <default value='false'/> + <note> + It's recommended to set this feature to true if you want your + application/documents to be truly portable across different XML processors. + </note> + </feature> + </fcategory> <fcategory name='DOM Features'> <feature name='http://apache.org/xml/features/dom/defer-node-expansion'
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]