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.

vsshistory.html 3.1 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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="vsshistory">VssHistory</a></h2>
  8. <h3>Description</h3>
  9. Task to perform HISTORY commands to Microsoft Visual Source Safe.
  10. <h3>Parameters</h3>
  11. <table border="1" cellpadding="2" cellspacing="0">
  12. <tr>
  13. <th>Attribute</th>
  14. <th>Values</th>
  15. <th>Required</th>
  16. </tr>
  17. <tr>
  18. <td>login</td>
  19. <td>username,password</td>
  20. <td>No</td>
  21. </tr>
  22. <tr>
  23. <td>vsspath</td>
  24. <td>SourceSafe path</td>
  25. <td>Yes</td>
  26. </tr>
  27. <tr>
  28. <td>ssdir</td>
  29. <td>directory where <code>ss.exe</code> resides. By default the task
  30. expects it to be in the PATH.</td>
  31. <td>No</td>
  32. </tr>
  33. <tr>
  34. <td>serverPath</td>
  35. <td>directory where <code>srssafe.ini</code> resides.</td>
  36. <td>No</td>
  37. </tr>
  38. <tr>
  39. <td>fromDate</td>
  40. <td>Start date for comparison</td>
  41. <td>See below</td>
  42. </tr>
  43. <tr>
  44. <td>toDate</td>
  45. <td>Start date for comparison</td>
  46. <td>See below</td>
  47. </tr>
  48. <tr>
  49. <td>fromLabel</td>
  50. <td>Start label for comparison</td>
  51. <td>No</td>
  52. </tr>
  53. <tr>
  54. <td>toLabel</td>
  55. <td>Start label for comparison</td>
  56. <td>No</td>
  57. </tr>
  58. <tr>
  59. <td>numdays</td>
  60. <td>The number of days for comparison.</td>
  61. <td>See below</td>
  62. </tr>
  63. <tr>
  64. <td>outputfilename</td>
  65. <td>File to write the diff.</td>
  66. <td>No</td>
  67. </tr>
  68. <tr>
  69. <td>recursive</td>
  70. <td>true or false</td>
  71. <td>No</td>
  72. <tr>
  73. <tr>
  74. <td>style</td>
  75. <td>brief or codediff or nofile. The default is brief.</td>
  76. <td>No</td>
  77. <tr>
  78. </table>
  79. <h4>Specifying the time-frame</h4>
  80. <p>There are different ways to specify what time-frame you wish to evaluate:</p>
  81. <ul>
  82. <li>Changes between two dates: Specify both <code>fromDate</code> and <code>toDate</code> </li>
  83. <li>Changes before a date: Specify <code>toDate</code></li>
  84. <li>Changes after a date: Specify <code>fromDate</code></li>
  85. <li>Changes X Days before a date: Specify <code>toDate</code> and (negative!) <code>numDays</code></li>
  86. <li>Changes X Days after a date: Specify <code>fromDate</code> and <code>numDays</code></li>
  87. </ul>
  88. <h3>Examples</h3>
  89. <blockquote>
  90. <pre>
  91. &lt;vsshistory recursive=&quot;true&quot;
  92. fromLabel=&quot;Release1&quot;
  93. toLabel=&quot;Release2&quot;/&gt;
  94. </pre>
  95. </blockquote>
  96. <p>Shows all changes between &quot;Release1&quot; and &quot;Release2&quot;.</p>
  97. <blockquote>
  98. <pre>
  99. &lt;vsshistory recursive=&quot;true&quot;
  100. fromDate=&quot;01.01.2001&quot;
  101. toDate=&quot;31.03.2001&quot;/&gt;
  102. </pre>
  103. </blockquote>
  104. <p>Shows all changes between January 1st 2001 and March 31st 2001 (in Germany, date must be specified according to your locale).</p>
  105. <blockquote>
  106. <pre>
  107. &lt;vsshistory recursive=&quot;true&quot;
  108. numDays="-14"
  109. toDate=&quot;31.01.2001&quot;/&gt;
  110. </pre>
  111. </blockquote>
  112. <p>Shows all changes in the 14 days before January 31st 2001 (in Germany, date must be specified according to your locale).</p>
  113. <hr>
  114. <p align="center">Copyright &copy; 2000,2001 Apache Software Foundation. All rights
  115. Reserved.</p>
  116. </body>
  117. </html>