diff --git a/java/docs/release-notes.xml b/java/docs/release-notes.xml new file mode 100644 index 0000000..9bb29e5 --- /dev/null +++ b/java/docs/release-notes.xml @@ -0,0 +1,74 @@ + +
+ +org.apache.xml.resolver Release Notes +Version 1.1 CVS +13 Nov 2002 +$Id$ + + +NormanWalsh + +Staff Engineer +Sun Microsystems, XML Technology Center + + +Sun Microsystems supports Norm's active participation in a +number of standards efforts worldwide, including the Technical +Architecture Group, XML Core, and XSL Working Groups of the World Wide +Web Consortium, the OASIS RELAX NG Committee, +the Entity Resolution Committee, for which he is the editor, and +the DocBook Technical Committee, which he chairs. + + + + + 2002 + Sun Microsystems, Inc. + + + +This document offers a brief summary of what has changed in the +Resolver package since the 1.0 release. I expect it'll be updated a few times +before the next release. + +
+The <classname>CatalogManager</classname> Is No Longer Static + +The most pervasive change is that the CatalogManager +class is no longer static. It's now possible to instantiate several catalog +managers and each manager can manage several catalogs. + +There is still a single static instance of the +CatalogManager, available via +getStaticManager(). This is used by default +if no other catalog manager is instantiated and used. It behaves as +the old static one used to. + +
+ +
+System Catalogs Are Always Loaded + +In the previous version, the system catalogs were not loaded if +a private catalog was requested. That has changed; the system catalogs are now +always loaded. + +If you want to avoid loading any system catalogs, establish your own +CatalogManager and use the +setCatalogsFiles() method to assure that no system +catalogs are available. + +
+ +
+Tests/Examples Available + +There are several tests in the tests/resolver directory +that demonstrate how different instantiations can be used. + +
+ +
diff --git a/java/docs/resolver.xml b/java/docs/resolver.xml index 78a9991..ac91c47 100644 --- a/java/docs/resolver.xml +++ b/java/docs/resolver.xml @@ -4,13 +4,22 @@
XML Entity and URI Resolvers -Version 1.2 -14 Jun 2001 +Version 1.3 +13 Nov 2002 $Id$ + NormanWalsh @@ -63,11 +73,11 @@ source code license. Sun Microsystems supports Norm's active participation in a -number of standards efforts worldwide, including the XML Core, XSL and -XML Schema Working Groups of the World Wide Web Consortium, the OASIS -XSLT Conformance and RELAX NG Committees, the OASIS Entity Resolution -Committee, for which he is the editor, and the OASIS DocBook Technical -Committee, which he chairs. +number of standards efforts worldwide, including the Technical +Architecture Group, XML Core, and XSL Working Groups of the World Wide +Web Consortium, the OASIS RELAX NG Committee, +the Entity Resolution Committee, for which he is the editor, and +the DocBook Technical Committee, which he chairs. @@ -821,7 +831,6 @@ Result: file:/share/documents/articles/sun/2001/01-resolver/example/example.dtd -
Using <command>xparse</command>