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