From 96a660a21e47d43ebc473ce9d23e712c0e3e1261 Mon Sep 17 00:00:00 2001 From: neodarz Date: Wed, 24 May 2017 15:23:11 +0200 Subject: initil release --- 404.html | 16 + addlink.html | 24 + changepassword.html | 28 + changetag.html | 38 + configure.html | 247 ++++ css/font-awesome.css | 2086 ++++++++++++++++++++++++++++++ css/font-awesome.min.css | 4 + css/grids-responsive.css | 861 +++++++++++++ css/grids-responsive.min.css | 7 + css/pure-extras.css | 262 ++++ css/pure.css | 1475 +++++++++++++++++++++ css/pure.min.css | 11 + css/shaarli.css | 1221 ++++++++++++++++++ daily.html | 113 ++ dailyrss.html | 16 + editlink.html | 75 ++ export.bookmarks.html | 10 + export.html | 68 + feed.atom.html | 40 + feed.rss.html | 37 + fonts/FontAwesome.otf | Bin 0 -> 134808 bytes fonts/Roboto-Bold.woff | Bin 0 -> 89584 bytes fonts/Roboto-Bold.woff2 | Bin 0 -> 63320 bytes fonts/Roboto-Regular.woff | Bin 0 -> 89732 bytes fonts/Roboto-Regular.woff2 | Bin 0 -> 63412 bytes fonts/fontawesome-webfont.eot | Bin 0 -> 165742 bytes fonts/fontawesome-webfont.svg | 2671 +++++++++++++++++++++++++++++++++++++++ fonts/fontawesome-webfont.ttf | Bin 0 -> 165548 bytes fonts/fontawesome-webfont.woff | Bin 0 -> 98024 bytes fonts/fontawesome-webfont.woff2 | Bin 0 -> 77160 bytes img/favicon.png | Bin 0 -> 41600 bytes img/icon.png | Bin 0 -> 530 bytes img/sad_star.png | Bin 0 -> 7099 bytes import.html | 86 ++ includes.html | 20 + install.html | 147 +++ js/shaarli.js | 411 ++++++ linklist.html | 253 ++++ linklist.paging.html | 58 + loginform.html | 50 + opensearch.html | 45 + page.footer.html | 29 + page.header.html | 174 +++ picwall.html | 45 + pluginsadmin.html | 176 +++ tagcloud.html | 42 + tools.html | 149 +++ 47 files changed, 10995 insertions(+) create mode 100644 404.html create mode 100644 addlink.html create mode 100644 changepassword.html create mode 100644 changetag.html create mode 100644 configure.html create mode 100644 css/font-awesome.css create mode 100644 css/font-awesome.min.css create mode 100644 css/grids-responsive.css create mode 100644 css/grids-responsive.min.css create mode 100644 css/pure-extras.css create mode 100644 css/pure.css create mode 100644 css/pure.min.css create mode 100644 css/shaarli.css create mode 100644 daily.html create mode 100644 dailyrss.html create mode 100644 editlink.html create mode 100644 export.bookmarks.html create mode 100644 export.html create mode 100644 feed.atom.html create mode 100644 feed.rss.html create mode 100644 fonts/FontAwesome.otf create mode 100644 fonts/Roboto-Bold.woff create mode 100644 fonts/Roboto-Bold.woff2 create mode 100644 fonts/Roboto-Regular.woff create mode 100644 fonts/Roboto-Regular.woff2 create mode 100644 fonts/fontawesome-webfont.eot create mode 100644 fonts/fontawesome-webfont.svg create mode 100644 fonts/fontawesome-webfont.ttf create mode 100644 fonts/fontawesome-webfont.woff create mode 100644 fonts/fontawesome-webfont.woff2 create mode 100644 img/favicon.png create mode 100644 img/icon.png create mode 100644 img/sad_star.png create mode 100644 import.html create mode 100644 includes.html create mode 100644 install.html create mode 100644 js/shaarli.js create mode 100644 linklist.html create mode 100644 linklist.paging.html create mode 100644 loginform.html create mode 100644 opensearch.html create mode 100644 page.footer.html create mode 100644 page.header.html create mode 100644 picwall.html create mode 100644 pluginsadmin.html create mode 100644 tagcloud.html create mode 100644 tools.html diff --git a/404.html b/404.html new file mode 100644 index 0000000..2de6b6d --- /dev/null +++ b/404.html @@ -0,0 +1,16 @@ + + + + {include="includes"} + + + + +
+
+ +
+
+{loop="$plugins_footer.endofpage"} + {$value} +{/loop} + +{loop="$plugins_footer.js_files"} + +{/loop} + + + + diff --git a/page.header.html b/page.header.html new file mode 100644 index 0000000..9388ef7 --- /dev/null +++ b/page.header.html @@ -0,0 +1,174 @@ +
+ +
+ +
+
+ +
+ + {if="!isLoggedIn()"} +
+
+ + +
+ + +
+ + + +
+
+ {/if} +{if="!empty($newVersion) || !empty($versionError)"} +
+
+ {if="$newVersion"} +
+ Shaarli {$newVersion} + {'is available'|t}. +
+ {/if} + {if="$versionError"} +
+ {'Error'|t}: {$versionError} +
+ {/if} +
+ +
+
+{/if} + +{if="!empty($plugin_errors) && isLoggedIn()"} +
+
+
+ {loop="plugin_errors"} +

