diff options
author | ArthurHoaro <arthur@hoa.ro> | 2017-01-14 15:51:30 +0100 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2017-02-27 20:01:54 +0100 |
commit | 009ce9358168cc06c76fc2f4162829e552e633a3 (patch) | |
tree | 43b251326a24c6600acead1c406f7c18f291be8e /tpl/default/tools.html | |
parent | 9e5a37cc7f4eb1c83222a94eb83d4e99ce4460a4 (diff) | |
download | Shaarli-009ce9358168cc06c76fc2f4162829e552e633a3.tar.gz Shaarli-009ce9358168cc06c76fc2f4162829e552e633a3.tar.zst Shaarli-009ce9358168cc06c76fc2f4162829e552e633a3.zip |
Move default template to vintage folder
Diffstat (limited to 'tpl/default/tools.html')
-rw-r--r-- | tpl/default/tools.html | 98 |
1 files changed, 0 insertions, 98 deletions
diff --git a/tpl/default/tools.html b/tpl/default/tools.html deleted file mode 100644 index c36aa5b5..00000000 --- a/tpl/default/tools.html +++ /dev/null | |||
@@ -1,98 +0,0 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <html> | ||
3 | <head>{include="includes"}</head> | ||
4 | <body> | ||
5 | <div id="pageheader"> | ||
6 | {include="page.header"} | ||
7 | <div id="toolsdiv"> | ||
8 | <a href="?do=configure"><b>Configure your Shaarli</b><span>: Change Title, timezone...</span></a> | ||
9 | <br><br> | ||
10 | <a href="?do=pluginadmin"><b>Plugin administration</b><span>: Enable, disable and configure plugins.</span></a> | ||
11 | <br><br> | ||
12 | {if="!$openshaarli"}<a href="?do=changepasswd"><b>Change password</b><span>: Change your password.</span></a> | ||
13 | <br><br>{/if} | ||
14 | <a href="?do=changetag"><b>Rename/delete tags</b><span>: Rename or delete a tag in all links</span></a> | ||
15 | <br><br> | ||
16 | <a href="?do=import"><b>Import</b><span>: Import Netscape html bookmarks (as exported from Firefox, Chrome, Opera, delicious...)</span></a> | ||
17 | <br><br> | ||
18 | <a href="?do=export"><b>Export</b><span>: Export Netscape html bookmarks (which can be imported in Firefox, Chrome, Opera, delicious...)</span></a> | ||
19 | <br><br> | ||
20 | <a class="smallbutton" | ||
21 | onclick="return alertBookmarklet();" | ||
22 | href="javascript:( | ||
23 | function(){ | ||
24 | var%20url%20=%20location.href; | ||
25 | var%20title%20=%20document.title%20||%20url; | ||
26 | window.open( | ||
27 | '{$pageabsaddr}?post='%20+%20encodeURIComponent(url)+ | ||
28 | '&title='%20+%20encodeURIComponent(title)+ | ||
29 | '&description='%20+%20encodeURIComponent(document.getSelection())+ | ||
30 | '&source=bookmarklet','_blank','menubar=no,height=390,width=600,toolbar=no,scrollbars=no,status=no,dialog=1' | ||
31 | ); | ||
32 | } | ||
33 | )();"><b>✚Shaare link</b></a> | ||
34 | <a href="#" onclick="return alertBookmarklet();"> | ||
35 | <span> | ||
36 | ⇐ Drag this link to your bookmarks toolbar (or right-click it and choose Bookmark This Link....).<br> | ||
37 | Then click "✚Shaare link" button in any page you want to share. | ||
38 | </span> | ||
39 | </a><br><br> | ||
40 | <a class="smallbutton" | ||
41 | onclick="return alertBookmarklet();" | ||
42 | href="?private=1&post="><b>✚Add Note</b></a> | ||
43 | <a href="#" onclick="return alertBookmarklet();"> | ||
44 | <span> | ||
45 | ⇐ Drag this link to your bookmarks toolbar (or right-click it and choose Bookmark This Link....).<br> | ||
46 | Then click "✚Add Note" button anytime to start composing a private Note (text post) to your Shaarli. | ||
47 | </span> | ||
48 | </a><br><br> | ||
49 | |||
50 | {if="$sslenabled"} | ||
51 | <a class="smallbutton" onclick="activateFirefoxSocial(this)"><b>✚Add to Firefox social</b></a> | ||
52 | <a href="#"> | ||
53 | <span>⇐ Click on this button to add Shaarli to the "Share this page" button in Firefox.</span> | ||
54 | </a><br><br> | ||
55 | {/if} | ||
56 | |||
57 | {loop="$tools_plugin"} | ||
58 | {$value} | ||
59 | {/loop} | ||
60 | |||
61 | <div class="clear"></div> | ||
62 | |||
63 | <script> | ||
64 | {if="$sslenabled"} | ||
65 | function activateFirefoxSocial(node) { | ||
66 | var loc = location.href; | ||
67 | var baseURL = loc.substring(0, loc.lastIndexOf("/")); | ||
68 | |||
69 | // Keeping the data separated (ie. not in the DOM) so that it's maintainable and diffable. | ||
70 | var data = { | ||
71 | name: "{$shaarlititle}", | ||
72 | description: "The personal, minimalist, super-fast, no-database delicious clone.", | ||
73 | author: "Shaarli", | ||
74 | version: "1.0.0", | ||
75 | |||
76 | iconURL: baseURL + "/images/favicon.ico", | ||
77 | icon32URL: baseURL + "/images/favicon.ico", | ||
78 | icon64URL: baseURL + "/images/favicon.ico", | ||
79 | |||
80 | shareURL: baseURL + "{noparse}?post=%{url}&title=%{title}&description=%{text}&source=firefoxsocialapi{/noparse}", | ||
81 | homepageURL: baseURL | ||
82 | }; | ||
83 | node.setAttribute("data-service", JSON.stringify(data)); | ||
84 | |||
85 | var activate = new CustomEvent("ActivateSocialFeature"); | ||
86 | node.dispatchEvent(activate); | ||
87 | } | ||
88 | {/if} | ||
89 | function alertBookmarklet() { | ||
90 | alert('Drag this link to your bookmarks toolbar, or right-click it and choose Bookmark This Link...'); | ||
91 | return false; | ||
92 | } | ||
93 | </script> | ||
94 | </div> | ||
95 | </div> | ||
96 | {include="page.footer"} | ||
97 | </body> | ||
98 | </html> | ||