]>
Commit | Line | Data |
---|---|---|
6f1a15d9 JF |
1 | <?xml version="1.0" encoding="UTF-16"?> |
2 | <html><head> | |
f79a4512 | 3 | <title localize="DETAILS"></title> |
affeffc7 | 4 | <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0"/> |
6f1a15d9 JF |
5 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> |
6 | <link rel="stylesheet" type="text/css" href="menes/style.css"/> | |
7 | <script type="text/javascript" src="menes/menes.js"></script> | |
8 | <script type="text/javascript" src="package.js"></script> | |
f79a4512 | 9 | <script type="text/javascript" src="localize.js"></script> |
6f1a15d9 | 10 | <base target="_blank"/> |
7d2ac47f | 11 | |
f79a4512 | 12 | <!--script type="text/javascript"> |
7d2ac47f JF |
13 | var count = -1; |
14 | var loaded = function() { | |
15 | if (count++ != 0) | |
16 | return; | |
17 | $("#depiction-load").remove(); | |
59c6ae22 | 18 | $("#depiction-src").css("display", "block"); |
7d2ac47f JF |
19 | } |
20 | ||
21 | var remove = function() { | |
c37ef8c8 | 22 | $(".description").css("display", "block"); |
7d2ac47f JF |
23 | $(".depiction").remove(); |
24 | } | |
f79a4512 | 25 | </script--> |
7d2ac47f JF |
26 | |
27 | <style> | |
59c6ae22 JF |
28 | .flip-180 { |
29 | -webkit-backface-visibility: hidden; | |
30 | -webkit-transform: rotateY(180deg); | |
f79a4512 JF |
31 | } |
32 | ||
33 | #icon.flip-180 { | |
59c6ae22 JF |
34 | -webkit-transition-duration: 2s; |
35 | -webkit-transition-property: transform; | |
36 | } | |
37 | ||
38 | .flip-360 { | |
39 | -webkit-backface-visibility: hidden; | |
40 | -webkit-transform: rotateY(360deg); | |
41 | -webkit-transition-duration: 2s; | |
42 | -webkit-transition-property: transform; | |
43 | } | |
44 | ||
45 | .fade-out { | |
46 | opacity: 0; | |
47 | -webkit-transition-property: opacity; | |
48 | -webkit-transition-duration: 2s; | |
49 | } | |
50 | ||
51 | .fade-in { | |
52 | opacity: 1; | |
53 | -webkit-transition-property: opacity; | |
54 | -webkit-transition-duration: 2s; | |
55 | } | |
56 | ||
7d2ac47f JF |
57 | #remove { |
58 | margin-top: 7px; | |
59 | text-align: center; | |
60 | } | |
61 | ||
62 | #indicator { | |
63 | left: 20px; | |
64 | position: relative; | |
65 | top: -5px; | |
66 | } | |
67 | ||
7d2ac47f JF |
68 | #remove > a { |
69 | color: #335588; | |
70 | text-decoration: none; | |
71 | } | |
72 | ||
73 | #upper-bar { | |
74 | margin-bottom: 0; | |
75 | margin-top: 10px; | |
76 | } | |
77 | ||
78 | #lower-bar { | |
79 | margin-bottom: 10px; | |
80 | margin-top: 0; | |
81 | } | |
affeffc7 JF |
82 | |
83 | #warnings { | |
84 | background-color: #ffdddd; | |
85 | } | |
86 | ||
87 | #warnings > div > label { | |
88 | color: red; | |
89 | } | |
770f2a8e | 90 | |
59c6ae22 | 91 | #boundary { |
770f2a8e | 92 | float: left; |
59c6ae22 | 93 | height: 64; |
c37ef8c8 | 94 | width: 64px; |
770f2a8e JF |
95 | } |
96 | ||
59c6ae22 | 97 | #thumb, |
770f2a8e | 98 | #icon { |
c37ef8c8 JF |
99 | background-position: center center; |
100 | background-repeat: no-repeat; | |
c37ef8c8 | 101 | height: 64px; |
59c6ae22 | 102 | position: absolute; |
c37ef8c8 | 103 | width: 64px; |
770f2a8e JF |
104 | } |
105 | ||
59c6ae22 JF |
106 | #thumb { |
107 | -webkit-border-radius: 9px; | |
108 | } | |
109 | ||
c37ef8c8 | 110 | /* XXX: this style is out of date */ |
770f2a8e JF |
111 | #reflection { |
112 | height: 59px; | |
113 | max-width: 60px; | |
114 | opacity: 0.4; | |
115 | position: absolute; | |
116 | -webkit-transform: matrix(1, 0, 0, -1, 0, 0); | |
117 | width: auto; | |
118 | } | |
119 | ||
c37ef8c8 | 120 | #id, #author, #maintainer, #sponsor { |
770f2a8e JF |
121 | white-space: nowrap; |
122 | } | |
123 | ||
124 | #header { | |
125 | background: transparent; | |
126 | border: none; | |
5b35c5e4 | 127 | position: relative; |
770f2a8e JF |
128 | } |
129 | ||
130 | #header > div { | |
131 | padding: 0; | |
770f2a8e JF |
132 | } |
133 | ||
134 | #content { | |
c37ef8c8 | 135 | padding: 5px; |
9487f027 | 136 | position: absolute; |
c37ef8c8 JF |
137 | left: 77px; |
138 | width: 232px; | |
770f2a8e JF |
139 | } |
140 | ||
365d45da | 141 | #lower { |
c37ef8c8 | 142 | margin: 0px 5px; |
770f2a8e JF |
143 | } |
144 | ||
145 | #name { | |
59c6ae22 | 146 | margin-bottom: 13px; |
770f2a8e | 147 | font-weight: bold; |
c37ef8c8 JF |
148 | font-size: 17px; |
149 | overflow: hidden; | |
150 | text-overflow: ellipsis; | |
151 | white-space: nowrap; | |
770f2a8e JF |
152 | } |
153 | ||
154 | #latest { | |
155 | color: #335588; | |
365d45da JF |
156 | float: left; |
157 | } | |
158 | ||
c37ef8c8 | 159 | a[href].rating { |
da0410f1 | 160 | background: 107px 7px no-repeat url(menes/chevron.png); |
c37ef8c8 JF |
161 | } |
162 | ||
163 | .rating { | |
164 | /*border: 1px solid #999999;*/ | |
165 | -webkit-border-radius: 6px; | |
166 | padding: 7px 7px; | |
167 | margin: -7px 0px; | |
365d45da | 168 | float: right; |
da0410f1 | 169 | width: 126px; |
770f2a8e | 170 | } |
9487f027 | 171 | |
c37ef8c8 JF |
172 | .rating .back, |
173 | .rating .fore, | |
174 | .rating .star { | |
175 | background: url(star.png); | |
c37ef8c8 JF |
176 | } |
177 | ||
c37ef8c8 JF |
178 | .rating .text { |
179 | display: inline-block; | |
180 | color: #4d4d70; | |
181 | margin: 0 6px; | |
182 | vertical-align: top; | |
183 | } | |
184 | ||
da0410f1 JF |
185 | #rating-done { |
186 | padding-left: 12px; | |
187 | } | |
188 | ||
c37ef8c8 JF |
189 | #rating-none, |
190 | #rating-done { | |
191 | display: none; | |
9487f027 | 192 | } |
7d2ac47f | 193 | </style> |
fd7853a6 | 194 | </head><body class="pinstripe"> |
680eb135 | 195 | <dialog><panel> |
6f1a15d9 | 196 | |
770f2a8e | 197 | <fieldset id="header"> |
59c6ae22 JF |
198 | <div> |
199 | <div id="boundary"> | |
200 | <div class="flip-0" id="icon"></div> | |
201 | <div class="flip-180" id="thumb"></div> | |
770f2a8e JF |
202 | <!--img id="reflection"/--> |
203 | </div> | |
204 | ||
205 | <div id="content"> | |
206 | <div id="name"></div> | |
c37ef8c8 JF |
207 | <div id="latest"></div> |
208 | ||
209 | <a class="rating" id="rating-href"> | |
210 | <div id="rating-none"> | |
f79a4512 | 211 | <div class="star"></div><div class="text" localize="NOT_RATED"></div> |
c37ef8c8 JF |
212 | </div><div id="rating-done"> |
213 | <div class="fore" id="rating-value"></div> | |
214 | <div class="back"></div> | |
215 | </div> | |
216 | </a> | |
770f2a8e | 217 | </div> |
6f1a15d9 | 218 | </div> |
affeffc7 | 219 | </fieldset> |
6f1a15d9 | 220 | |
dc63e78f JF |
221 | <fieldset class="mode"> |
222 | <a> | |
223 | <img class="icon" id="mode-src"/><div> | |
f79a4512 | 224 | <label localize="PACKAGE_QUEUE"></label> |
dc63e78f JF |
225 | <label id="mode"></label> |
226 | </div></a> | |
227 | </fieldset> | |
228 | ||
affeffc7 | 229 | <fieldset id="actions"> |
770f2a8e | 230 | <a id="settings"> |
189a73d0 | 231 | <img class="icon" src="settings.png"/><div> |
f79a4512 | 232 | <label localize="CHANGE_PACKAGE_SETTINGS"></label> |
189a73d0 | 233 | </div></a> |
770f2a8e | 234 | |
d8ac46da | 235 | <a id="author-href" class="author" target="_popup"> |
189a73d0 | 236 | <img id="author-icon" class="icon" src="email.png"/><div> |
f79a4512 | 237 | <label localize="AUTHOR"></label> |
aa5d0de7 | 238 | <label id="author"></label> |
189a73d0 | 239 | </div></a> |
affeffc7 | 240 | |
a1440b10 | 241 | <!--div class="commercial"> |
189a73d0 | 242 | <img class="icon" src="commercial.png"/><div> |
770f2a8e | 243 | <label>This is a commercial package!</label> |
a1440b10 | 244 | </div></div--> |
770f2a8e | 245 | |
ec3f2f53 | 246 | <a class="console" href="http://cydia.saurik.com/purpose/console/"> |
189a73d0 | 247 | <img class="icon" src="console.png"/><div> |
f79a4512 | 248 | <label localize="CONSOLE_PACKAGE"></label> |
189a73d0 | 249 | </div></a> |
770f2a8e | 250 | |
affeffc7 | 251 | <a id="application"> |
189a73d0 | 252 | <img class="icon"/><div> |
affeffc7 | 253 | <label class="application"></label> |
189a73d0 | 254 | </div></a> |
affeffc7 JF |
255 | </fieldset> |
256 | ||
affeffc7 JF |
257 | <fieldset class="warnings" id="warnings"> |
258 | <div id="warning"> | |
189a73d0 | 259 | <img class="icon" src="warning.png"/><div> |
affeffc7 | 260 | <label class="warning"></label> |
189a73d0 | 261 | </div></div> |
25a2158d JF |
262 | </fieldset> |
263 | ||
3bd1c2a2 JF |
264 | <!--iframe |
265 | class="notice" | |
7d2ac47f JF |
266 | id="notice-src" |
267 | frameborder="0" | |
268 | width="320" | |
269 | height="0" | |
270 | target="_top" | |
3bd1c2a2 JF |
271 | ></iframe--> |
272 | ||
273 | <!--iframe | |
274 | class="activation" | |
275 | id="activation-src" | |
276 | frameborder="0" | |
277 | width="320" | |
278 | height="0" | |
279 | target="_top" | |
280 | ></iframe--> | |
7d2ac47f | 281 | |
a9a0661e | 282 | <!--div id="remove" class="depiction"> |
7d2ac47f JF |
283 | <a href="javascript:remove()">Remove Custom Depiction</a> |
284 | </div> | |
285 | ||
a9a0661e | 286 | <hr id="upper-bar" class="depiction"/--> |
7d2ac47f | 287 | |
3bd1c2a2 JF |
288 | <iframe |
289 | class="depiction" | |
25a2158d JF |
290 | id="depiction-src" |
291 | frameborder="0" | |
7d2ac47f JF |
292 | width="320" |
293 | height="0" | |
25a2158d | 294 | target="_top" |
d6dad1b4 | 295 | onload_="loaded()" |
3bd1c2a2 | 296 | ></iframe> |
6f1a15d9 | 297 | |
a9a0661e | 298 | <!--hr id="lower-bar" class="depiction"/--> |
7d2ac47f | 299 | |
c37ef8c8 | 300 | <block class="description"><p id="description"></p></block> |
6f1a15d9 | 301 | |
9487f027 | 302 | <fieldset class="description homepage"> |
7d2ac47f | 303 | <a class="homepage" id="homepage-href"> |
189a73d0 | 304 | <img class="icon" src="web.png"/><div> |
f79a4512 | 305 | <label localize="MORE_INFORMATION"></label> |
189a73d0 | 306 | </div></a> |
6f1a15d9 JF |
307 | </fieldset> |
308 | ||
f79a4512 | 309 | <label class="installed" localize="INSTALLED_DETAILS"></label> |
6f1a15d9 | 310 | <fieldset class="installed"> |
00e2109e JF |
311 | <div> |
312 | <img class="icon" src="version.png"/><div> | |
f79a4512 | 313 | <label localize="VERSION"></label> |
aa5d0de7 | 314 | <label id="installed"></label> |
189a73d0 | 315 | </div></div> |
6f1a15d9 | 316 | |
770f2a8e | 317 | <a id="files-href"> |
189a73d0 | 318 | <img class="icon" src="filesystem.png"/><div> |
f79a4512 | 319 | <label localize="FILESYSTEM_CONTENT"></label> |
189a73d0 | 320 | </div></a> |
6f1a15d9 JF |
321 | </fieldset> |
322 | ||
f79a4512 | 323 | <label localize="PACKAGE_DETAILS"></label> |
6f1a15d9 | 324 | <fieldset> |
00e2109e JF |
325 | <div> |
326 | <img class="icon" src="id.png"/><div> | |
f79a4512 | 327 | <label localize="ID"></label> |
aa5d0de7 | 328 | <label id="id"></label> |
189a73d0 | 329 | </div></div> |
6f1a15d9 JF |
330 | |
331 | <div class="section"> | |
189a73d0 | 332 | <img id="section-src" class="icon"/><div> |
f79a4512 | 333 | <label localize="SECTION"></label> |
aa5d0de7 | 334 | <label id="section"></label> |
189a73d0 | 335 | </div></div> |
6f1a15d9 JF |
336 | |
337 | <div class="size"> | |
189a73d0 | 338 | <img class="icon" src="expanded.png"/><div> |
f79a4512 | 339 | <label localize="EXPANDED_SIZE"></label> |
aa5d0de7 | 340 | <label id="size"></label> |
189a73d0 | 341 | </div></div> |
6f1a15d9 | 342 | |
d8ac46da | 343 | <a id="maintainer-href" class="maintainer" target="_popup"> |
189a73d0 | 344 | <img id="maintainer-icon" class="icon" src="email.png"/><div> |
f79a4512 | 345 | <label localize="MAINTAINER"></label> |
aa5d0de7 | 346 | <label id="maintainer"></label> |
189a73d0 | 347 | </div></a> |
6f1a15d9 | 348 | |
25a2158d | 349 | <a id="sponsor-href" class="sponsor"> |
189a73d0 | 350 | <img class="icon" src="web.png"/><div> |
f79a4512 | 351 | <label localize="SPONSOR"></label> |
aa5d0de7 | 352 | <label id="sponsor"></label> |
189a73d0 | 353 | </div></a> |
dc6e62a4 | 354 | |
770f2a8e | 355 | <!--a class="trusted" id="trusted"> |
189a73d0 | 356 | <img class="icon" src="trusted.png"><div> |
f79a4512 | 357 | <label localize="REPOSITORY_SIGNATURE"></label> |
189a73d0 | 358 | </div></a--> |
770f2a8e JF |
359 | |
360 | <div class="trusted"> | |
189a73d0 JF |
361 | <img class="icon" src="trusted.png"><div> |
362 | <label> </label> | |
f79a4512 | 363 | <label localize="SIGNED_PACKAGE"></label> |
189a73d0 | 364 | </div></div> |
6f1a15d9 JF |
365 | </fieldset> |
366 | ||
f79a4512 | 367 | <label class="source" localize="SOURCE_DETAILS"></label> |
6f1a15d9 | 368 | <fieldset class="source"> |
16f2786b | 369 | <div> |
189a73d0 | 370 | <img class="icon" id="source-src"/><div> |
16f2786b | 371 | <label id="source-name"></label> |
189a73d0 | 372 | </div></div> |
16f2786b | 373 | |
7d2ac47f | 374 | <div class="source-description" id="source-description"></div> |
6f1a15d9 JF |
375 | </fieldset> |
376 | ||
680eb135 JF |
377 | </panel></dialog> |
378 | </body></html> |