blob: 9797d5c35fa0b9848bf5b37f8f9d8ddfbded3c61 [file] [log] [blame]
Guillaume Nodet65c01e92010-03-04 20:53:59 +00001<script type="text/javascript" src="res/ui/jquery.uuid.js"></script>
2<script type="text/javascript" src="res/ui/obr.js"></script>
Felix Meschberger26444e22010-02-21 16:45:55 +00003<script type="text/javascript">
4var i18n = {
5 status_ok : '${obr.status.ok}',
6 status_no : '${obr.status.no}',
7 selectVersion : '${obr.version.select}'
8}
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>
51 <a href="obr?list=a">A</a>
52 <a href="obr?list=b">B</a>
53 <a href="obr?list=c">C</a>
54 <a href="obr?list=d">D</a>
55 <a href="obr?list=e">E</a>
56 <a href="obr?list=f">F</a>
57 <a href="obr?list=g">G</a>
58 <a href="obr?list=h">H</a>
59 <a href="obr?list=i">I</a>
60 <a href="obr?list=j">J</a>
61 <a href="obr?list=k">K</a>
62 <a href="obr?list=l">L</a>
63 <a href="obr?list=m">M</a>
64 <a href="obr?list=n">N</a>
65 <a href="obr?list=o">O</a>
66 <a href="obr?list=p">P</a>
67 <a href="obr?list=q">Q</a>
68 <a href="obr?list=r">R</a>
69 <a href="obr?list=s">S</a>
70 <a href="obr?list=t">T</a>
71 <a href="obr?list=u">U</a>
72 <a href="obr?list=v">V</a>
73 <a href="obr?list=w">W</a>
74 <a href="obr?list=x">X</a>
75 <a href="obr?list=y">Y</a>
76 <a href="obr?list=z">Z</a>
77 <a href="obr?list=-">?</a>
78 </span>
79 <input type="text" id="searchField"/>
80 <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 -->