catlett 01/08/13 16:30:52
Modified: random/examples/conf web.xml
Log:
updated web.xml for the new build
Revision Changes Path
1.2 +14 -2 jakarta-taglibs/random/examples/conf/web.xml
Index: web.xml
===================================================================
RCS file: /home/cvs/jakarta-taglibs/random/examples/conf/web.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- web.xml 2001/05/21 20:44:07 1.1
+++ web.xml 2001/08/13 23:30:52 1.2
@@ -5,10 +5,22 @@
"http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
<web-app>
+
<display-name>Random Tag Library</display-name>
- <description>Tag library for creating a random string or number</description>
+ <description>
+ Example web application illustrating the use of tags in the "random" custom
+ tag library for creating a random string or number, from the
+ JAKARTA-TAGLIBS project.
+ </description>
+ <welcome-file-list>
+ <welcome-file>index.jsp</welcome-file>
+ <welcome-file>index.html</welcome-file>
+ <welcome-file>index.htm</welcome-file>
+ </welcome-file-list>
+
<taglib>
- <taglib-uri>http://jakarta.apache.org/taglibs/random</taglib-uri>
+ <taglib-uri>http://jakarta.apache.org/taglibs/random-1.0</taglib-uri>
<taglib-location>/WEB-INF/random.tld</taglib-location>
</taglib>
+
</web-app>