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 gl...@apache.org on 2001/07/05 00:15:01 UTC

cvs commit: jakarta-taglibs common.properties common.xml

glenn       01/07/04 15:15:01

  Modified:    .        common.properties common.xml
  Log:
  Add support for jsp1.2
  
  Revision  Changes    Path
  1.6       +1 -0      jakarta-taglibs/common.properties
  
  Index: common.properties
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/common.properties,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- common.properties	2001/07/01 20:10:08	1.5
  +++ common.properties	2001/07/04 22:15:01	1.6
  @@ -34,6 +34,7 @@
   #
   taglib-doc.dir = ../src/taglib
   tld11.xsl = ${taglib-doc.dir}/tld11.xsl
  +tld12.xsl = ${taglib-doc.dir}/tld12.xsl
   taglib-doc.xsl = ${taglib-doc.dir}/taglib-doc.xsl
   changes-doc.xsl = ${taglib-doc.dir}/changes-doc.xsl
   
  
  
  
  1.13      +14 -2     jakarta-taglibs/common.xml
  
  Index: common.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/common.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- common.xml	2001/07/03 16:34:47	1.12
  +++ common.xml	2001/07/04 22:15:01	1.13
  @@ -288,12 +288,24 @@
          -->
   
     <target name="template-tld" depends="prepare" if="template.present">
  +    <antcall target="template-tld11"/>
  +    <antcall target="template-tld12"/>
  +    <!-- Remove call to gen-tld once taglibs converted to new template -->
  +    <antcall target="gen-tld"/>
  +  </target>
  +
  +  <target name="template-tld11" depends="prepare" unless="jsp12.present">
       <style in="${xml.src}/${taglib.name}.xml"
              destdir="${build.examples}/WEB-INF"
              out="${build.examples}/WEB-INF/${taglib.name}.tld"
              style="${tld11.xsl}"/>
  -    <!-- Remove call to gen-tld once taglibs converted to new template -->
  -    <antcall target="gen-tld"/>
  +  </target>
  +
  +  <target name="template-tld12" depends="prepare" if="jsp12.present">
  +    <style in="${xml.src}/${taglib.name}.xml"
  +           destdir="${build.examples}/WEB-INF"
  +           out="${build.examples}/WEB-INF/${taglib.name}.tld"
  +           style="${tld12.xsl}"/>
     </target>
   
     <target name="template-docs" depends="prepare" if="template.present">