OLD | NEW |
1 <!-- | 1 <!-- |
2 * Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this | 2 * Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this |
3 * source code is governed by a BSD-style license that can be found in the | 3 * source code is governed by a BSD-style license that can be found in the |
4 * LICENSE file. | 4 * LICENSE file. |
5 --> | 5 --> |
6 <html> | 6 <html> |
7 <head> | 7 <head> |
8 <title></title> | 8 <title></title> |
9 <link rel="stylesheet" href="style.css" type="text/css" /> | 9 <link rel="stylesheet" href="style.css" type="text/css" /> |
10 <link rel="stylesheet" href="subscribe.css" type="text/css" /> | 10 <link rel="stylesheet" href="subscribe.css" type="text/css" /> |
11 <script type="text/javascript" src="common.js"></script> | 11 <script type="text/javascript" src="common.js"></script> |
12 <script type="text/javascript" src="subscribe.js"></script> | 12 <script type="text/javascript" src="subscribe.js"></script> |
13 <script> | |
14 function init() { | |
15 document.title = | |
16 chrome.i18n.getMessage("rss_subscription_default_title"); | |
17 i18nReplace('rss_subscription_subscribe_using'); | |
18 i18nReplace('rss_subscription_subscribe_button'); | |
19 i18nReplace('rss_subscription_always_use'); | |
20 i18nReplace('rss_subscription_feed_preview'); | |
21 i18nReplaceImpl('feedUrl', 'rss_subscription_feed_link', ''); | |
22 | |
23 main(); | |
24 } | |
25 </script> | |
26 </head> | 13 </head> |
27 | 14 |
28 <body onload="init();"> | 15 <body> |
29 | |
30 <table border="0" cellpadding="0" cellspacing="0" width="100%"> | 16 <table border="0" cellpadding="0" cellspacing="0" width="100%"> |
31 <tr> | 17 <tr> |
32 <td width="80" rowspan="2"> | 18 <td width="80" rowspan="2"> |
33 <img src="feed-icon-64x64.png" alt="feed-icon" align="absmiddle" /> | 19 <img src="feed-icon-64x64.png" alt="feed-icon" align="absmiddle" /> |
34 </td> | 20 </td> |
35 <td height="25" valign="bottom"><b><span id="title"></span></b></td> | 21 <td height="25" valign="bottom"><b><span id="title"></span></b></td> |
36 </tr> | 22 </tr> |
37 <tr> | 23 <tr> |
38 <td> | 24 <td> |
39 <table border="0" cellpadding="0" cellspacing="0"> | 25 <table border="0" cellpadding="0" cellspacing="0"> |
40 <tr> | 26 <tr> |
41 <td align="right" valign="middle"> | 27 <td align="right" valign="middle"> |
42 <div> | 28 <div> |
43 <span style="white-space: nowrap" | 29 <span style="white-space: nowrap" |
44 id="rss_subscription_subscribe_using"></span> | 30 id="rss_subscription_subscribe_using"></span> |
45 </div> | 31 </div> |
46 </td> | 32 </td> |
47 <td valign="top"> | 33 <td valign="top"> |
48 <div style="margin-left:2px"> | 34 <div style="margin-left:2px"> |
49 <select id="readerDropdown" onChange="onSelectChanged()"></select> | 35 <select id="readerDropdown"></select> |
50 <button onclick="navigate();" | 36 <button id="rss_subscription_subscribe_button"></button><br /> |
51 id="rss_subscription_subscribe_button"></button><br /> | |
52 </div> | 37 </div> |
53 </td> | 38 </td> |
54 </tr> | 39 </tr> |
55 <tr> | 40 <tr> |
56 <td></td> | 41 <td></td> |
57 <td valign="top" colspan="2"> | 42 <td valign="top" colspan="2"> |
58 <span id="alwaysUseSpan" style="display:none"><input | 43 <span id="alwaysUseSpan" style="display:none"><input |
59 type="checkbox" id="alwaysUse" value="AlwaysUse" | 44 type="checkbox" id="alwaysUse" value="AlwaysUse" |
60 ><span id="rss_subscription_always_use"></span></span> | 45 ><span id="rss_subscription_always_use"></span></span> |
61 </td> | 46 </td> |
62 </tr> | 47 </tr> |
63 </table> | 48 </table> |
64 </td> | 49 </td> |
65 </tr> | 50 </tr> |
66 </table> | 51 </table> |
67 | 52 |
68 <div> </div> | 53 <div> </div> |
69 <div class="splitter"> | 54 <div class="splitter"> |
70 <span class="feedUrlSpan" id="feedUrlSpan"> | 55 <span class="feedUrlSpan" id="feedUrlSpan"> |
71 <span class="feedUrl" | 56 <span class="feedUrl" |
72 >[ <a id="feedUrl" class="feedUrl" target="_blank" | 57 >[ <a id="feedUrl" class="feedUrl" target="_blank" |
73 title="The feed page currently being previewed." | 58 title="The feed page currently being previewed." |
74 ></a> ]</span></span> | 59 ></a> ]</span></span> |
75 <span><b id="rss_subscription_feed_preview"></b></span> | 60 <span><b id="rss_subscription_feed_preview"></b></span> |
76 </div> | 61 </div> |
77 <div id="items"></div> | 62 <div id="items"></div> |
78 </body> | 63 </body> |
79 </html> | 64 </html> |
OLD | NEW |