git-browser.cgi: fix handling of latin-1 characters
[git-browser-mirror.git] / templates.html
blob845c738a7275252694dfc29e81c65aa5e236acdc
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
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 <body>
10 <!-- this file contains common HTML templates -->
12 <!--
13 the templates should be "wrapped", and the third argument
14 to DomTemplate.apply should not be null. Otherwize, (when the elements
15 are not appended to the document immediately after cloneNode),
16 FireFox seems to reset to null all onclick handlers in template elements
17 that came from another document, and it does so in a second or so after cloneNode,
18 so the handlers that were assigned e.g. in DomTemplate.apply are lost.
19 -->
21 <div id="titletemplate">
22 <table id="title" class="title"><tr>
23 <td>Starting from: <span id="selectedtext"></span></td>
24 <td><a id="selectother" class="linkbutton" href="index.html">select other</a></td>
25 <td><span id="commitcount"></span><a id="loadmore" class="button" style="visibility: hidden;">load more</a></td>
26 <td><a id="filtershow" class="button">filter...</a></td>
27 <td>&nbsp;&nbsp;<a href="/">home</a></td>
28 </tr></table>
29 </div>
31 <div id="filterdialogtemplate">
32 <div id="filterdialog" class="filterdialog" style="display: none;">
33 filter the diagram:
34 <table id="filtertable" class="filtertable" cellpadding="4" cellspacing="4">
35 <tr>
36 <td align="right" valign="top">exclude refs:</td>
37 <td><input type="textarea" id="filterexclude" class="filterarea"/></td>
38 </tr>
39 <tr>
40 <td align="right" valign="top">only affecting paths:</td>
41 <td><input type="textarea" id="filterpath" class="filterarea"/></td>
42 </tr>
43 <tr>
44 <td>&nbsp;</td>
45 <td><span class="filterhint">(lists are space separated)</span></td>
46 </tr>
47 </table>
48 &nbsp;<a class="button" id="filterreload">reload diagram</a>
49 &nbsp;<a class="button" id="filterclear">clear</a>
50 &nbsp;<a class="button" id="filterclose">close</a>
51 </div>
52 </div>
54 </body>