-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubscribe.html
98 lines (94 loc) · 3.33 KB
/
subscribe.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<html>
<!--
* RSS Live Links - an RSS "live bookmark" extension for Google Chrome
*
* Copyright 2010 Martin Bartlett
*
* This file is part of RSS Live Links.
*
* RSS Live Links is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* RSS Live Links is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with RSS Live Links. If not, see <http://www.gnu.org/licenses/>.
*
* @version 1.0.0
* @license GNU Lesser General Public License, http://www.gnu.org/copyleft/lesser.html
* @author Martin Bartlett
-->
<head>
<title id="pageTitle"></title>
<style>
body {
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
font-size: 75%;
color: #222;
line-height: 1.5;
}
#feedURL {
font-size: 150%;
font-weight: bold;
color: black;
}
.status {
background-color: #FFF18A;
}
</style>
<link rel="stylesheet" type="text/css" href="overlays.css" />
<script type="text/javascript" src="subscribe.js"></script>
</head>
<body>
<h2><img src="img/rssll_128x128.png"><span id="subsAdderHeader"></span></h2>
<p>
<div id="feedURL"><span id="urlLabel"></span>: <span id="urlText"></span></div>
<div id="dialogs" class="overlay">
<div id="feedModDialogOverlay" class="page">
<h1 id="dialogHeader"></h1>
<div class="content-area" id="feedModContent">
<div class="row" id="feedSortItemsHelp">
<label id="feedNameLabel" class="contentLabel"></label>
<input type="text" id="feedNameText">
</div>
<div class="row" id="dialogGroupChoice">
<label id="feedGroupSelectLabel" class="contentLabel"></label>
<select id="feedGroupSelect"></select>
</div>
<div class="row" id="feedSortItemsHelp">
<label for="feedSortItems" id="feedSortItemsLabel" class="contentLabel"></label>
<select id="feedSortItems" value="0">
<option value="0">Default</option>
<option value="1">Feed order</option>
<option value="2">Alphabetical by title</option>
<option value="3">Date (ascending)</option>
<option value="4">Date (descending)</option>
</select>
</div>
<div id="useBookmarkFolderHelp" class="row">
<label id="useBookmarkFolderLabel" class="contentLabel"></label>
<input type="checkbox" id="useBookmarkFolder">
</div>
<div id="autoopenNewHelp" class="row">
<label id="autoopenNewLabel" class="contentLabel"></label>
<input type="checkbox" id="autoopenNew">
</div>
</div>
<div class="action-area">
<div class="action-area-right">
<div class="button-strip">
<button id="saveButton"></button>
<button id="closeButton"></button>
</div>
</div>
</div>
<div class="messages"><div class="message-text"></div></div>
</div>
</div>
</body>
</html>