-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
95 lines (92 loc) · 3.67 KB
/
options.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>RSS Discovery [options]</title>
<link href='styles/options.css' rel='stylesheet' type='text/css'>
<script src="scripts/options.js"></script>
</head>
<body>
<section>
<h3 class="section-header">Main</h3>
<div class="settings-row learn-more">
<table id="main-options">
<tbody>
<tr>
<td>
<span class="selectLabel">Smart RSS ID:</span>
</td>
<td>
<input type="text" id="smartID" title="Handy for custom builds of Smart RSS." />
</td>
</tr>
<tr>
<td>
<span class="selectLabel">Disable previews:</span>
</td>
<td>
<input type="checkbox" id="disablePreviews" title="The RSS source will be added immidiately after you click on it in the popup." />
</td>
</tr>
<tr>
<td>
<span class="selectLabel">Date format:</span>
</td>
<td>
<select id="dateType" title="Normal = DD.MM.YYYY, ISO = YYYY-MM-DD, US = MM/DD/YYYY">
<label class="web-content-select-label">
<option value="normal">Normal</option>
<option value="iso">ISO</option>
<option value="us">US</option>
</select>
</td>
</tr>
<tr>
<td>
<span class="selectLabel">Time format:</span>
</td>
<td>
<select id="hoursFormat">
<option value="24h">24h</option>
<option value="12h">12h (AM/PM)</option>
</select>
</td>
</tr>
</tbody>
</table>
</div>
<h3 class="section-header">Readers</h3>
<div class="settings-row learn-more">
<table id="readers">
<thead>
<tr>
<th class="sort" data-sort="name">Name</th>
<th class="sort" data-sort="url">URL</th>
<th colspan="2"><!--input type="text" class="search" placeholder="Search" /--></th>
</tr>
</thead>
<tbody id="reader-list">
<tr>
<td class="name">
<input type="hidden" id="id-field" class="readers" />
<input type="text" id="name-field" placeholder="Name" title="Name of the reader" class="readers" />
</td>
<td class="url">
<input type="text" id="url-field" placeholder="URL" title="URL of the reader's adding link" class="readers" />
</td>
<td class="add">
<button id="add-btn">Add</button>
<button id="edit-btn">Edit</button>
</td>
</tr>
</tbody>
</table>
</div>
</section>
<section>
<h3 class="section-header">Bug reports and feedback</h3>
<p>If you found some bug or have some nice suggestion or you want to follow up on development, head over to following link :</p>
<a href="http://blog.martinkadlec.eu/post/501-smart-rss-final-v10">Martin Kadlec (BS-Harou)</a> Blog.
</section>
</body>
</html>