cvs commit: jakarta-tomcat-4.0/webapps/admin/WEB-INF web.xml

2002-08-14 Thread amyroh

amyroh  2002/08/14 12:17:32

  Modified:webapps/admin/WEB-INF web.xml
  Log:
  Change comment since the filter is now in admin directory.
  
  Revision  ChangesPath
  1.15  +2 -3  jakarta-tomcat-4.0/webapps/admin/WEB-INF/web.xml
  
  Index: web.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/admin/WEB-INF/web.xml,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- web.xml   13 Aug 2002 08:09:08 -  1.14
  +++ web.xml   14 Aug 2002 19:17:32 -  1.15
  @@ -12,9 +12,8 @@
 /description
   
 !-- Example filter to set character encoding on each request.
  -   Uncomment this filter definition, filter mapping and move
  -   examples/filters.SetCharacterEncodingFilters to use filter
  -   to decode post and get parameters --
  +   Uncomment this filter definition and the mapping to use 
  +   the filter to decode post and get parameters --
   
 !--
 filter
  
  
  

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




cvs commit: jakarta-tomcat-4.0/webapps/admin/WEB-INF web.xml

2002-08-13 Thread amyroh

amyroh  2002/08/13 01:09:08

  Modified:webapps/admin/WEB-INF web.xml
  Log:
  Improve internationalization - use filter servlet to decode post and get
  parameters.
  
  Patch submitted by Takashi Okamoto [EMAIL PROTECTED]
  
  Revision  ChangesPath
  1.14  +27 -1 jakarta-tomcat-4.0/webapps/admin/WEB-INF/web.xml
  
  Index: web.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/admin/WEB-INF/web.xml,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- web.xml   13 Jun 2002 23:43:03 -  1.13
  +++ web.xml   13 Aug 2002 08:09:08 -  1.14
  @@ -11,6 +11,32 @@
   Tomcat HTML based administration web application.
 /description
   
  +  !-- Example filter to set character encoding on each request.
  +   Uncomment this filter definition, filter mapping and move
  +   examples/filters.SetCharacterEncodingFilters to use filter
  +   to decode post and get parameters --
  +
  +  !--
  +  filter
  +filter-nameSet Character Encoding/filter-name
  +filter-classfilters.SetCharacterEncodingFilter/filter-class
  +init-param
  +  param-nameencoding/param-name
  +  param-valueUTF8/param-value
  +/init-param
  +  /filter
  +  --
  +
  +  !-- Example filter mapping to apply the Set Character Encoding filter
  +   to *all* requests processed by this web application --
  +
  +  !--
  +  filter-mapping
  +filter-nameSet Character Encoding/filter-name
  +url-pattern/*/url-pattern
  +  /filter-mapping
  +  --
  +
 !-- Action Servlet Configuration --
 servlet
   servlet-nameaction/servlet-name
  @@ -58,7 +84,7 @@
 param-nametreebuilders/param-name
 param-value
   org.apache.webapp.admin.TomcatTreeBuilder,
  -org.apache.webapp.admin.resources.ResourcesTreeBuilder,
  +org.apache.webapp.admin.resources.ResourcesTreeBuilder,
   org.apache.webapp.admin.users.UsersTreeBuilder
   /param-value
   /init-param
  
  
  

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




cvs commit: jakarta-tomcat-4.0/webapps/admin/WEB-INF web.xml

2002-06-13 Thread remm

remm2002/06/13 16:43:03

  Modified:webapps/admin/WEB-INF web.xml
  Log:
  - Add display name (submitted by Ian Darwin).
  
  Revision  ChangesPath
  1.13  +5 -0  jakarta-tomcat-4.0/webapps/admin/WEB-INF/web.xml
  
  Index: web.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/admin/WEB-INF/web.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- web.xml   4 May 2002 02:06:15 -   1.12
  +++ web.xml   13 Jun 2002 23:43:03 -  1.13
  @@ -6,6 +6,11 @@
   
   web-app
   
  +  display-nameTomcat Administration Application/display-name
  +  description
  +Tomcat HTML based administration web application.
  +  /description
  +
 !-- Action Servlet Configuration --
 servlet
   servlet-nameaction/servlet-name
  
  
  

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




cvs commit: jakarta-tomcat-4.0/webapps/admin/WEB-INF web.xml

2002-05-03 Thread manveen

manveen 02/05/03 19:06:16

  Modified:webapps/admin/WEB-INF web.xml
  Log:
  Enable resources subtree to be visible from the main tree control.
  
  Revision  ChangesPath
  1.12  +1 -0  jakarta-tomcat-4.0/webapps/admin/WEB-INF/web.xml
  
  Index: web.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/admin/WEB-INF/web.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- web.xml   1 May 2002 00:53:55 -   1.11
  +++ web.xml   4 May 2002 02:06:15 -   1.12
  @@ -53,6 +53,7 @@
 param-nametreebuilders/param-name
 param-value
   org.apache.webapp.admin.TomcatTreeBuilder,
  +org.apache.webapp.admin.resources.ResourcesTreeBuilder,
   org.apache.webapp.admin.users.UsersTreeBuilder
   /param-value
   /init-param
  
  
  

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




cvs commit: jakarta-tomcat-4.0/webapps/admin/WEB-INF web.xml

2002-04-30 Thread manveen

manveen 02/04/30 17:53:55

  Modified:webapps/admin/WEB-INF web.xml
  Log:
  do not render tomcat root node by default.
  
  Revision  ChangesPath
  1.11  +2 -0  jakarta-tomcat-4.0/webapps/admin/WEB-INF/web.xml
  
  Index: web.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/admin/WEB-INF/web.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- web.xml   4 Apr 2002 20:30:34 -   1.10
  +++ web.xml   1 May 2002 00:53:55 -   1.11
  @@ -43,10 +43,12 @@
 param-valuetrue/param-value
   /init-param
   !-- Label to be displayed for rootnode. If absent, rootnode is not rendered --
  +!--
   init-param
 param-namerootnodename/param-name
 param-valueTomcat Root/param-value
   /init-param
  +--
   init-param
 param-nametreebuilders/param-name
 param-value
  
  
  

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]