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 ca...@apache.org on 2001/08/14 01:52:59 UTC

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

catlett     01/08/13 16:52:59

  Modified:    mailer/examples/conf web.xml
  Log:
  updated to the new build process
  
  Revision  Changes    Path
  1.2       +11 -1     jakarta-taglibs/mailer/examples/conf/web.xml
  
  Index: web.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/mailer/examples/conf/web.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- web.xml	2001/03/31 03:10:36	1.1
  +++ web.xml	2001/08/13 23:52:59	1.2
  @@ -5,10 +5,20 @@
       "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
   
   <web-app>
  +
       <display-name>Mailer Tag Library</display-name>
  -    <description>Tag library for sending mail</description>
  +    <description>
  +	Example web application illustrating the use of tag in the "mailer"
  +	custom tag library for sending mail, 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/mailer-1.0</taglib-uri>
           <taglib-location>/WEB-INF/mailer.tld</taglib-location>
       </taglib>
  +
   </web-app>