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