diff options
author | Seb Sauvage <seb@sebsauvage.net> | 2011-12-16 21:27:16 +0100 |
---|---|---|
committer | Emilien Klein <emilien+ubuntu@klein.st> | 2011-12-16 21:27:16 +0100 |
commit | 24e267ca714f591921eb659457332c3f7fea1930 (patch) | |
tree | 98fc646456708df7d3b133ed7f33835c1f1b059f /tpl/import.html | |
parent | 5112a433897d4d6507982b64bb07333b774ddb3a (diff) | |
download | Shaarli-24e267ca714f591921eb659457332c3f7fea1930.tar.gz Shaarli-24e267ca714f591921eb659457332c3f7fea1930.tar.zst Shaarli-24e267ca714f591921eb659457332c3f7fea1930.zip |
Version 0.0.32 beta:
- Changed: HTML generation moved to RainTPL templates (in the tpl/ directory).
- Added: Better check on URL parameters (patch by gege2061).
- Changed: Better detection of HTTPS (patch by gege2061).
- Changed: In RSS/ATOM feeds, the GUID is now the permalink instead of the final URL (patch by gege2061).
- Changed: Jerrywham CSS patch included.
- Changed: Multiple spaces are now respected in description. Thus you can use Shaarli as a personal pastebin (for posting source code, for example). I also ad$
- Corrected: Tab order changed in login screen.
- Corrected: Permalinks now work even if additional parameters have been added (eg. /?E8Yj2Q&utm_source=blablabla…)
- Corrected: user.css is included only if the file is present (This prevent a useless CSS include which makes a harmless but useless 404 error.).
- Removed: Page time generation was removed.
Diffstat (limited to 'tpl/import.html')
-rw-r--r-- | tpl/import.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tpl/import.html b/tpl/import.html new file mode 100644 index 00000000..95df723e --- /dev/null +++ b/tpl/import.html | |||
@@ -0,0 +1,20 @@ | |||
1 | <html> | ||
2 | <head>{include="includes"}</head> | ||
3 | <body onload="document.uploadform.filetoupload.focus();"> | ||
4 | <div id="pageheader"> | ||
5 | {include="page.header"} | ||
6 | <div id="uploaddiv"> | ||
7 | Import Netscape html bookmarks (as exported from Firefox/Chrome/Opera/delicious/diigo...) (Max: {$maxfilesize|htmlspecialchars} bytes). | ||
8 | <form method="POST" action="?do=upload" enctype="multipart/form-data" name="uploadform" id="uploadform"> | ||
9 | <input type="hidden" name="token" value="{$token}"> | ||
10 | <input type="file" name="filetoupload" size="80"> | ||
11 | <input type="hidden" name="MAX_FILE_SIZE" value="{$maxfilesize|htmlspecialchars}"> | ||
12 | <input type="submit" name="import_file" value="Import" class="bigbutton"><br> | ||
13 | <input type="checkbox" name="private" id="private"><label for="private"> Import all links as private</label><br> | ||
14 | <input type="checkbox" name="overwrite" id="overwrite"><label for="overwrite"> Overwrite existing links</label> | ||
15 | </form> | ||
16 | </div> | ||
17 | </div> | ||
18 | {include="page.footer"} | ||
19 | </body> | ||
20 | </html> \ No newline at end of file | ||