From 858c5c2b43ce16f6d4b388725ef2d7a95e4a1986 Mon Sep 17 00:00:00 2001 From: Sebastien SAUVAGE Date: Fri, 1 Mar 2013 22:21:10 +0100 Subject: Added option to disable jQuery and heavy javascript Shaarli uses light Javascript in its normal operation, and some jQuery for some features (autocomplete in tags, QR-Code popup...). jQuery can be slow on small computers. An option has been added in configuration screen to disable javascript features which are hard on CPU. (Note that the Picture Wall is awfully heavy *without* jQuery.) (Side note: A *LOT* of users want Shaarli to work without javasript at all, if possible. That's why I try to use as few javascript as possible: It keeps Shaarli pages fast.) --- tpl/configure.html | 17 +++++++++++++---- tpl/includes.html | 2 +- tpl/linklist.html | 5 ++++- tpl/page.footer.html | 2 +- tpl/picwall.html | 6 +++++- 5 files changed, 24 insertions(+), 8 deletions(-) (limited to 'tpl') diff --git a/tpl/configure.html b/tpl/configure.html index 00c41f28..1beba59c 100644 --- a/tpl/configure.html +++ b/tpl/configure.html @@ -8,10 +8,19 @@
- - - - + + + + + + + + + + +
Page title:
Timezone:{$timezone_form}
Redirector
(e.g. http://anonym.to/? will mask the HTTP_REFERER)
Security:
Page title:
Timezone:{$timezone_form}
Redirector
(e.g. http://anonym.to/? will mask the HTTP_REFERER)
Security:
Features: + +
diff --git a/tpl/includes.html b/tpl/includes.html index 5319f452..e0ad00d5 100644 --- a/tpl/includes.html +++ b/tpl/includes.html @@ -7,4 +7,4 @@ {if condition="is_file('inc/user.css')"}{/if} - +{if="empty($GLOBALS['disablejquery'])"}{/if} diff --git a/tpl/linklist.html b/tpl/linklist.html index 45bd478f..3a703512 100644 --- a/tpl/linklist.html +++ b/tpl/linklist.html @@ -48,7 +48,8 @@ {else} permalink - {/if} -
- +
- {$value.url|htmlspecialchars}
{if="$value.tags"}
@@ -65,6 +66,7 @@
{include="page.footer"} +{if="empty($GLOBALS['disablejquery'])"} +{/if} \ No newline at end of file diff --git a/tpl/page.footer.html b/tpl/page.footer.html index 7fe15017..13b566ae 100644 --- a/tpl/page.footer.html +++ b/tpl/page.footer.html @@ -8,7 +8,7 @@ {/if} -{if="$GLOBALS['config']['OPEN_SHAARLI'] || isLoggedIn()"} +{if="($GLOBALS['config']['OPEN_SHAARLI'] || isLoggedIn()) && empty($GLOBALS['disablejquery'])"} +{if="empty($GLOBALS['disablejquery'])"} + +{/if} @@ -16,9 +18,11 @@ {include="page.footer"} +{if="empty($GLOBALS['disablejquery'])"} +{/if} \ No newline at end of file -- cgit v1.2.3