root/trac/templates/anydiff.cs

リビジョン 287, 1.4 kB (コミッタ: anonymous, コミット時期: 4 年 前)

Added trac template files.

Line 
1 <?cs include "header.cs"?>
2
3 <div id="ctxtnav" class="nav"></div>
4
5 <div id="content" class="changeset">
6  <div id="title">
7     <h1>見たい diff の Base (From) と Target (To) を指定して下さい:</h1>
8  </div>
9
10  <div id="anydiff">
11   <form action="<?cs var:anydiff.changeset_href ?>" method="get">
12    <table>
13     <tr>
14      <th><label for="old_path">From:</label></th>
15      <td>
16       <input type="text" id="old_path" name="old_path" value="<?cs
17          var:anydiff.old_path ?>" size="44" />
18       <label for="old_rev">リビジョン:</label>
19       <input type="text" id="old_rev" name="old" value="<?cs
20          var:anydiff.old_rev ?>" size="4" />
21      </td>
22     </tr>
23     <tr>
24      <th><label for="new_path">To:</label></th>
25      <td>
26       <input type="text" id="new_path" name="new_path" value="<?cs
27          var:anydiff.new_path ?>" size="44" />
28       <label for="new_rev">リビジョン:</label>
29       <input type="text" id="new_rev" name="new" value="<?cs
30          var:anydiff.new_rev ?>" size="4" />
31      </td>
32     </tr>
33    </table>
34    <div class="buttons">
35       <input type="submit" value="diff を表示" />
36    </div>
37   </form>
38  </div>
39  <div id="help">
40   <strong>Note:</strong> ブランチ間の diff についてのヘルプは <a href="<?cs var:trac.href.wiki
41   ?>/TracChangeset#ブランチ間のdiffを見る">TracChangeset</a> を参照して下さい。
42  </div>
43 </div>
44
45 <?cs include "footer.cs"?>
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。