You are viewing a plain text version of this content. The canonical link for it is here.
Posted to taglibs-dev@jakarta.apache.org by na...@apache.org on 2001/02/11 05:28:40 UTC

cvs commit: jakarta-taglibs/session/examples/conf web.xml

nacho       01/02/10 20:28:40

  Modified:    application/examples/conf web.xml
               datetime/examples/conf web.xml
               page/examples/conf web.xml
               regexp/examples/conf web.xml
               request/examples/conf web.xml
               response/examples/conf web.xml
               session/examples/conf web.xml
  Log:
  application
  datetime
  page
  regexp
  request
  response
  session
  
  Had web.xml files non valudatable in their examples webapp
  
  Revision  Changes    Path
  1.3       +37 -48    jakarta-taglibs/application/examples/conf/web.xml
  
  Index: web.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/application/examples/conf/web.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- web.xml	2001/01/10 20:32:56	1.2
  +++ web.xml	2001/02/11 04:28:37	1.3
  @@ -1,52 +1,41 @@
   <?xml version="1.0" encoding="ISO-8859-1"?>
  -
  -<!DOCTYPE web-app
  -    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
  +<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
       "http://java.sun.com/j2ee/dtds/web-app_2.2.dtd">
  -
   <web-app>
  -
  -  <description>
  -  Example web application illustrating the use of tags in the
  -  "application" custom tag library, from the JAKARTA-TAGLIBS project.
  -  </description>
  -
  -  <context-param>
  -    <param-name>foo</param-name>
  -    <param-value>bar</param-value>
  -  </context-param>
  -
  -  <context-param>
  -    <param-name>appName</param-name>
  -    <param-value>APPLICATION</param-value>
  -  </context-param>
  -
  -  <taglib>
  -    <taglib-uri>http://jakarta.apache.org/taglibs/application-1.0</taglib-uri>
  -    <taglib-location>/WEB-INF/application.tld</taglib-location>
  -  </taglib>
  -
  -  <security-role>
  -    <role-name>admin</role-name>
  -  </security-role>
  -
  -  <mime-mapping>
  -    <extension>txt</extension>
  -    <mime-type>text/plain</mime-type>
  -  </mime-mapping>
  -  <mime-mapping>
  -    <extension>html</extension>
  -    <mime-type>text/html</mime-type>
  -  </mime-mapping>
  -  <mime-mapping>
  -    <extension>htm</extension>
  -    <mime-type>text/html</mime-type>
  -  </mime-mapping>
  -
  -  <welcome-file-list>
  -    <welcome-file>index.jsp</welcome-file>
  -    <welcome-file>index.html</welcome-file>
  -    <welcome-file>index.htm</welcome-file>
  -  </welcome-file-list>
  -
  +	<description>
  +  Example web application illustrating the use of tags in the
  +  "application" custom tag library, from the JAKARTA-TAGLIBS project.
  +  </description>
  +	<context-param>
  +		<param-name>foo</param-name>
  +		<param-value>bar</param-value>
  +	</context-param>
  +	<context-param>
  +		<param-name>appName</param-name>
  +		<param-value>APPLICATION</param-value>
  +	</context-param>
  +	<mime-mapping>
  +		<extension>txt</extension>
  +		<mime-type>text/plain</mime-type>
  +	</mime-mapping>
  +	<mime-mapping>
  +		<extension>html</extension>
  +		<mime-type>text/html</mime-type>
  +	</mime-mapping>
  +	<mime-mapping>
  +		<extension>htm</extension>
  +		<mime-type>text/html</mime-type>
  +	</mime-mapping>
  +	<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/application-1.0</taglib-uri>
  +		<taglib-location>/WEB-INF/application.tld</taglib-location>
  +	</taglib>
  +	<security-role>
  +		<role-name>admin</role-name>
  +	</security-role>
   </web-app>
  
  
  
  1.3       +27 -36    jakarta-taglibs/datetime/examples/conf/web.xml
  
  Index: web.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/datetime/examples/conf/web.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- web.xml	2001/01/10 20:35:30	1.2
  +++ web.xml	2001/02/11 04:28:38	1.3
  @@ -1,43 +1,34 @@
   <?xml version="1.0" encoding="ISO-8859-1"?>
  -
  -<!DOCTYPE web-app
  -    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
  +<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
       "http://java.sun.com/j2ee/dtds/web-app_2.2.dtd">
  -
   <web-app>
  -
  -  <description>
  +	<description>
     Example web application illustrating the use of tags in the
     "datetime" custom tag library, from the JAKARTA-TAGLIBS project.
     </description>
  -
  -  <taglib>
  -    <taglib-uri>http://jakarta.apache.org/taglibs/datetime-1.0</taglib-uri>
  -    <taglib-location>/WEB-INF/datetime.tld</taglib-location>
  -  </taglib>
  -
  -  <taglib>
  -    <taglib-uri>http://jakarta.apache.org/taglibs/request-1.0</taglib-uri>
  -    <taglib-location>/WEB-INF/request.tld</taglib-location>
  -  </taglib>
  -
  -  <mime-mapping>
  -    <extension>txt</extension>
  -    <mime-type>text/plain</mime-type>
  -  </mime-mapping>      
  -  <mime-mapping>
  -    <extension>html</extension>
  -    <mime-type>text/html</mime-type>
  -  </mime-mapping>     
  -  <mime-mapping>
  -    <extension>htm</extension>
  -    <mime-type>text/html</mime-type>
  -  </mime-mapping>
  -
  -  <welcome-file-list>
  -    <welcome-file>index.jsp</welcome-file>
  -    <welcome-file>index.html</welcome-file>
  -    <welcome-file>index.htm</welcome-file>
  -  </welcome-file-list>
  -
  +	<mime-mapping>
  +		<extension>txt</extension>
  +		<mime-type>text/plain</mime-type>
  +	</mime-mapping>
  +	<mime-mapping>
  +		<extension>html</extension>
  +		<mime-type>text/html</mime-type>
  +	</mime-mapping>
  +	<mime-mapping>
  +		<extension>htm</extension>
  +		<mime-type>text/html</mime-type>
  +	</mime-mapping>
  +	<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/datetime-1.0</taglib-uri>
  +		<taglib-location>/WEB-INF/datetime.tld</taglib-location>
  +	</taglib>
  +	<taglib>
  +		<taglib-uri>http://jakarta.apache.org/taglibs/request-1.0</taglib-uri>
  +		<taglib-location>/WEB-INF/request.tld</taglib-location>
  +	</taglib>
   </web-app>
  
  
  
  1.3       +26 -33    jakarta-taglibs/page/examples/conf/web.xml
  
  Index: web.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/page/examples/conf/web.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- web.xml	2001/01/10 20:35:19	1.2
  +++ web.xml	2001/02/11 04:28:39	1.3
  @@ -1,40 +1,33 @@
   <?xml version="1.0" encoding="ISO-8859-1"?>
  -
  -<!DOCTYPE web-app
  -    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
  +<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
       "http://java.sun.com/j2ee/dtds/web-app_2.2.dtd">
  -
   <web-app>
  -
  -  <description>
  +	<description>
     Example web application illustrating the use of tags in the
     "page" custom tag library, from the JAKARTA-TAGLIBS project.
     </description>
  -  <taglib>
  -    <taglib-uri>http://jakarta.apache.org/taglibs/page-1.0</taglib-uri>
  -    <taglib-location>/WEB-INF/page.tld</taglib-location>
  -  </taglib>
  -  <security-role>
  -    <role-name>admin</role-name>
  -  </security-role>
  -
  -  <mime-mapping>
  -    <extension>txt</extension>
  -    <mime-type>text/plain</mime-type>
  -  </mime-mapping>
  -  <mime-mapping>
  -    <extension>html</extension>
  -    <mime-type>text/html</mime-type>
  -  </mime-mapping>
  -  <mime-mapping>
  -    <extension>htm</extension>
  -    <mime-type>text/html</mime-type>
  -  </mime-mapping>
  -
  -  <welcome-file-list>
  -    <welcome-file>index.jsp</welcome-file>
  -    <welcome-file>index.html</welcome-file>
  -    <welcome-file>index.htm</welcome-file>
  -  </welcome-file-list>
  -
  +	<mime-mapping>
  +		<extension>txt</extension>
  +		<mime-type>text/plain</mime-type>
  +	</mime-mapping>
  +	<mime-mapping>
  +		<extension>html</extension>
  +		<mime-type>text/html</mime-type>
  +	</mime-mapping>
  +	<mime-mapping>
  +		<extension>htm</extension>
  +		<mime-type>text/html</mime-type>
  +	</mime-mapping>
  +	<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/page-1.0</taglib-uri>
  +		<taglib-location>/WEB-INF/page.tld</taglib-location>
  +	</taglib>
  +	<security-role>
  +		<role-name>admin</role-name>
  +	</security-role>
   </web-app>
  
  
  
  1.3       +27 -36    jakarta-taglibs/regexp/examples/conf/web.xml
  
  Index: web.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/regexp/examples/conf/web.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- web.xml	2001/01/10 20:35:42	1.2
  +++ web.xml	2001/02/11 04:28:39	1.3
  @@ -1,43 +1,34 @@
   <?xml version="1.0" encoding="ISO-8859-1"?>
  -
  -<!DOCTYPE web-app
  -    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
  +<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
       "http://java.sun.com/j2ee/dtds/web-app_2.2.dtd">
  -
   <web-app>
  -
  -  <description>
  +	<description>
     Example web application illustrating the use of tags in the
     "regexp" custom tag library, from the JAKARTA-TAGLIBS project.
     </description>
  -
  -  <taglib>
  -    <taglib-uri>http://jakarta.apache.org/taglibs/regexp-1.0</taglib-uri>
  -    <taglib-location>/WEB-INF/regexp.tld</taglib-location>
  -  </taglib>
  -
  -  <taglib>
  -    <taglib-uri>http://jakarta.apache.org/taglibs/request-1.0</taglib-uri>
  -    <taglib-location>/WEB-INF/request.tld</taglib-location>
  -  </taglib>
  -
  -  <mime-mapping>
  -    <extension>txt</extension>
  -    <mime-type>text/plain</mime-type>
  -  </mime-mapping>      
  -  <mime-mapping>
  -    <extension>html</extension>
  -    <mime-type>text/html</mime-type>
  -  </mime-mapping>     
  -  <mime-mapping>
  -    <extension>htm</extension>
  -    <mime-type>text/html</mime-type>
  -  </mime-mapping>
  -
  -  <welcome-file-list>
  -    <welcome-file>index.jsp</welcome-file>
  -    <welcome-file>index.html</welcome-file>
  -    <welcome-file>index.htm</welcome-file>
  -  </welcome-file-list>
  -
  +	<mime-mapping>
  +		<extension>txt</extension>
  +		<mime-type>text/plain</mime-type>
  +	</mime-mapping>
  +	<mime-mapping>
  +		<extension>html</extension>
  +		<mime-type>text/html</mime-type>
  +	</mime-mapping>
  +	<mime-mapping>
  +		<extension>htm</extension>
  +		<mime-type>text/html</mime-type>
  +	</mime-mapping>
  +	<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/regexp-1.0</taglib-uri>
  +		<taglib-location>/WEB-INF/regexp.tld</taglib-location>
  +	</taglib>
  +	<taglib>
  +		<taglib-uri>http://jakarta.apache.org/taglibs/request-1.0</taglib-uri>
  +		<taglib-location>/WEB-INF/request.tld</taglib-location>
  +	</taglib>
   </web-app>
  
  
  
  1.4       +26 -33    jakarta-taglibs/request/examples/conf/web.xml
  
  Index: web.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/request/examples/conf/web.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- web.xml	2001/01/10 20:35:55	1.3
  +++ web.xml	2001/02/11 04:28:39	1.4
  @@ -1,40 +1,33 @@
   <?xml version="1.0" encoding="ISO-8859-1"?>
  -
  -<!DOCTYPE web-app
  -    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
  +<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
       "http://java.sun.com/j2ee/dtds/web-app_2.2.dtd">
  -
   <web-app>
  -
  -  <description>
  +	<description>
     Example web application illustrating the use of tags in the
     "request" custom tag library, from the JAKARTA-TAGLIBS project.
     </description>
  -  <security-role>
  -    <role-name>admin</role-name>
  -  </security-role>
  -  <taglib>
  -    <taglib-uri>http://jakarta.apache.org/taglibs/request-1.0</taglib-uri>
  -    <taglib-location>/WEB-INF/request.tld</taglib-location>
  -  </taglib>
  -
  -  <mime-mapping>
  -    <extension>txt</extension>
  -    <mime-type>text/plain</mime-type>
  -  </mime-mapping>      
  -  <mime-mapping>
  -    <extension>html</extension>
  -    <mime-type>text/html</mime-type>
  -  </mime-mapping>     
  -  <mime-mapping>
  -    <extension>htm</extension>
  -    <mime-type>text/html</mime-type>
  -  </mime-mapping>
  -
  -  <welcome-file-list>
  -    <welcome-file>index.jsp</welcome-file>
  -    <welcome-file>index.html</welcome-file>
  -    <welcome-file>index.htm</welcome-file>
  -  </welcome-file-list>
  -
  +	<mime-mapping>
  +		<extension>txt</extension>
  +		<mime-type>text/plain</mime-type>
  +	</mime-mapping>
  +	<mime-mapping>
  +		<extension>html</extension>
  +		<mime-type>text/html</mime-type>
  +	</mime-mapping>
  +	<mime-mapping>
  +		<extension>htm</extension>
  +		<mime-type>text/html</mime-type>
  +	</mime-mapping>
  +	<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/request-1.0</taglib-uri>
  +		<taglib-location>/WEB-INF/request.tld</taglib-location>
  +	</taglib>
  +	<security-role>
  +		<role-name>admin</role-name>
  +	</security-role>
   </web-app>
  
  
  
  1.3       +27 -36    jakarta-taglibs/response/examples/conf/web.xml
  
  Index: web.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/response/examples/conf/web.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- web.xml	2001/01/10 20:36:09	1.2
  +++ web.xml	2001/02/11 04:28:39	1.3
  @@ -1,43 +1,34 @@
   <?xml version="1.0" encoding="ISO-8859-1"?>
  -
  -<!DOCTYPE web-app
  -    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
  +<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
       "http://java.sun.com/j2ee/dtds/web-app_2.2.dtd">
  -
   <web-app>
  -
  -  <description>
  +	<description>
     Example web application illustrating the use of tags in the
     "response" custom tag library, from the JAKARTA-TAGLIBS project.
     </description>
  -
  -  <taglib>
  -    <taglib-uri>http://jakarta.apache.org/taglibs/response-1.0</taglib-uri>
  -    <taglib-location>/WEB-INF/response.tld</taglib-location>
  -  </taglib>
  -
  -  <taglib>
  -    <taglib-uri>http://jakarta.apache.org/taglibs/request-1.0</taglib-uri>
  -    <taglib-location>/WEB-INF/request.tld</taglib-location>
  -  </taglib>
  -
  -  <mime-mapping>
  -    <extension>txt</extension>
  -    <mime-type>text/plain</mime-type>
  -  </mime-mapping>      
  -  <mime-mapping>
  -    <extension>html</extension>
  -    <mime-type>text/html</mime-type>
  -  </mime-mapping>     
  -  <mime-mapping>
  -    <extension>htm</extension>
  -    <mime-type>text/html</mime-type>
  -  </mime-mapping>
  -
  -  <welcome-file-list>
  -    <welcome-file>index.jsp</welcome-file>
  -    <welcome-file>index.html</welcome-file>
  -    <welcome-file>index.htm</welcome-file>
  -  </welcome-file-list>
  -
  +	<mime-mapping>
  +		<extension>txt</extension>
  +		<mime-type>text/plain</mime-type>
  +	</mime-mapping>
  +	<mime-mapping>
  +		<extension>html</extension>
  +		<mime-type>text/html</mime-type>
  +	</mime-mapping>
  +	<mime-mapping>
  +		<extension>htm</extension>
  +		<mime-type>text/html</mime-type>
  +	</mime-mapping>
  +	<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/response-1.0</taglib-uri>
  +		<taglib-location>/WEB-INF/response.tld</taglib-location>
  +	</taglib>
  +	<taglib>
  +		<taglib-uri>http://jakarta.apache.org/taglibs/request-1.0</taglib-uri>
  +		<taglib-location>/WEB-INF/request.tld</taglib-location>
  +	</taglib>
   </web-app>
  
  
  
  1.3       +23 -31    jakarta-taglibs/session/examples/conf/web.xml
  
  Index: web.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/session/examples/conf/web.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- web.xml	2001/01/10 20:36:17	1.2
  +++ web.xml	2001/02/11 04:28:40	1.3
  @@ -1,38 +1,30 @@
   <?xml version="1.0" encoding="ISO-8859-1"?>
  -
  -<!DOCTYPE web-app
  -    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
  +<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
       "http://java.sun.com/j2ee/dtds/web-app_2.2.dtd">
  -
   <web-app>
  -
  -  <description>
  +	<description>
     Example web application illustrating the use of tags in the
     "session" custom tag library, from the JAKARTA-TAGLIBS project.
     </description>
  -
  -  <taglib>
  -    <taglib-uri>http://jakarta.apache.org/taglibs/session-1.0</taglib-uri>
  -    <taglib-location>/WEB-INF/session.tld</taglib-location>
  -  </taglib>
  -
  -  <mime-mapping>
  -    <extension>txt</extension>
  -    <mime-type>text/plain</mime-type>
  -  </mime-mapping>
  -  <mime-mapping>
  -    <extension>html</extension>
  -    <mime-type>text/html</mime-type>
  -  </mime-mapping>
  -  <mime-mapping>
  -    <extension>htm</extension>
  -    <mime-type>text/html</mime-type>
  -  </mime-mapping>
  -
  -  <welcome-file-list>
  -    <welcome-file>index.jsp</welcome-file>
  -    <welcome-file>index.html</welcome-file>
  -    <welcome-file>index.htm</welcome-file>
  -  </welcome-file-list>
  -
  +	<mime-mapping>
  +		<extension>txt</extension>
  +		<mime-type>text/plain</mime-type>
  +	</mime-mapping>
  +	<mime-mapping>
  +		<extension>html</extension>
  +		<mime-type>text/html</mime-type>
  +	</mime-mapping>
  +	<mime-mapping>
  +		<extension>htm</extension>
  +		<mime-type>text/html</mime-type>
  +	</mime-mapping>
  +	<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/session-1.0</taglib-uri>
  +		<taglib-location>/WEB-INF/session.tld</taglib-location>
  +	</taglib>
   </web-app>