Mercurial > addons > firefox-addons > feed-preview
comparison web_resources/feed-preview.xhtml @ 10:ff5e5e3eba32
Implement feed subscription for web-based feed readers
Add options page for configuring web-based feed readers which allow for
subscribing to feeds via GET requests.
Track tabs containing feed previews and inject a content script which
retrieves the configured feed readers and keeps them in sync.
author | Guido Berhoerster <guido+feed-preview@berhoerster.name> |
---|---|
date | Fri, 07 Dec 2018 23:00:41 +0100 |
parents | fcd65cf3f634 |
children | f0c4a458869c |
comparison
equal
deleted
inserted
replaced
9:fcd65cf3f634 | 10:ff5e5e3eba32 |
---|---|
9 This Source Code Form is subject to the terms of the Mozilla Public | 9 This Source Code Form is subject to the terms of the Mozilla Public |
10 License, v. 2.0. If a copy of the MPL was not distributed with this | 10 License, v. 2.0. If a copy of the MPL was not distributed with this |
11 file, You can obtain one at http://mozilla.org/MPL/2.0/. | 11 file, You can obtain one at http://mozilla.org/MPL/2.0/. |
12 --> | 12 --> |
13 <meta name="viewport" content="width=device-width, initial-scale=1"/> | 13 <meta name="viewport" content="width=device-width, initial-scale=1"/> |
14 <link rel="stylesheet" href=""/> | 14 <link id="default-stylesheet" rel="stylesheet" href=""/> |
15 <title></title> | 15 <title></title> |
16 </head> | 16 </head> |
17 <body> | 17 <body> |
18 <template id="feed-logo-template"> | 18 <template id="feed-logo-template"> |
19 <img id="feed-logo" src="" alt=""/> | 19 <img id="feed-logo" src="" alt=""/> |
46 </template> | 46 </template> |
47 <template id="entry-file-template"> | 47 <template id="entry-file-template"> |
48 <li class="entry-file"><a class="entry-file-link" href="" title=""></a> | 48 <li class="entry-file"><a class="entry-file-link" href="" title=""></a> |
49 <span class="entry-file-info"></span></li> | 49 <span class="entry-file-info"></span></li> |
50 </template> | 50 </template> |
51 <form id="feed-subscription"> | |
52 <fieldset name="main" disabled="disabled"> | |
53 <label for="feed-reader-selection"></label><select | |
54 name="feed-reader-selection" id="feed-reader-selection" | |
55 required="required"></select><button type="submit" | |
56 name="subscribe" id="subscribe"></button> | |
57 </fieldset> | |
58 </form> | |
51 <header id="feed-header"> | 59 <header id="feed-header"> |
52 <h1 id="feed-title"></h1> | 60 <h1 id="feed-title"></h1> |
53 <p id="feed-subtitle"></p> | 61 <p id="feed-subtitle"></p> |
54 </header> | 62 </header> |
55 <p id="no-entries-hint"></p> | 63 <p id="no-entries-hint"></p> |