You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-cvs@xml.apache.org by nd...@apache.org on 2002/06/14 17:49:46 UTC

cvs commit: xml-commons/java/tests/resolver/dtds res1.mod restest.dtd

ndw         2002/06/14 08:49:46

  Added:       java/tests/resolver test1.xml
               java/tests/resolver/catalogs catalog.sub1 catalog.sub2
                        main.catalog
               java/tests/resolver/dtds res1.mod restest.dtd
  Log:
  Added resolver tests
  
  Revision  Changes    Path
  1.1                  xml-commons/java/tests/resolver/test1.xml
  
  Index: test1.xml
  ===================================================================
  <!DOCTYPE test PUBLIC "-//Apache//DTD Resolver Test V1.0//EN"
                        "http://example.com/does-not-exist">
  <test>
  <foo/>
  </test>
  
  
  
  1.1                  xml-commons/java/tests/resolver/catalogs/catalog.sub1
  
  Index: catalog.sub1
  ===================================================================
  PUBLIC "-//Apache//DTD Resolver Test V1.0//EN"
         "../dtds/restest.dtd"
  
  
  
  1.1                  xml-commons/java/tests/resolver/catalogs/catalog.sub2
  
  Index: catalog.sub2
  ===================================================================
  PUBLIC "-//Apache//ENTITIES Resolver Test Module V1.0//EN"
         "../dtds/res1.mod"
  
  
  
  1.1                  xml-commons/java/tests/resolver/catalogs/main.catalog
  
  Index: main.catalog
  ===================================================================
  CATALOG catalog.sub1
  CATALOG catalog.sub2
  BASE ".."
  CATALOG foo
  
  
  
  1.1                  xml-commons/java/tests/resolver/dtds/res1.mod
  
  Index: res1.mod
  ===================================================================
  <!ELEMENT foo EMPTY>
  <!ELEMENT bar EMPTY>
  
  
  
  1.1                  xml-commons/java/tests/resolver/dtds/restest.dtd
  
  Index: restest.dtd
  ===================================================================
  <!ELEMENT test (foo|bar)+>
  
  <!ENTITY % mod PUBLIC "-//Apache//ENTITIES Resolver Test Module V1.0//EN"
                        "http://example.com/does-not-exist">
  
  %mod;