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.

changelog.html 3.7 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Language" content="en-us">
  4. <title>Changelog Task</title>
  5. </head>
  6. <body>
  7. <h2><a name="changelog">Changelog</a></h2>
  8. <h3>Description</h3>
  9. <p>Generates an XML report of the changes recorded in a
  10. <a href="http://www.cvshome.org/" target="_top">CVS</a> repository. </p>
  11. <h3>Parameters</h3>
  12. <table border="1" cellpadding="2" cellspacing="0">
  13. <tr>
  14. <td valign="top"><b>Attribute</b></td>
  15. <td valign="top"><b>Description</b></td>
  16. <td align="center" valign="top"><b>Required</b></td>
  17. </tr>
  18. <tr>
  19. <td valign="top">basedir</td>
  20. <td valign="top">the directory from which to run &quot;cvs log&quot;.</td>
  21. <td align="center" valign="top">Yes</td>
  22. </tr>
  23. <tr>
  24. <td valign="top">destfile</td>
  25. <td valign="top">the file in which to write the changelog.</td>
  26. <td align="center" valign="top">Yes</td>
  27. </tr>
  28. <tr>
  29. <td valign="top">start</td>
  30. <td valign="top">the earliest date of changes that are to be included in report.</td>
  31. <td align="center" valign="top">No</td>
  32. </tr>
  33. <tr>
  34. <td valign="top">end</td>
  35. <td valign="top">the latest date of changes that are to be included in report.</td>
  36. <td align="center" valign="top">No</td>
  37. </tr>
  38. </table>
  39. <h4><a name="user">user</a></h4>
  40. <p>The changelog task all allows a user element. It maps between a usernid
  41. as it appears on the cvs server and a display name. Any time the userid
  42. has made a change in the repository, the author tag in report will use
  43. the supplied displayname rather than the userid..</p>
  44. <table border="1" cellpadding="2" cellspacing="0">
  45. <tr>
  46. <td valign="top"><b>Attribute</b></td>
  47. <td valign="top"><b>Description</b></td>
  48. <td align="center" valign="top"><b>Required</b></td>
  49. </tr>
  50. <tr>
  51. <td valign="top">displayname</td>
  52. <td valign="top">The name to be displayed in CVS changelog.</td>
  53. <td valign="top" align="center">Yes</td>
  54. </tr>
  55. <tr>
  56. <td valign="top">userid</td>
  57. <td valign="top">The userid of person as they exist on the CVS server.</td>
  58. <td valign="top" align="center">Yes</td>
  59. </tr>
  60. </table>
  61. <h3>Examples</h3>
  62. <pre> &lt;changelog basedir=&quot;dve/network&quot;
  63. destfile=&quot;changelog.xml&quot;
  64. /&gt;</pre>
  65. <p>Generates a changelog for the dve/network directory including all changes that
  66. ever occured on repository. It writes these changes into the file &quot;changelog.xml&quot;.</p>
  67. <pre> &lt;changelog basedir=&quot;dve/network&quot;
  68. destfile=&quot;changelog.xml&quot;
  69. start=&quot;20 Feb 2002&quot;
  70. end=&quot;20 Mar 2002&quot;
  71. /&gt;</pre>
  72. <p>Generates a changelog for the dve/network directory for all the changes that occured
  73. between the dates 20th of Feb 2002 and 20th of Mar 2002. It writes these changes into the file &quot;changelog.xml&quot;.</p>
  74. <pre> &lt;changelog basedir=&quot;dve/network&quot;
  75. destfile=&quot;changelog.xml&quot;
  76. start=&quot;20 Feb 2002&quot;
  77. /&gt;</pre>
  78. <p>Generates a changelog for the dve/network directory for all the changes that occured
  79. after the 20th of Feb 2002. It writes these changes into the file &quot;changelog.xml&quot;.</p>
  80. <pre> &lt;changelog basedir=&quot;dve/network&quot;
  81. destfile=&quot;changelog.xml&quot;
  82. &lt;user displayname=&quot;Peter Donald&quot; userid=&quot;donaldp&quot;/&gt;
  83. /&gt;</pre>
  84. <p>Generates a changelog for the dve/network directory for all the changes that
  85. ever occured. It will also specify the author name as &quot;Peter Donald&quot;
  86. any time it encounters the username &quot;donaldp&quot; in the changes.</p>
  87. <hr><p align="center">Copyright &copy; 2001 Apache Software Foundation. All rights
  88. Reserved.</p>
  89. </body>
  90. </html>