blob: 6f1ae5a01f47444b0d9dd673ccc042e6ac098db5 [file] [log] [blame]
Guillaume Nodete00edeb2010-03-04 20:53:59 +00001<script type="text/javascript" src="res/ui/obr.js"></script>
Felix Meschbergerf15dc7a2010-02-21 16:45:55 +00002<script type="text/javascript">
3var i18n = {
4 status_ok : '${obr.status.ok}',
5 status_no : '${obr.status.no}',
6 selectVersion : '${obr.version.select}'
7}
8var obrData = ${__data__};
9</script>
10
11<p class="statline">${obr.status.ok}</p>
12
Felix Meschberger98f1be02010-03-03 12:48:20 +000013<div id="ifStatusOK" class="ui-helper-hidden">
14
Felix Meschbergerf15dc7a2010-02-21 16:45:55 +000015<div class="ui-widget-header ui-corner-top buttonGroup">
16 <span style="float: left; margin-left: 1em">${obr.repo.title}</span>
17 <input style="width: 50%" type="text" id="addRepoUri" />
18 <button id="addRepoBtn">${obr.action.add}</button>
19</div>
20
21<table id="repoTable" class="nicetable">
22 <thead>
23 <tr>
24 <th class="col_Name">${obr.repo.name}</th>
25 <th class="col_URL">${obr.repo.url}</th>
26 <th class="col_lastMod">${obr.repo.lastModified}</th>
27 <th class="col_Actions">${obr.repo.actions}</th>
28 </tr>
29 </thead>
30 <tbody> <!-- template: will be replaced dynamically by JS -->
31 <tr>
32 <td>name</td>
33 <td>url</td>
34 <td>date</td>
35 <td>
36 <ul class="icons ui-widget">
37 <li class="dynhover" title="${refresh}"><span class="ui-icon ui-icon-refresh">&nbsp;</span></li>
38 <li class="dynhover" title="${delete}"><span class="ui-icon ui-icon-trash">&nbsp;</span></li>
39 </ul>
40 </td>
41 </tr>
42 </tbody>
43</table>
44
45<br/>
46
Guillaume Nodete00edeb2010-03-04 20:53:59 +000047<div class="ui-widget-header ui-corner-top buttonGroup">
48 <span style="float: left; margin-left: 1em">${obr.res.title}</span>
49 <span>
Guillaume Nodet85508b02010-03-10 17:37:43 +000050 <a href="${pluginRoot}?list=a">A</a>
51 <a href="${pluginRoot}?list=b">B</a>
52 <a href="${pluginRoot}?list=c">C</a>
53 <a href="${pluginRoot}?list=d">D</a>
54 <a href="${pluginRoot}?list=e">E</a>
55 <a href="${pluginRoot}?list=f">F</a>
56 <a href="${pluginRoot}?list=g">G</a>
57 <a href="${pluginRoot}?list=h">H</a>
58 <a href="${pluginRoot}?list=i">I</a>
59 <a href="${pluginRoot}?list=j">J</a>
60 <a href="${pluginRoot}?list=k">K</a>
61 <a href="${pluginRoot}?list=l">L</a>
62 <a href="${pluginRoot}?list=m">M</a>
63 <a href="${pluginRoot}?list=n">N</a>
64 <a href="${pluginRoot}?list=o">O</a>
65 <a href="${pluginRoot}?list=p">P</a>
66 <a href="${pluginRoot}?list=q">Q</a>
67 <a href="${pluginRoot}?list=r">R</a>
68 <a href="${pluginRoot}?list=s">S</a>
69 <a href="${pluginRoot}?list=t">T</a>
70 <a href="${pluginRoot}?list=u">U</a>
71 <a href="${pluginRoot}?list=v">V</a>
72 <a href="${pluginRoot}?list=w">W</a>
73 <a href="${pluginRoot}?list=x">X</a>
74 <a href="${pluginRoot}?list=y">Y</a>
75 <a href="${pluginRoot}?list=z">Z</a>
76 <a href="${pluginRoot}?list=-">?</a>
Guillaume Nodete00edeb2010-03-04 20:53:59 +000077 </span>
78 <input type="text" id="searchField"/>
79 <button id="searchBtn">${obr.action.search}</button>
80</div>
Felix Meschbergerf15dc7a2010-02-21 16:45:55 +000081
Guillaume Nodete00edeb2010-03-04 20:53:59 +000082<table id="resTable" class="nicetable">
83 <thead>
84 <tr>
85 <th class="col_ResName">${obr.res.name}</th>
86 <th class="col_VersionInst">${obr.res.installedVer}</th>
87 </tr>
88 </thead>
89 <tbody>
90 <tr><td colspan="2">dummy</td></tr>
91 </tbody>
92</table>
93
94<table id="detailsTable" class="nicetable ui-helper-hidden">
95 <tbody id="detailsTableBody">
96 </tbody>
97</table>
Felix Meschbergerf15dc7a2010-02-21 16:45:55 +000098
Felix Meschberger98f1be02010-03-03 12:48:20 +000099<br/>
100
101</div> <!-- ifStatusOK -->