You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by bo...@apache.org on 2001/06/22 09:45:17 UTC

cvs commit: jakarta-ant/docs/manual/CoreTasks style.html

bodewig     01/06/22 00:45:17

  Modified:    .        WHATSNEW
               docs/manual/CoreTasks style.html
  Log:
  documentation for latest <style> changes.
  
  Revision  Changes    Path
  1.115     +9 -1      jakarta-ant/WHATSNEW
  
  Index: WHATSNEW
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/WHATSNEW,v
  retrieving revision 1.114
  retrieving revision 1.115
  diff -u -r1.114 -r1.115
  --- WHATSNEW	2001/06/21 11:49:23	1.114
  +++ WHATSNEW	2001/06/22 07:45:15	1.115
  @@ -75,6 +75,13 @@
   
   * Data types like <path> can now be defined inside of <target>s
   
  +* you can now specify a classpath for <style> - the XSLZ processor
  +  will be loaded from this path
  +
  +* added a force attribute to <style> to support dependencies that the
  +  task cannot determine itself (dependency on parameters, not file
  +  modification times for example)
  +
   Fixed bugs:
   -----------
   
  @@ -124,7 +131,8 @@
   * Allow DTD locations to be specified when building generic ejb-jars
   
   * Handle classpaths with spaces
  -  
  +
  +* Make sure XSLT processors close their output files in <style>.  
   
   Changes from Ant 1.2 to Ant 1.3
   ===========================================
  
  
  
  1.8       +22 -0     jakarta-ant/docs/manual/CoreTasks/style.html
  
  Index: style.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/style.html,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- style.html	2001/06/13 15:29:42	1.7
  +++ style.html	2001/06/22 07:45:16	1.8
  @@ -63,6 +63,24 @@
       <td align="center" valign="top">Yes</td>
     </tr>
     <tr>
  +    <td valign="top">classpath</td> 
  +    <td valign="top">the classpath to use when looking up the XSLT
  +      processor.</td>
  +    <td align="center" valign="top">No</td>
  +  </tr>
  +  <tr>
  +    <td valign="top">classpathref</td>
  +    <td valign="top">the classpath to use, given as <a
  +      href="../using.html#references">reference</a> to a path defined elsewhere.</td>
  +    <td align="center" valign="top">No</td>
  +  </tr>
  +  <tr>
  +    <td valign="top">force</td>
  +    <td valign="top">Recreate target files, even if they are newer
  +      than their corresponding source files or the stylesheet.</td>
  +    <td valign="top" align="center">No</td>
  +  </tr>
  +  <tr>
       <td valign="top">processor</td>
       <td valign="top">name of the XSLT processor to use.  Permissible values are
         &quot;trax&quot; for a TraX compliant processor, &quot;xslp&quot; for the 
  @@ -116,6 +134,10 @@
     </tr>
   </table>
   <h3>Parameters specified as nested elements</h3>
  +<h4>classpath</h4>
  +<p>The classpath to load the processor from can be specified via a
  +nested <code>&lt;classpath&gt;</code>, as well - that is, a 
  +<a href="../using.html#path">path</a>-like structure.</p>
   <h4>param</h4>
   <p>Param is used to pass a parameter to the XSL stylesheet.</p>
   <h4>Parameters</h4>