-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
109 lines (100 loc) · 3.8 KB
/
options.html
File metadata and controls
109 lines (100 loc) · 3.8 KB
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
<!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 src="js/rijndael.js" type="text/javascript"></script>
<script src="js/utils.js" type="text/javascript"></script>
<script type="text/javascript" src="js/options.js"></script>
<title>Pinboard - Options</title>
</head>
<body>
<h1>Pinboard</h1>
<h2>Options</h2>
<form>
<div class="fieldset" id="user">
<h3>Your Pinboard Account</h3>
<div id="delicious_form">
<label>Username</label>
<input type="text" name="username" id="username">
<label>Password</label>
<input type="password" name="password" id="password">
<input type="button" name="saveuser" id="saveuser" value="Save">
<p id="savemessage">Your account has been saved</p>
</div>
</div>
<div class="fieldset" id="synch">
<h3>Bookmarks</h3>
<div class="row">
<input type="checkbox" name="autosynch" id="autosynch" /> <label for="autosynch">Enable Automatic Updating</label>
</div>
<div class="row">
<a href="#" id="synchnow">Update Bookmarks Now</a>
<p id="syncherror">An error occurred while syncing</p>
</div>
<hr />
<h3>Keyboard Shortcuts</h3>
<div class="row">
<input type="checkbox" name="keyboardshort" id="keyboardshort" /> <label for="keyboardshort">Enable Keyboard Shortcuts</label>
</div>
<br/>
<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 class="row">
Read Later
<input id="shortcutReadLater" type="button" class="shortcut" value="set" />
</div>
</div>
</form>
<div class="notes">
<h3>License</h3>
<p>
Pinboard 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>
Pinboard 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/" target="_blank">GNU General Public License</a> for more details.
</p>
<br/>
<h3>Credits</h3>
<p>
Pinboard is powered by the <a href="http://www.mootools.net" target="_blank">mootools</a> javascript framework.<br/>
Bookmark, edit and checkmark icons by <a href="http://www.gentleface.com" target="_blank">gentleface</a>.
</p>
<br/>
<h3>Changelog</h3>
<dl>
<dt>0.2.3.7</dt>
<dd>Bug fixes and improvements.</dd>
<dt>0.2.3.6</dt>
<dd>Minor bug fixes and improvements.</dd>
<dt>0.2.3.5</dt>
<dd>Pre-fill the bookmark description with selected text. Thanks to <a href="http://twitter.com/bobthecow" target="_blank">@bobthecow</a> for this update.</dd>
<dt>0.2.3.4</dt>
<dd>Added an option to enable or disable<br/>Keyboard Shortcuts.</dd>
<dt>0.2.3.3</dt>
<dd>Password encryption.</dd>
<dt>0.2.3.2</dt>
<dd>Added 'Read Later' Keyboard Shortcut.<br/>Bug fixes and general cleanup.</dd>
<dt>0.2.3.1</dt>
<dd>Initial release. Forked off felicious 0.2.3.</dd>
</dl>
<br/>
<p>
Google Code repository at <a href="http://code.google.com/p/pinboard-chrome/" target="_blank">http://code.google.com/p/pinboard-chrome/</a>.
</p>
<br/>
</div>
</body>
</html>