-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoptions.html
123 lines (112 loc) · 3.79 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
<head>
<link rel="stylesheet" type="text/css" href="options.css"/>
<script type="text/javascript" src="js/mootools-1.2.4.js"></script>
<script type="text/javascript" src="js/options.js"></script>
<title>felicious - Options</title>
</head>
<body>
<h1>felicious</h1>
<h2>Options</h2>
<form>
<div class="fieldset" id="user">
<h3>Login with your...</h3>
<h4>
<input type="radio" name="account_type" id="delicious"/><label for="delicious">Delicious Account</label>
</h4>
<div id="delicious_form">
<label>Username</label>
<input type="text" name="username" id="username">
<label>Password</label>
<input type="password" name="password" id="password">
</div>
<span class="splitter">
<span>OR</span>
</span>
<h4>
<input type="radio" name="account_type" id="yahoo" /><label for="yahoo">Yahoo! ID</label>
</h4>
<div id="yahoo_form">
<div class="logged_out">
<a href="#" id="yahoo_login">Click here to login</a>
</div>
<div class="logged_in">
Logged in <img src="images/checkmark.png" /><br />
<a href="#" id="yahoo_logout">Click here to logout</a>
</div>
</div>
</div>
<div class="fieldset" id="synch">
<h3>Synching</h3>
<div class="row">
<input type="checkbox" name="autosynch" id="autosynch" /> <label for="autosynch">Enable Automatic Synching</label>
</div>
<div class="row">
<a href="#" id="synchnow">Synch Bookmarks Now</a>
<p id="syncherror">
An error occurred while synching
</p>
</div>
<hr />
<h3>Keyboard Shortcuts</h3>
<div class="row">
Bookmark Page
<input id="shortcutBookmark" type="button" class="shortcut" value="set" />
</div>
<div class="row">
Browse Bookmarks
<input id="shortcutPopup" type="button" class="shortcut" value="set" />
</div>
</div>
</form>
<div class="notes">
<h3>License</h3>
<p>
felicious is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
<p>
<p>
felicious 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
<a href="http://www.gnu.org/licenses/">GNU General Public License</a> for more details.
</p>
<h3>Credits</h3>
<p>
felicious is powered by the <a href="http://www.mootools.net">mootools</a> javascript framework.<br />
Bookmark, edit and checkmark icons by <a href="http://www.gentleface.com">gentleface</a>.
</p>
<h3>Changelog</h3>
<h4>0.2.3</h4>
<p>
Fixed a bug in the Yahoo! ID login procedure and added the ability to open bookmarks in the background.
</p>
<h4>0.2.2</h4>
<p>
Added keyboard shortcuts and fixed a bug where the add/edit bookmark popup wouldn't close automatically.
</p>
<h4>0.2.1</h4>
<p>
Fixed a bug related to OAuth access token refreshing.
</p>
<h4>0.2.0</h4>
<p>
Added experimental support for Yahoo! ID accounts.
</p>
<h4>0.1.3</h4>
<p>
Improved startup time of the popup menu and added a tag cloud view.
</p>
<h4>0.1.2</h4>
<p>
Added an edit button for each bookmark and fixed tab navigation when a search term is entered.
</p>
<p>
Mercurial repository at <a href="http://bitbucket.org/dennis.gid/felicious">http://bitbucket.org/dennis.gid/felicious</a>
</p>
</div>
</body>
</html>