You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

stylebook.html 1.7 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Language" content="en-us">
  4. <title>Ant User Manual</title>
  5. </head>
  6. <body>
  7. <h2><a name="stylebook">Stylebook</a></h2>
  8. <h3>Description</h3>
  9. <p>This executes the apache Stylebook documentation generator.
  10. Unlike the commandline version of this tool, all three arguments
  11. are required to run stylebook.</p>
  12. <h3>Parameters</h3>
  13. <table border="1" cellpadding="2" cellspacing="0">
  14. <tr>
  15. <td valign="top"><b>Attribute</b></td>
  16. <td valign="top"><b>Description</b></td>
  17. <td align="center" valign="top"><b>Required</b></td>
  18. </tr>
  19. <tr>
  20. <td valign="top">book</td>
  21. <td valign="top">the book xml file that the documentation generation starts from
  22. </td>
  23. <td valign="top" align="center">Yes</td>
  24. </tr>
  25. <tr>
  26. <td valign="top">skindirectory</td>
  27. <td valign="top">the directory that contains the stylebook skin
  28. </td>
  29. <td valign="top" align="center">Yes</td>
  30. </tr>
  31. <tr>
  32. <td valign="top">targetdirectory</td>
  33. <td valign="top">the destination directory where the documentation is generated
  34. </td>
  35. <td valign="top" align="center">Yes</td>
  36. </tr>
  37. </table>
  38. <p>
  39. The user can also specify the nested &lt;classpath&gt; element which defines classpath
  40. in which the task is executed.</p>
  41. <h3>Examples</h3>
  42. <blockquote>
  43. <pre>
  44. &lt;stylebook targetdirectory=&quot;build/docs&quot;
  45. book=&quot;src/xdocs/book.xml&quot;
  46. skindirectory=&quot;src/skins/myskin&quot;/&gt;
  47. </pre>
  48. </blockquote>
  49. The above will generate documentation in build/docs starting from the book
  50. src/xdocs/book.xml and using the skin located in directory src/skins/myskin.
  51. <hr>
  52. <p align="center">Copyright &copy; 2000,2001 Apache Software Foundation. All rights
  53. Reserved.</p>
  54. </body>
  55. </html>