tests/run-tests.html: move noscript into body
[git-browser.git] / templates.html
blob39015522130b2a543f21e4ebd40730e42daaeba9
1 <!DOCTYPE html>
2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <!--
4 Copyright (C) 2005, Artem Khodush <greenkaa@gmail.com>
6 This file is licensed under the GNU General Public License version 2.
7 -->
8 <head>
9 <meta charset="utf-8" />
10 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
11 </head>
12 <body>
14 <!-- this file contains common HTML templates -->
16 <!--
17 the templates should be "wrapped", and the third argument
18 to DomTemplate.apply should not be null. Otherwise, (when the elements
19 are not appended to the document immediately after cloneNode),
20 FireFox seems to reset to null all onclick handlers in template elements
21 that came from another document, and it does so in a second or so after cloneNode,
22 so the handlers that were assigned e.g. in DomTemplate.apply are lost.
23 -->
25 <div id="titletemplate">
26 <table id="title" class="title"><tr>
27 <td>Starting from: <span id="selectedtext"></span></td>
28 <td><a id="selectother" class="linkbutton" href="index.html">select other</a></td>
29 <td><span id="commitcount"></span><a id="loadmore" class="button" style="visibility: hidden;">load more</a></td>
30 <td><a id="filtershow" class="button">filter...</a></td>
31 <td>&#160;&#160;<a id="home_btn" href="/">home</a></td>
32 </tr></table>
33 </div>
35 <div id="filterdialogtemplate">
36 <div id="filterdialog" class="filterdialog" style="display: none;">
37 filter the diagram:
38 <table id="filtertable" class="filtertable" cellpadding="4" cellspacing="4">
39 <tr>
40 <td align="right" valign="top">exclude refs:</td>
41 <td><input type="textarea" id="filterexclude" class="filterarea" /></td>
42 </tr>
43 <tr>
44 <td align="right" valign="top">only affecting paths:</td>
45 <td><input type="textarea" id="filterpath" class="filterarea" /></td>
46 </tr>
47 <tr>
48 <td>&#160;</td>
49 <td><span class="filterhint">(lists are space separated)</span></td>
50 </tr>
51 </table>
52 &#160;<a class="button" id="filterreload">reload diagram</a>
53 &#160;<a class="button" id="filterclear">clear</a>
54 &#160;<a class="button" id="filterclose">close</a>
55 </div>
56 </div>
58 </body>
59 </html>