bayard 01/10/15 18:58:54
Modified: src/doc index.xml
. build.xml
Log:
Inserted the string taglib into the jakarta-taglib nightly build process to see
if it works okay
Revision Changes Path
1.26 +5 -0 jakarta-taglibs/src/doc/index.xml
Index: index.xml
===================================================================
RCS file: /home/cvs/jakarta-taglibs/src/doc/index.xml,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- index.xml 2001/10/10 12:46:21 1.25
+++ index.xml 2001/10/16 01:58:54 1.26
@@ -259,6 +259,11 @@
or modifying client HttpSession information.
</taginfo>
+ <taginfo name="String" state="develop">
+ The String JSP tag library provides tags for manipulating
+ java.lang.String's.
+ </taginfo>
+
<taginfo name="Utility" state="develop">
The utility custom tag library contains examples of some
basic tags. It illustrates several custom tag library
1.39 +5 -1 jakarta-taglibs/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-taglibs/build.xml,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- build.xml 2001/07/18 00:50:24 1.38
+++ build.xml 2001/10/16 01:58:54 1.39
@@ -1,5 +1,5 @@
<!-- ANT Build Script for the JAKARTA-TAGLIBS Project -->
-<!-- $Id: build.xml,v 1.38 2001/07/18 00:50:24 glenn Exp $ -->
+<!-- $Id: build.xml,v 1.39 2001/10/16 01:58:54 bayard Exp $ -->
<project name="jakarta-taglibs" default="dist" basedir=".">
<!-- ****************** Project Standard Properties ******************* -->
@@ -157,6 +157,10 @@
<target name="ultradev4">
<ant dir="./tools/UltraDev/4.0/ctlx" target="dist"/>
+ </target>
+
+ <target name="string">
+ <ant dir="./string" target="dist"/>
</target>