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 ho...@locus.apache.org on 2000/12/08 03:50:09 UTC

cvs commit: jakarta-taglibs/xsl build.xml

horwat      00/12/07 18:50:09

  Modified:    .        build.xml
               bsf      build.xml
               datetime build.xml
               input    build.xml
               jspspec  build.xml
               regexp   build.xml
               request  build.xml
               response build.xml
               session  build.xml
               sql      build.xml
               src/doc  project.xml
               src/doc/stylesheets taglibs.xsl
               utility  build.xml
               xsl      build.xml
  Log:
  Added an introductory page for each tag library. This page lets users view the
  documentation on-line and download the library.
  
  Revision  Changes    Path
  1.15      +6 -2      jakarta-taglibs/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/build.xml,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- build.xml	2000/12/01 23:25:41	1.14
  +++ build.xml	2000/12/08 02:50:01	1.15
  @@ -1,5 +1,5 @@
   <!-- ANT Build Script for the JAKARTA-TAGLIBS Project -->
  -<!-- $Id: build.xml,v 1.14 2000/12/01 23:25:41 horwat Exp $ -->
  +<!-- $Id: build.xml,v 1.15 2000/12/08 02:50:01 horwat Exp $ -->
   <project name="jakarta-taglibs" default="dist" basedir=".">
   
   
  @@ -114,6 +114,10 @@
       <ant dir="./bsf" target="dist"/>
     </target>
   
  +   <target name="input" depends="prepare">
  +     <ant dir="./input" target="dist"/>
  +   </target>
  +
     <target name="jspspec">
       <ant dir="./jspspec" target="dist"/>
     </target>
  @@ -152,7 +156,7 @@
   
     <!-- *********************** Overall Build Command ********************** -->
   
  -  <target name="dist" depends="prepare,static,compile.documentation,bsf,jspspec,sql,utility,xsl,request,session,response,datetime,regexp"/>
  +  <target name="dist" depends="prepare,static,compile.documentation,bsf,input,jspspec,sql,utility,xsl,request,session,response,datetime,regexp"/>
   
     <!-- *********************** Clean Command ****************************** -->
   
  
  
  
  1.3       +15 -1     jakarta-taglibs/bsf/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/bsf/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml	2000/05/28 13:32:09	1.2
  +++ build.xml	2000/12/08 02:50:01	1.3
  @@ -1,5 +1,5 @@
   <!-- ANT Build Script for the "bsf" Custom Tag Library -->
  -<!-- $Id: build.xml,v 1.2 2000/05/28 13:32:09 rubys Exp $ -->
  +<!-- $Id: build.xml,v 1.3 2000/12/08 02:50:01 horwat Exp $ -->
   <project name="bsf" default="main" basedir=".">
   
       <!-- ******************** Adjustable Properties *********************** -->
  @@ -39,11 +39,13 @@
   
           build.dir                   Base directory for build targets
           dist.dir                    Base directory for distribution targets
  +        taglibs.xsl                 Taglibs stylesheet
   
       -->
   
       <property name="build.dir"      value="../../build/taglibs"/>
       <property name="dist.dir"       value="../../dist/taglibs"/>
  +    <property name="taglibs.xsl"    value="../../../src/doc/stylesheets/taglibs.xsl"/>
   
       <!-- *********************** Default Properties ********************** -->
   
  @@ -118,8 +120,20 @@
   
     <!-- Compile the documentation application -->
     <target name="documentation" depends="prepare">
  +<!-- DELETE
       <copydir src="${doc.src}/conf"      dest="${build.doc}/WEB-INF"/>
       <copydir src="${doc.src}/web"       dest="${build.doc}"/>
  +-->
  +    <copy todir="${build.doc}/WEB-INF">
  +      <fileset dir="${doc.src}/conf"/>
  +    </copy>
  +    <style   basedir="${doc.src}/web" destdir="${build.doc}"
  +      extension=".html" style="${taglibs.xsl}" includes="*.xml"/>
  +    <copy todir="${build.doc}">
  +      <fileset dir="${doc.src}/web">
  +        <include name="**/*.html"/>
  +      </fileset>
  +    </copy>
   <!--
       <javac srcdir="${doc.src}/src"   destdir="${build.doc}/WEB-INF/classes"
              classpath="${servlet.jar}" debug="on"/>
  
  
  
  1.4       +13 -3     jakarta-taglibs/datetime/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/datetime/build.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- build.xml	2000/11/06 01:15:58	1.3
  +++ build.xml	2000/12/08 02:50:02	1.4
  @@ -1,5 +1,5 @@
   <!-- ANT Build Script for the "datetime" Custom Tag Library -->
  -<!-- $Id: build.xml,v 1.3 2000/11/06 01:15:58 glenn Exp $ -->
  +<!-- $Id: build.xml,v 1.4 2000/12/08 02:50:02 horwat Exp $ -->
   <project name="datetime" default="main" basedir=".">
   
       <!-- ******************** Adjustable Properties *********************** -->
  @@ -39,11 +39,13 @@
   
           build.dir                   Base directory for build targets
           dist.dir                    Base directory for distribution targets
  +        taglibs.xsl                 Taglibs stylesheet
   
       -->
   
       <property name="build.dir"      value="../../build/taglibs"/>
       <property name="dist.dir"       value="../../dist/taglibs"/>
  +    <property name="taglibs.xsl"    value="../../../src/doc/stylesheets/taglibs.xsl"/>
   
       <!-- *********************** Default Properties ********************** -->
   
  @@ -119,8 +121,16 @@
   
     <!-- Compile the documentation application -->
     <target name="documentation" depends="prepare">
  -    <copydir src="${doc.src}/conf"      dest="${build.doc}/WEB-INF"/>
  -    <copydir src="${doc.src}/web"       dest="${build.doc}"/>
  +    <copy todir="${build.doc}/WEB-INF">
  +      <fileset dir="${doc.src}/conf"/>
  +    </copy>
  +    <style   basedir="${doc.src}/web" destdir="${build.doc}"
  +      extension=".html" style="${taglibs.xsl}" includes="*.xml"/>
  +    <copy todir="${build.doc}">
  +      <fileset dir="${doc.src}/web">
  +        <include name="**/*.html"/>
  +      </fileset>
  +    </copy>
       <javadoc packagenames="org.apache.taglibs.datetime.*"
   	     classpath="${servlet.jar}"
                sourcepath="src"
  
  
  
  1.3       +12 -2     jakarta-taglibs/input/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/input/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml	2000/10/04 06:25:38	1.2
  +++ build.xml	2000/12/08 02:50:02	1.3
  @@ -35,11 +35,13 @@
   
   	build.dir                   Base directory for build targets
   	dist.dir                    Base directory for distribution targets
  +        taglibs.xsl                 Taglibs stylesheet
   
       -->
   
       <property name="build.dir"      value="../../build/taglibs"/>
       <property name="dist.dir"       value="../../dist/taglibs"/>
  +    <property name="taglibs.xsl"    value="../../../src/doc/stylesheets/taglibs.xsl"/>
   
       <!-- *********************** Default Properties ********************** -->
   
  @@ -113,8 +115,16 @@
   
     <!-- Compile the documentation application -->
     <target name="documentation" depends="prepare">
  -    <copydir src="${doc.src}/conf"      dest="${build.doc}/WEB-INF"/>
  -    <copydir src="${doc.src}/web"       dest="${build.doc}"/>
  +    <copy todir="${build.doc}/WEB-INF">
  +      <fileset dir="${doc.src}/conf"/>
  +    </copy>
  +    <style   basedir="${doc.src}/web" destdir="${build.doc}"
  +      extension=".html" style="${taglibs.xsl}" includes="*.xml"/>
  +    <copy todir="${build.doc}">
  +      <fileset dir="${doc.src}/web">
  +        <include name="**/*.html"/>
  +      </fileset>
  +    </copy>
   <!--
       <javac srcdir="${doc.src}/src"   destdir="${build.doc}/WEB-INF/classes"
              classpath="${servlet.jar}" debug="on"/>
  
  
  
  1.3       +13 -3     jakarta-taglibs/jspspec/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/jspspec/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml	2000/05/28 13:32:10	1.2
  +++ build.xml	2000/12/08 02:50:02	1.3
  @@ -1,5 +1,5 @@
   <!-- ANT Build Script for the "jspspec" Custom Tag Library -->
  -<!-- $Id: build.xml,v 1.2 2000/05/28 13:32:10 rubys Exp $ -->
  +<!-- $Id: build.xml,v 1.3 2000/12/08 02:50:02 horwat Exp $ -->
   <project name="jspspec" default="main" basedir=".">
   
       <!-- ******************** Adjustable Properties *********************** -->
  @@ -36,11 +36,13 @@
   
   	build.dir                   Base directory for build targets
   	dist.dir                    Base directory for distribution targets
  +        taglibs.xsl                 Taglibs stylesheet
   
       -->
   
       <property name="build.dir"      value="../../build/taglibs"/>
       <property name="dist.dir"       value="../../dist/taglibs"/>
  +    <property name="taglibs.xsl"    value="../../../src/doc/stylesheets/taglibs.xsl"/>
   
       <!-- *********************** Default Properties ********************** -->
   
  @@ -114,8 +116,16 @@
   
     <!-- Compile the documentation application -->
     <target name="documentation" depends="prepare">
  -    <copydir src="${doc.src}/conf"      dest="${build.doc}/WEB-INF"/>
  -    <copydir src="${doc.src}/web"       dest="${build.doc}"/>
  +    <copy todir="${build.doc}/WEB-INF">
  +      <fileset dir="${doc.src}/conf"/>
  +    </copy>
  +    <style   basedir="${doc.src}/web" destdir="${build.doc}"
  +      extension=".html" style="${taglibs.xsl}" includes="*.xml"/>
  +    <copy todir="${build.doc}">
  +      <fileset dir="${doc.src}/web">
  +        <include name="**/*.html"/>
  +      </fileset>
  +    </copy>
     <!--
       <javac srcdir="${doc.src}/src"   destdir="${build.doc}/WEB-INF/classes"
              classpath="${servlet.jar}" debug="on"/>
  
  
  
  1.3       +14 -4     jakarta-taglibs/regexp/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/regexp/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml	2000/11/06 13:51:22	1.2
  +++ build.xml	2000/12/08 02:50:03	1.3
  @@ -1,5 +1,5 @@
   <!-- ANT Build Script for the "regexp" Custom Tag Library -->
  -<!-- $Id: build.xml,v 1.2 2000/11/06 13:51:22 glenn Exp $ -->
  +<!-- $Id: build.xml,v 1.3 2000/12/08 02:50:03 horwat Exp $ -->
   <project name="regexp" default="main" basedir=".">
   
       <!-- ******************** Adjustable Properties *********************** -->
  @@ -40,11 +40,13 @@
   
           build.dir                   Base directory for build targets
           dist.dir                    Base directory for distribution targets
  +        taglibs.xsl                 Taglibs stylesheet
   
       -->
   
       <property name="build.dir"      value="../../build/taglibs"/>
       <property name="dist.dir"       value="../../dist/taglibs"/>
  +    <property name="taglibs.xsl"    value="../../../src/doc/stylesheets/taglibs.xsl"/>
   
       <!-- *********************** Default Properties ********************** -->
   
  @@ -120,8 +122,16 @@
   
     <!-- Compile the documentation application -->
     <target name="documentation" depends="prepare">
  -    <copydir src="${doc.src}/conf"      dest="${build.doc}/WEB-INF"/>
  -    <copydir src="${doc.src}/web"       dest="${build.doc}"/>
  +    <copy todir="${build.doc}/WEB-INF">
  +      <fileset dir="${doc.src}/conf"/>
  +    </copy>
  +    <style   basedir="${doc.src}/web" destdir="${build.doc}"
  +      extension=".html" style="${taglibs.xsl}" includes="*.xml"/>
  +    <copy todir="${build.doc}">
  +      <fileset dir="${doc.src}/web">
  +        <include name="**/*.html"/>
  +      </fileset>
  +    </copy>
       <javadoc packagenames="org.apache.taglibs.regexp.*"
   	     classpath="${servlet.jar}:${oro.jar}"
                sourcepath="src"
  @@ -172,7 +182,7 @@
       <copyfile src="${conf.src}/regexp.tld"
                 dest="${build.library}/META-INF/taglib.tld"/>
       <javac srcdir="${library.src}" destdir="${build.library}"
  -           classpath="${servlet.jar}" debug="on"/>
  +           classpath="${servlet.jar}:${oro.jar}" debug="on"/>
     </target>
   
     <!-- Compile the library as well as the associated applications -->
  
  
  
  1.4       +14 -3     jakarta-taglibs/request/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/request/build.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- build.xml	2000/11/03 12:44:14	1.3
  +++ build.xml	2000/12/08 02:50:03	1.4
  @@ -1,5 +1,5 @@
   <!-- ANT Build Script for the "request" Custom Tag Library -->
  -<!-- $Id: build.xml,v 1.3 2000/11/03 12:44:14 glenn Exp $ -->
  +<!-- $Id: build.xml,v 1.4 2000/12/08 02:50:03 horwat Exp $ -->
   <project name="request" default="main" basedir=".">
   
       <!-- ******************** Adjustable Properties *********************** -->
  @@ -39,11 +39,14 @@
   
           build.dir                   Base directory for build targets
           dist.dir                    Base directory for distribution targets
  +        taglibs.xsl                 Taglibs stylesheet
   
  +
       -->
   
       <property name="build.dir"      value="../../build/taglibs"/>
       <property name="dist.dir"       value="../../dist/taglibs"/>
  +    <property name="taglibs.xsl"    value="../../../src/doc/stylesheets/taglibs.xsl"/>
   
       <!-- *********************** Default Properties ********************** -->
   
  @@ -119,8 +122,16 @@
   
     <!-- Compile the documentation application -->
     <target name="documentation" depends="prepare">
  -    <copydir src="${doc.src}/conf"      dest="${build.doc}/WEB-INF"/>
  -    <copydir src="${doc.src}/web"       dest="${build.doc}"/>
  +    <copy todir="${build.doc}/WEB-INF">
  +      <fileset dir="${doc.src}/conf"/>
  +    </copy>
  +    <style   basedir="${doc.src}/web" destdir="${build.doc}"
  +      extension=".html" style="${taglibs.xsl}" includes="*.xml"/>
  +    <copy todir="${build.doc}">
  +      <fileset dir="${doc.src}/web">
  +        <include name="**/*.html"/>
  +      </fileset>
  +    </copy>
       <javadoc packagenames="org.apache.taglibs.request.*"
   	     classpath="${servlet.jar}"
                sourcepath="src"
  
  
  
  1.4       +13 -3     jakarta-taglibs/response/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/response/build.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- build.xml	2000/11/11 15:47:45	1.3
  +++ build.xml	2000/12/08 02:50:04	1.4
  @@ -1,5 +1,5 @@
   <!-- ANT Build Script for the "response" Custom Tag Library -->
  -<!-- $Id: build.xml,v 1.3 2000/11/11 15:47:45 glenn Exp $ -->
  +<!-- $Id: build.xml,v 1.4 2000/12/08 02:50:04 horwat Exp $ -->
   <project name="response" default="main" basedir=".">
   
       <!-- ******************** Adjustable Properties *********************** -->
  @@ -39,11 +39,13 @@
   
           build.dir                   Base directory for build targets
           dist.dir                    Base directory for distribution targets
  +        taglibs.xsl                 Taglibs stylesheet
   
       -->
   
       <property name="build.dir"      value="../../build/taglibs"/>
       <property name="dist.dir"       value="../../dist/taglibs"/>
  +    <property name="taglibs.xsl"    value="../../../src/doc/stylesheets/taglibs.xsl"/>
   
       <!-- *********************** Default Properties ********************** -->
   
  @@ -119,8 +121,16 @@
   
     <!-- Compile the documentation application -->
     <target name="documentation" depends="prepare">
  -    <copydir src="${doc.src}/conf"      dest="${build.doc}/WEB-INF"/>
  -    <copydir src="${doc.src}/web"       dest="${build.doc}"/>
  +    <copy todir="${build.doc}/WEB-INF">
  +      <fileset dir="${doc.src}/conf"/>
  +    </copy>
  +    <style   basedir="${doc.src}/web" destdir="${build.doc}"
  +      extension=".html" style="${taglibs.xsl}" includes="*.xml"/>
  +    <copy todir="${build.doc}">
  +      <fileset dir="${doc.src}/web">
  +        <include name="**/*.html"/>
  +      </fileset>
  +    </copy>
       <javadoc packagenames="org.apache.taglibs.response.*"
   	     classpath="${servlet.jar}"
                sourcepath="src"
  
  
  
  1.5       +13 -3     jakarta-taglibs/session/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/session/build.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- build.xml	2000/10/29 23:03:47	1.4
  +++ build.xml	2000/12/08 02:50:06	1.5
  @@ -1,5 +1,5 @@
   <!-- ANT Build Script for the "session" Custom Tag Library -->
  -<!-- $Id: build.xml,v 1.4 2000/10/29 23:03:47 glenn Exp $ -->
  +<!-- $Id: build.xml,v 1.5 2000/12/08 02:50:06 horwat Exp $ -->
   <project name="session" default="main" basedir=".">
   
       <!-- ******************** Adjustable Properties *********************** -->
  @@ -39,11 +39,13 @@
   
           build.dir                   Base directory for build targets
           dist.dir                    Base directory for distribution targets
  +        taglibs.xsl                 Taglibs stylesheet
   
       -->
   
       <property name="build.dir"      value="../../build/taglibs"/>
       <property name="dist.dir"       value="../../dist/taglibs"/>
  +    <property name="taglibs.xsl"    value="../../../src/doc/stylesheets/taglibs.xsl"/>
   
       <!-- *********************** Default Properties ********************** -->
   
  @@ -119,8 +121,16 @@
   
     <!-- Compile the documentation application -->
     <target name="documentation" depends="prepare">
  -    <copydir src="${doc.src}/conf"      dest="${build.doc}/WEB-INF"/>
  -    <copydir src="${doc.src}/web"       dest="${build.doc}"/>
  +    <copy todir="${build.doc}/WEB-INF">
  +      <fileset dir="${doc.src}/conf"/>
  +    </copy>
  +    <style   basedir="${doc.src}/web" destdir="${build.doc}"
  +      extension=".html" style="${taglibs.xsl}" includes="*.xml"/>
  +    <copy todir="${build.doc}">
  +      <fileset dir="${doc.src}/web">
  +        <include name="**/*.html"/>
  +      </fileset>
  +    </copy>
       <javadoc packagenames="org.apache.taglibs.session.*"
   	     classpath="${servlet.jar}"
                sourcepath="src"
  
  
  
  1.3       +13 -2     jakarta-taglibs/sql/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/sql/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml	2000/05/28 13:32:10	1.2
  +++ build.xml	2000/12/08 02:50:07	1.3
  @@ -1,5 +1,5 @@
   <!-- ANT Build Script for the "sql" Custom Tag Library -->
  -<!-- $Id: build.xml,v 1.2 2000/05/28 13:32:10 rubys Exp $ -->
  +<!-- $Id: build.xml,v 1.3 2000/12/08 02:50:07 horwat Exp $ -->
   <project name="jspspec" default="main" basedir=".">
   
       <!-- ******************** Adjustable Properties *********************** -->
  @@ -36,11 +36,13 @@
   
   	build.dir                   Base directory for build targets
   	dist.dir                    Base directory for distribution targets
  +        taglibs.xsl                 Taglibs stylesheet
   
       -->
   
       <property name="build.dir"      value="../../build/taglibs"/>
       <property name="dist.dir"       value="../../dist/taglibs"/>
  +    <property name="taglibs.xsl"    value="../../../src/doc/stylesheets/taglibs.xsl"/>
   
       <!-- *********************** Default Properties ********************** -->
   
  @@ -114,7 +116,16 @@
   
     <!-- Compile the documentation application -->
     <target name="documentation" depends="prepare">
  -    <copydir src="${doc.src}/conf"      dest="${build.doc}/WEB-INF"/>
  +    <copy todir="${build.doc}/WEB-INF">
  +      <fileset dir="${doc.src}/conf"/>
  +    </copy>
  +    <style   basedir="${doc.src}/web" destdir="${build.doc}"
  +      extension=".html" style="${taglibs.xsl}" includes="*.xml"/>
  +    <copy todir="${build.doc}">
  +      <fileset dir="${doc.src}/web">
  +        <include name="**/*.html"/>
  +      </fileset>
  +    </copy>
      <!--
       <copydir src="${doc.src}/web"       dest="${build.doc}"/>
       <javac srcdir="${doc.src}/src"   destdir="${build.doc}/WEB-INF/classes"
  
  
  
  1.2       +15 -12    jakarta-taglibs/src/doc/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/src/doc/project.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- project.xml	2000/12/01 23:25:42	1.1
  +++ project.xml	2000/12/08 02:50:07	1.2
  @@ -6,25 +6,28 @@
     <title>Jakarta-Taglib Downloads</title>
   
       <menu name="Downloads">
  -      <item name="Entire Distribution" href="http://jakarta.apache.org/builds/jakarta-taglibs/nightly"/>
  +      <item name="Entire Binary Distribution" href="http://jakarta.apache.org/builds/jakarta-taglibs/nightly"/>
  +      <item name="Entire Source Distribution" href="http://jakarta.apache.org/builds/jakarta-taglibs/nightly/src"/>
         <item name="Documentation" href="http://jakarta.apache.org/builds/jakarta-taglibs/nightly/projects/doc"/>
       </menu>
   
  -    <menu name="Individual Downloads">
  -      <item name="DateTime Taglib" href="http://jakarta.apache.org/builds/jakarta-taglibs/nightly/projects/datetime"/>
  -      <item name="JSP Spec Taglib" href="http://jakarta.apache.org/builds/jakarta-taglibs/nightly/projects/jspspec"/>
  -      <item name="Regexp Taglib" href="http://jakarta.apache.org/builds/jakarta-taglibs/nightly/projects/regexp"/>
  -      <item name="Request Taglib" href="http://jakarta.apache.org/builds/jakarta-taglibs/nightly/projects/request"/>
  -      <item name="Response Taglib" href="http://jakarta.apache.org/builds/jakarta-taglibs/nightly/projects/response"/>
  -      <item name="Session Taglib" href="http://jakarta.apache.org/builds/jakarta-taglibs/nightly/projects/session"/>
  -      <item name="SQL Taglib" href="http://jakarta.apache.org/builds/jakarta-taglibs/nightly/projects/sql"/>
  -      <item name="Utility Taglib" href="http://jakarta.apache.org/builds/jakarta-taglibs/nightly/projects/utility"/>
  -      <item name="XSL Taglib" href="http://jakarta.apache.org/builds/jakarta-taglibs/nightly/projects/xsl"/>
  +    <menu name="Individual Tag Libraries">
  +      <item name="BSF Taglib"      href="http://jakarta.apache.org/taglibs/doc/bsf-doc/intro.html"/>
  +      <item name="DateTime Taglib" href="http://jakarta.apache.org/taglibs/doc/datetime-doc/intro.html"/>
  +      <item name="Input Taglib"    href="http://jakarta.apache.org/taglibs/doc/input-doc/intro.html"/>
  +      <item name="JSP Spec Taglib" href="http://jakarta.apache.org/taglibs/doc/jspspec-doc/intro.html"/>
  +      <item name="Regexp Taglib"   href="http://jakarta.apache.org/taglibs/doc/regexp-doc/intro.html"/>
  +      <item name="Request Taglib"  href="http://jakarta.apache.org/taglibs/doc/request-doc/intro.html"/>
  +      <item name="Response Taglib" href="http://jakarta.apache.org/taglibs/doc/response-doc/intro.html"/>
  +      <item name="Session Taglib"  href="http://jakarta.apache.org/taglibs/doc/session-doc/intro.html"/>
  +      <item name="SQL Taglib"      href="http://jakarta.apache.org/taglibs/doc/sql-doc/intro.html"/>
  +      <item name="Utility Taglib"  href="http://jakarta.apache.org/taglibs/doc/utility-doc/intro.html"/>
  +      <item name="XSL Taglib"      href="http://jakarta.apache.org/taglibs/doc/xsl-doc/intro.html"/>
       </menu>
   
       <menu name="Documentation">
         <item name="Binary Dist" href="binarydist.html"/>
  -      <item name="Source Dist" href="binarydist.html"/>
  +      <item name="Source Dist" href="sourcedist.html"/>
         <item name="Tutorial" href="tutorial.html"/>
       </menu>
   
  
  
  
  1.2       +5 -3      jakarta-taglibs/src/doc/stylesheets/taglibs.xsl
  
  Index: taglibs.xsl
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/src/doc/stylesheets/taglibs.xsl,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- taglibs.xsl	2000/12/01 23:25:43	1.1
  +++ taglibs.xsl	2000/12/08 02:50:08	1.2
  @@ -1,6 +1,6 @@
   <?xml version="1.0" encoding="ISO-8859-1"?>
   <!-- Content Stylesheet for Taglibs Documentation -->
  -<!-- $Id: taglibs.xsl,v 1.1 2000/12/01 23:25:43 horwat Exp $ -->
  +<!-- $Id: taglibs.xsl,v 1.2 2000/12/08 02:50:08 horwat Exp $ -->
   
   <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
     version="1.0">
  @@ -44,9 +44,11 @@
   
         <tr><td colspan="2">
           <a href="http://jakarta.apache.org">
  -        <img src="images/jakarta-logo.gif" align="left" border="0"/>
  +          <img src="http://jakarta.apache.org/taglibs/images/jakarta-logo.gif" align="left" border="0"/>
           </a>
  -        <img src="images/taglibs.gif" align="right" border="0"/>
  +        <a href="http://jakarta.apache.org/taglibs/index.html">
  +          <img src="http://jakarta.apache.org/taglibs/images/taglibs.gif" align="right" border="0"/>
  +        </a>
         </td></tr>
   
         <tr><td colspan="2">
  
  
  
  1.3       +13 -5     jakarta-taglibs/utility/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/utility/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml	2000/09/15 19:41:55	1.2
  +++ build.xml	2000/12/08 02:50:08	1.3
  @@ -1,5 +1,5 @@
   <!-- ANT Build Script for the "utility" Custom Tag Library -->
  -<!-- $Id: build.xml,v 1.2 2000/09/15 19:41:55 craigmcc Exp $ -->
  +<!-- $Id: build.xml,v 1.3 2000/12/08 02:50:08 horwat Exp $ -->
   <project name="utility" default="main" basedir=".">
   
       <!-- ******************** Adjustable Properties *********************** -->
  @@ -36,11 +36,13 @@
   
   	build.dir                   Base directory for build targets
   	dist.dir                    Base directory for distribution targets
  +        taglibs.xsl                 Taglibs stylesheet
   
       -->
   
       <property name="build.dir"      value="../../build/taglibs"/>
       <property name="dist.dir"       value="../../dist/taglibs"/>
  +    <property name="taglibs.xsl"    value="../../../src/doc/stylesheets/taglibs.xsl"/>
   
       <!-- *********************** Default Properties ********************** -->
   
  @@ -114,10 +116,16 @@
   
     <!-- Compile the documentation application -->
     <target name="documentation" depends="prepare">
  -<!--
  -    <copydir src="${doc.src}/conf"      dest="${build.doc}/WEB-INF"/>
  --->
  -    <copydir src="${doc.src}/web"       dest="${build.doc}"/>
  +    <copy todir="${build.doc}/WEB-INF">
  +      <fileset dir="${doc.src}/conf"/>
  +    </copy>
  +    <style   basedir="${doc.src}/web" destdir="${build.doc}"
  +      extension=".html" style="${taglibs.xsl}" includes="*.xml"/>
  +    <copy todir="${build.doc}">
  +      <fileset dir="${doc.src}/web">
  +        <include name="**/*.html"/>
  +      </fileset>
  +    </copy>
   <!--
       <javac srcdir="${doc.src}/src"   destdir="${build.doc}/WEB-INF/classes"
              classpath="${servlet.jar}" debug="on"/>
  
  
  
  1.3       +13 -3     jakarta-taglibs/xsl/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/xsl/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml	2000/07/03 19:28:51	1.2
  +++ build.xml	2000/12/08 02:50:09	1.3
  @@ -1,5 +1,5 @@
   <!-- ANT Build Script for the "xsl" Custom Tag Library -->
  -<!-- $Id: build.xml,v 1.2 2000/07/03 19:28:51 craigmcc Exp $ -->
  +<!-- $Id: build.xml,v 1.3 2000/12/08 02:50:09 horwat Exp $ -->
   <project name="xsl" default="main" basedir=".">
   
       <!-- ******************** Adjustable Properties *********************** -->
  @@ -44,11 +44,13 @@
   
   	build.dir                   Base directory for build targets
   	dist.dir                    Base directory for distribution targets
  +        taglibs.xsl                 Taglibs stylesheet
   
       -->
   
       <property name="build.dir"      value="../../build/taglibs"/>
       <property name="dist.dir"       value="../../dist/taglibs"/>
  +    <property name="taglibs.xsl"    value="../../../src/doc/stylesheets/taglibs.xsl"/>
   
   
       <!-- *********************** Default Properties ********************** -->
  @@ -124,8 +126,16 @@
   
     <!-- Compile the documentation application -->
     <target name="documentation" depends="prepare">
  -    <copydir src="${doc.src}/conf"      dest="${build.doc}/WEB-INF"/>
  -    <copydir src="${doc.src}/web"       dest="${build.doc}"/>
  +    <copy todir="${build.doc}/WEB-INF">
  +      <fileset dir="${doc.src}/conf"/>
  +    </copy>
  +    <style   basedir="${doc.src}/web" destdir="${build.doc}"
  +      extension=".html" style="${taglibs.xsl}" includes="*.xml"/>
  +    <copy todir="${build.doc}">
  +      <fileset dir="${doc.src}/web">
  +        <include name="**/*.html"/>
  +      </fileset>
  +    </copy>
   <!--
       <javac srcdir="${doc.src}/src"   destdir="${build.doc}/WEB-INF/classes"
              classpath="${servlet.jar};${xalan.jar};${xerces.jar}" debug="on"/>