{$value}

+ {/loop} +
+
+ +
+
+{/if} + +
diff --git a/picwall.html b/picwall.html new file mode 100644 index 0000000..248e56d --- /dev/null +++ b/picwall.html @@ -0,0 +1,45 @@ + + + + {include="includes"} + + +{include="page.header"} + +
+
+
+ {$countPics=count($linksToDisplay)} +

{'Picture Wall'|t} - {$countPics} {'pics'|t}

+ +
+ {loop="$plugin_start_zone"} + {$value} + {/loop} +
+ +
+ {loop="$linksToDisplay"} +
+ {$value.thumbnail}{$value.title} + {loop="$value.picwall_plugin"} + {$value} + {/loop} +
+ {/loop} +
+
+ +
+ {loop="$plugin_end_zone"} + {$value} + {/loop} +
+
+
+ +{include="page.footer"} + + + + diff --git a/pluginsadmin.html b/pluginsadmin.html new file mode 100644 index 0000000..5cc1802 --- /dev/null +++ b/pluginsadmin.html @@ -0,0 +1,176 @@ + + + + {include="includes"} + + +{include="page.header"} + + + +
+
+
+
+

{'Plugin administration'|t}

+ +
+

{'Enabled Plugins'|t}

+ +
+ {if="count($enabledPlugins)==0"} +

{'No plugin enabled.'|t}

+ {else} + + + + + + + + + + + {loop="$enabledPlugins"} + + + + + + + + + + {/loop} + + + + + + + + + +
{'Disable'|t}{'Name'|t}
{'Description'|t}
{'Order'|t}
+ +
+ {if="count($enabledPlugins)>1"} + + + {/if} + +
{'Disable'|t}{'Name'|t}
{'Description'|t}
{'Order'|t}
+ {/if} +
+
+ +
+

{'Disabled Plugins'|t}

+ +
+ {if="count($disabledPlugins)==0"} +

{'No plugin disabled.'|t}

+ {else} + + + + + + + + + + {loop="$disabledPlugins"} + + + + + + + + + {/loop} + + + + + + + + +
{'Enable'|t}{'Name'|t}
{'Description'|t}
+ +
+ +
{'Enable'|t}{'Name'|t}
{'Description'|t}
+ {/if} +
+
+ +
+ More plugins available + in the documentation. +
+
+ +
+
+
+ +
+ +
+
+
+
+

{'Plugin configuration'|t}

+
+
+ {if="count($enabledPlugins)==0"} +

{'No plugin enabled.'|t}

+ {else} + {loop="$enabledPlugins"} + {if="count($value.parameters) > 0"} +
+

{function="str_replace('_', ' ', $key)"}

+ {loop="$value.parameters"} +
+

+ +

+
+ +
+
+ {/loop} +
+ {/if} + {/loop} + {/if} +
+ +
+
+
+
+
+
+ +{include="page.footer"} + + + + diff --git a/tagcloud.html b/tagcloud.html new file mode 100644 index 0000000..53c3174 --- /dev/null +++ b/tagcloud.html @@ -0,0 +1,42 @@ + + + + {include="includes"} + + +{include="page.header"} + +
+
+
+ {$countTags=count($tags)} +

{'Tag cloud'|t} - {$countTags} {'tags'|t}

+ +
+ {loop="$plugin_start_zone"} + {$value} + {/loop} +
+ +
+ {loop="tags"} + {$key}{$value.count} + {loop="$value.tag_plugin"} + {$value} + {/loop} + {/loop} +
+ +
+ {loop="$plugin_end_zone"} + {$value} + {/loop} +
+
+
+ +{include="page.footer"} + + + diff --git a/tools.html b/tools.html new file mode 100644 index 0000000..baa033a --- /dev/null +++ b/tools.html @@ -0,0 +1,149 @@ + + + + {include="includes"} + + +{include="page.header"} + +
+
+
+

{'Settings'|t}

+ + + {if="!$openshaarli"} + + {/if} + + + + + {loop="$tools_plugin"} +
+ {$value} +
+ {/loop} +
+ + +
+
+ +
+
+
+

Bookmarklets

+

+ {'Drag one of these button to your bookmarks toolbar or right-click it and "Bookmark This Link"'|t}, + {'then click on the bookmarklet in any page you want to share.'|t} +

+ + +
+
+ +{if="$sslenabled"} +
+
+
+

Firefox Social API

+

{'You need to browse your Shaarli over HTTPS to use this functionality.'|t}

+ + +
+
+{/if} + + + +{include="page.footer"} + + + + -- cgit v1.2.1