aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/editlink.html
diff options
context:
space:
mode:
authorSeb Sauvage <sebsauvage@sebsauvage.net>2012-01-25 10:24:44 +0100
committerEmilien Klein <emilien@klein.st>2012-01-25 10:24:44 +0100
commit51788ab8bacfe5fe951531ef545913ff6983f1b8 (patch)
tree225b21a815893ed28588e6e3199f5a0020eccbe2 /tpl/editlink.html
parentc2f6c2680330ad40f80a4cfe68388ece8dd313ec (diff)
downloadShaarli-51788ab8bacfe5fe951531ef545913ff6983f1b8.tar.gz
Shaarli-51788ab8bacfe5fe951531ef545913ff6983f1b8.tar.zst
Shaarli-51788ab8bacfe5fe951531ef545913ff6983f1b8.zip
Version 0.0.34 beta:
- Corrected: In link edition, you can now click the word “Private” to check the box. - Corrected: Clicking a tag would not work properly if the tag contained special characters (like +). - Corrected: Added proper jQuery licence (shame on me). - Changed: Upgraded bundled versions of jQuery (1.7.1) and jQuery UI (1.8.17). - Changed: Upgraded bundled version of RainTPL (2.7). - Changed: Changed HTTPS detection code. - Added: There is now a QR-Code of each permalink to easily open a link on your smartphone. - Added: Protocols file: and apt: are now also converted to clickable links (patch by Francis Chavanon) - Added: Thumbnail support for http://xkcd.com/ (patch by Emilien Klein). [r31] - Added: Thumbnail support for http://pix.toile-libre.org/ - Added: Well I had some mercy for users with antique browsers (IE) which do not have support for gradients: I added a few background-color. - Added: First version of the “Shaarli Daily”, a page showing all links of a specific day. By default, you see the links of the previous day. There is still work to do on this page (error checking, better navigation (calendar?), RSS feed, CSS for mobile and printing…)
Diffstat (limited to 'tpl/editlink.html')
-rw-r--r--tpl/editlink.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/tpl/editlink.html b/tpl/editlink.html
index 2225fbab..4ad43b35 100644
--- a/tpl/editlink.html
+++ b/tpl/editlink.html
@@ -1,3 +1,4 @@
1<!DOCTYPE html>
1<html> 2<html>
2<head>{include="includes"}</head> 3<head>{include="includes"}</head>
3<body 4<body
@@ -13,7 +14,7 @@
13 <i>Title</i><br><input type="text" name="lf_title" value="{$link.title|htmlspecialchars}" style="width:100%"><br> 14 <i>Title</i><br><input type="text" name="lf_title" value="{$link.title|htmlspecialchars}" style="width:100%"><br>
14 <i>Description</i><br><textarea name="lf_description" rows="4" cols="25" style="width:100%">{$link.description|htmlspecialchars}</textarea><br> 15 <i>Description</i><br><textarea name="lf_description" rows="4" cols="25" style="width:100%">{$link.description|htmlspecialchars}</textarea><br>
15 <i>Tags</i><br><input type="text" id="lf_tags" name="lf_tags" value="{$link.tags|htmlspecialchars}" style="width:100%"><br> 16 <i>Tags</i><br><input type="text" id="lf_tags" name="lf_tags" value="{$link.tags|htmlspecialchars}" style="width:100%"><br>
16 <input type="checkbox" {if condition="$link.private!=0"}checked="yes"{/if} style="margin:7 0 10 0;" name="lf_private">&nbsp;<i>Private</i><br> 17 <input type="checkbox" {if condition="$link.private!=0"}checked="yes"{/if} style="margin:7 0 10 0;" name="lf_private" id="lf_private">&nbsp;<label for="lf_private"><i>Private</i></label><br>
17 <input type="submit" value="Save" name="save_edit" class="bigbutton" style="margin-left:40px;"> 18 <input type="submit" value="Save" name="save_edit" class="bigbutton" style="margin-left:40px;">
18 <input type="submit" value="Cancel" name="cancel_edit" class="bigbutton" style="margin-left:40px;"> 19 <input type="submit" value="Cancel" name="cancel_edit" class="bigbutton" style="margin-left:40px;">
19 {if condition="!$link_is_new"}<input type="submit" value="Delete" name="delete_link" class="bigbutton" style="margin-left:180px;" onClick="return confirmDeleteLink();">{/if} 20 {if condition="!$link_is_new"}<input type="submit" value="Delete" name="delete_link" class="bigbutton" style="margin-left:180px;" onClick="return confirmDeleteLink();">{/if}