You are viewing a plain text version of this content. The canonical link for it is here.
Posted to watchdog-dev@jakarta.apache.org by sa...@locus.apache.org on 2000/11/01 20:09:23 UTC

cvs commit: jakarta-watchdog-4.0/src/server/jsp-tests/WEB-INF web.xml

santosh     00/11/01 11:09:22

  Modified:    src/server/jsp-tests/WEB-INF web.xml
  Log:
  new entries for tld file locations for testing computation of TLD resource path
  
  Revision  Changes    Path
  1.3       +39 -0     jakarta-watchdog-4.0/src/server/jsp-tests/WEB-INF/web.xml
  
  Index: web.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-watchdog-4.0/src/server/jsp-tests/WEB-INF/web.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- web.xml	2000/10/17 21:07:38	1.2
  +++ web.xml	2000/11/01 19:09:21	1.3
  @@ -22,4 +22,43 @@
              /WEB-INF/tlds/TestLib.tld
           </taglib-location>
       </taglib>
  +
  +<!-- These are only for testing if the Tld resource path is calculated properly
  +-->
  +    <taglib>
  +        <taglib-uri>
  +	  http://java.apache.org/tlds/tld-absolute
  +        </taglib-uri>
  +        <taglib-location>
  +           /WEB-INF/tlds/tld_uri.tld
  +        </taglib-location>
  +    </taglib>
  +
  +    <taglib>
  +        <taglib-uri>
  +	  /tld_root_relative
  +        </taglib-uri>
  +        <taglib-location>
  +           /WEB-INF/tlds/tld_uri.tld
  +        </taglib-location>
  +    </taglib>
  +
  +    <taglib>
  +        <taglib-uri>
  +	  tld_nonroot_relative
  +        </taglib-uri>
  +        <taglib-location>
  +           /WEB-INF/tlds/tld_uri.tld
  +        </taglib-location>
  +    </taglib>
  +
  +    <taglib>
  +        <taglib-uri>
  +	  tld_jar
  +        </taglib-uri>
  +        <taglib-location>
  +           /WEB-INF/lib/tld_resource.jar
  +        </taglib-location>
  +    </taglib>
  +
   </web-app>