diff options
author | Seb Sauvage <sebsauvage@sebsauvage.net> | 2011-12-16 21:27:16 +0100 |
---|---|---|
committer | Emilien Klein <emilien@klein.st> | 2011-12-16 21:27:16 +0100 |
commit | 3433e5e8a84e3952502b79296f945e6dde2a7d75 (patch) | |
tree | 98fc646456708df7d3b133ed7f33835c1f1b059f /tpl/export.html | |
parent | 5112a433897d4d6507982b64bb07333b774ddb3a (diff) | |
download | Shaarli-3433e5e8a84e3952502b79296f945e6dde2a7d75.tar.gz Shaarli-3433e5e8a84e3952502b79296f945e6dde2a7d75.tar.zst Shaarli-3433e5e8a84e3952502b79296f945e6dde2a7d75.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 added a max-height and overflow:auto so that content can be scrolled if too large.
- 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/export.html')
-rw-r--r-- | tpl/export.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tpl/export.html b/tpl/export.html new file mode 100644 index 00000000..ccfcfcf1 --- /dev/null +++ b/tpl/export.html | |||
@@ -0,0 +1,14 @@ | |||
1 | <html> | ||
2 | <head>{include="includes"}</head> | ||
3 | <body> | ||
4 | <div id="pageheader"> | ||
5 | {include="page.header"} | ||
6 | <div id="toolsdiv"> | ||
7 | <a href="?do=export&what=all"><b>Export all</b> <span>: Export all links</span></a><br><br> | ||
8 | <a href="?do=export&what=public"><b>Export public</b> <span>: Export public links only</a><br><br> | ||
9 | <a href="?do=export&what=private"><b>Export private</b> <span>: Export private links only</a><br><br style="clear:both;"> | ||
10 | </div> | ||
11 | </div> | ||
12 | {include="page.footer"} | ||
13 | </body> | ||
14 | </html> \ No newline at end of file | ||