You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by gi...@locus.apache.org on 2000/10/27 22:58:16 UTC

cvs commit: xml-cocoon/src/org/apache/cocoon/generation HTMLGenerator.java

giacomo     00/10/27 13:58:15

  Modified:    .        Tag: xml-cocoon2 build.xml
  Added:       src/org/apache/cocoon/generation Tag: xml-cocoon2
                        HTMLGenerator.java
  Log:
  Added HTMLGenerator from Davanum Srinivas
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.6.2.38  +5 -1      xml-cocoon/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-cocoon/build.xml,v
  retrieving revision 1.6.2.37
  retrieving revision 1.6.2.38
  diff -u -r1.6.2.37 -r1.6.2.38
  --- build.xml	2000/10/08 21:00:24	1.6.2.37
  +++ build.xml	2000/10/27 20:58:00	1.6.2.38
  @@ -116,7 +116,7 @@
       <property name="debug"          value="on"/>
       <property name="optimize"       value="off"/>
       <property name="deprecation"    value="off"/>
  -    <property name="build.compiler" value="classic"/>
  +    <property name="build.compiler" value="jikes"/>
       <property name="target.vm"      value="1.2"/>
   
       <property name="src.dir"      value="./src"/>
  @@ -185,6 +185,9 @@
       <available property="jai.present" classname="com.sun.media.jai.codec.ImageCodec">
         <classpath refid="classpath"/>
       </available>
  +    <available property="tidy.present" classname="org.w3c.tidy.Tidy">
  +      <classpath refid="classpath"/>
  +    </available>
     </target>
   
     <!-- =================================================================== -->
  @@ -230,6 +233,7 @@
         <exclude name="**/JPEGEncoder*.java"   unless="jpeg.present"/>
         <exclude name="**/PNGEncoder*.java"    unless="png.present"/>
         <exclude name="**/JAI*.java"           unless="jai.present"/>
  +      <exclude name="**/HTMLGenerator.java"  unless="tidy.present"/>
       </javac>
     </target>
   
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.1   +55 -0     xml-cocoon/src/org/apache/cocoon/generation/Attic/HTMLGenerator.java