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/20 01:50:57 UTC

cvs commit: jakarta-taglibs/src/doc project.xml

horwat      00/12/19 16:50:57

  Modified:    jndi     build.xml
               src/doc  project.xml
  Added:       jndi/doc/web intro.xml
  Log:
  Added jndi tag library jakarta web pages
  
  Revision  Changes    Path
  1.2       +9 -3      jakarta-taglibs/jndi/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/jndi/build.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build.xml	2000/12/12 15:34:20	1.1
  +++ build.xml	2000/12/20 00:50:54	1.2
  @@ -1,5 +1,5 @@
   <!-- ANT Build Script for the "jndi" Custom Tag Library -->
  -<!-- $Id: build.xml,v 1.1 2000/12/12 15:34:20 shemnon Exp $ -->
  +<!-- $Id: build.xml,v 1.2 2000/12/20 00:50:54 horwat Exp $ -->
   <project name="jndi" 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 ********************** -->
   
  @@ -123,8 +125,12 @@
       <copy todir="${build.doc}/WEB-INF" >
           <fileset dir="${doc.src}/conf" />
       </copy>
  -    <copy todir="${build.doc}" >
  -        <fileset dir="${doc.src}/web" />
  +    <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.jndi.*"
   	     classpath="${servlet.jar}"
  
  
  
  1.1                  jakarta-taglibs/jndi/doc/web/intro.xml
  
  Index: intro.xml
  ===================================================================
  <?xml version="1.0"?>
  <document url="./intro.xml">
  
    <properties>
      <author>Justyna Horwat</author>
      <title>The Jakarta-Taglibs Project</title>
    </properties>
  
    <body>
  
  
    <section name="JNDI Tag Library" href="Welcome">
  
    <p>The JNDI Tag Library creates an instance of a javax.naming.Context based on the values
       of the attributes providing some of the standard values.  In addition to the 
       System properties and the jndi.properties, some standard properties are 
       scanned in the pageContext attributes.</p>
  
    </section>
  
    <section name="Documentation" href="Documentation">
  
    <p>For more information about the JNDI Tag Library, look at the on-line documentation:</p>
    <ul>
    <li>View the <a href="http://jakarta.apache.org/taglibs/doc/jndi-doc/index.html">JNDI Taglib Documentation</a></li>
    </ul>
  
    <p>For information on how to use the distributions, look at the following documentation:</p>
  
    <ul>
    <li>Using the Jakarta-Taglibs <a href="http://jakarta.apache.org/taglibs/binarydist.html">Binary Distribution</a></li>
    <li>Using the Jakarta-Taglibs <a href="http://jakarta.apache.org/taglibs/sourcedist.html">Source Distribution</a></li>
    </ul>
  
    </section>
  
    <section name="Download" href="Download">
  
    <p>A binary download of the JNDI Tag Library is available</p>
    <ul>
    <li><strong>Download <a href="http://jakarta.apache.org/builds/jakarta-taglibs/nightly/projects/jndi/">JNDI Tag Library</a></strong></li>
    </ul>
  
    <p>The following distributions are also available for download:</p>
    <ul>
    <li>Download <a href="http://jakarta.apache.org/builds/jakarta-taglibs/nightly/src/">Jakarta-Taglibs Source</a></li>
    <li>Download entire <a href="http://jakarta.apache.org/builds/jakarta-taglibs/nightly">Jakarta-Taglibs Distribution</a></li>
    </ul>
  
    </section>
  
    <section name="Contributors" href="Contributors">
    <p>List of contributors:</p>
  
    <ul>
    <li>Danno Ferrin</li>
    </ul>
  
    </section>
  
    </body>
  </document>
  
  
  
  1.3       +1 -0      jakarta-taglibs/src/doc/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/src/doc/project.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- project.xml	2000/12/08 02:50:07	1.2
  +++ project.xml	2000/12/20 00:50:54	1.3
  @@ -15,6 +15,7 @@
         <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="JNDI Taglib"     href="http://jakarta.apache.org/taglibs/doc/jndi-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"/>