diff options
Diffstat (limited to 'template')
-rw-r--r-- | template/admin/html/main.php | 2 | ||||
-rw-r--r-- | template/admin/html/page/form.php | 3 | ||||
-rw-r--r-- | template/admin/html/pagination.php | 51 | ||||
-rw-r--r-- | template/admin/html/post/form.php | 3 | ||||
-rw-r--r-- | template/admin/html/user/form.php | 3 | ||||
-rw-r--r-- | template/admin/rsrc/main.js | 16 | ||||
-rw-r--r-- | template/standard/html/pagination.php | 35 | ||||
-rw-r--r-- | template/standard/lang/de.php | 4 | ||||
-rw-r--r-- | template/standard/lang/en.php | 2 |
9 files changed, 63 insertions, 56 deletions
diff --git a/template/admin/html/main.php b/template/admin/html/main.php index d2fba38..bed186e 100644 --- a/template/admin/html/main.php +++ b/template/admin/html/main.php @@ -5,7 +5,7 @@ <meta name="referrer" content="origin-when-crossorigin" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <link rel="stylesheet" href="<?=Application::getTemplateURL('rsrc/main.css')?>" /> - <script src="<?=Application::getTemplateURL('rsrc/main.js')?>"></script> + <script defer src="<?=Application::getTemplateURL('rsrc/main.js')?>"></script> <title><?=escapeHTML($NAME)?> | Administration</title> </head> <body> diff --git a/template/admin/html/page/form.php b/template/admin/html/page/form.php index 00a9c11..7d91af9 100644 --- a/template/admin/html/page/form.php +++ b/template/admin/html/page/form.php @@ -53,6 +53,9 @@ <section class="flex flex-padding"> <textarea id="content-editor" name="body" placeholder="[…]"><?=escapeHTML($FORM['DATA']['BODY'])?></textarea> </section> + <section class="flex flex-padding background flex-arguments"> + <input id="L_ARGV" name="argv" maxlength="100" placeholder="[ARGUMENT_FOO=one|ARGUMENT_BAR=two …]" value="<?=escapeHTML($FORM['DATA']['ARGV'])?>" /> + </section> <section class="flex flex-padding background flex-emoticons"> <ul class="button-list emoticons"> <?php foreach(getEmoticons() as $emoticon => $data):?> diff --git a/template/admin/html/pagination.php b/template/admin/html/pagination.php index 31b5378..42eb378 100644 --- a/template/admin/html/pagination.php +++ b/template/admin/html/pagination.php @@ -1,45 +1,30 @@ -<section id="site-navi"> +<div id="site-navi"> <?php if($THIS > 1): ?> - <div><a href="<?=sprintf($HREF, $THIS-1)?>"><i class="fa fa-arrow-left"></i></a></div> + <div><a id="prev-site" href="<?=sprintf($HREF, $THIS-1)?>"><i class="fa fa-arrow-left"></i></a></div> <?php else: ?> <div><a class="disabled"><i class="fa fa-arrow-left"></i></a></div> <?php endif; ?> - <section> - <div> - <ol> - <?php for($currentItem = 1; $currentItem <= $LAST; ++$currentItem): ?> - <?php - $href = sprintf($HREF, $currentItem); - $class = NULL; - $currentItemHTML = $currentItem; - if($currentItem === $THIS) { - $class = ' class="active"'; - } + <div> + <ol> + <?php + for($current = 1; $current <= $LAST; ++$current) { + $class = ''; + $href = sprintf($HREF, $current); - echo '<li'.$class.'><a href="'.$href.'">'.$currentItemHTML.'</a></li>'; - ?> + if($current === $THIS) { + $class = ' class="active"'; + } - <?php endfor; ?> - </ol> - </div> - </section> + echo "<li{$class}><a href=\"{$href}\">{$current}</a></li>"; + } + ?> + </ol> + </div> <?php if($THIS < $LAST): ?> - <div><a href="<?=sprintf($HREF, $THIS+1)?>"><i class="fa fa-arrow-right"></i></a></div> + <div><a id="next-site" href="<?=sprintf($HREF, $THIS+1)?>"><i class="fa fa-arrow-right"></i></a></div> <?php else: ?> <div><a class="disabled"><i class="fa fa-arrow-right"></i></a></div> <?php endif; ?> -</section> - -<script> - var prevPageURL = <?php echo json_encode($THIS > 1 ? sprintf($HREF, $THIS-1) : FALSE); ?>; - var nextPageURL = <?php echo json_encode($THIS < $LAST ? sprintf($HREF, $THIS+1) : FALSE); ?>; - - document.addEventListener('keyup', function(event) { - if(!event.ctrlKey && !event.shiftKey) { - (event.keyCode === 37 && prevPageURL) && (window.location.href = prevPageURL); - (event.keyCode === 39 && nextPageURL) && (window.location.href = nextPageURL); - } - }, false) -</script>
\ No newline at end of file +</div>
\ No newline at end of file diff --git a/template/admin/html/post/form.php b/template/admin/html/post/form.php index 1156c6c..9603ded 100644 --- a/template/admin/html/post/form.php +++ b/template/admin/html/post/form.php @@ -53,6 +53,9 @@ <section class="flex flex-padding"> <textarea id="content-editor" name="body" placeholder="[…]"><?=escapeHTML($FORM['DATA']['BODY'])?></textarea> </section> + <section class="flex flex-padding background flex-arguments"> + <input id="L_ARGV" name="argv" maxlength="100" placeholder="[ARGUMENT_FOO=one|ARGUMENT_BAR=two …]" value="<?=escapeHTML($FORM['DATA']['ARGV'])?>" /> + </section> <section class="flex flex-padding background flex-emoticons"> <ul class="button-list emoticons"> <?php foreach(getEmoticons() as $emoticon => $data):?> diff --git a/template/admin/html/user/form.php b/template/admin/html/user/form.php index 4822dd5..374181c 100644 --- a/template/admin/html/user/form.php +++ b/template/admin/html/user/form.php @@ -59,6 +59,9 @@ <section class="flex flex-padding"> <textarea id="content-editor" name="body" placeholder="[…]"><?=escapeHTML($FORM['DATA']['BODY'])?></textarea> </section> + <section class="flex flex-padding background flex-arguments"> + <input id="L_ARGV" name="argv" maxlength="100" placeholder="[ARGUMENT_FOO=one|ARGUMENT_BAR=two …]" value="<?=escapeHTML($FORM['DATA']['ARGV'])?>" /> + </section> <section class="flex flex-padding background flex-emoticons"> <ul class="button-list emoticons"> <?php foreach(getEmoticons() as $emoticon => $data):?> diff --git a/template/admin/rsrc/main.js b/template/admin/rsrc/main.js index c874918..5405b29 100644 --- a/template/admin/rsrc/main.js +++ b/template/admin/rsrc/main.js @@ -1,4 +1,20 @@ //============================================================================== +// Elements which contains the location of the previous and next site +//============================================================================== +var prev = document.getElementById("prev-site"); +var next = document.getElementById("next-site"); + +//============================================================================== +// Handle arrow keys and change the location to the desired direction +//============================================================================== +document.addEventListener("keyup", function(event) { + if(!event.ctrlKey && !event.shiftKey) { + (event.keyCode === 37 && prev) && (window.location.href = prev.getAttribute("href")); + (event.keyCode === 39 && next) && (window.location.href = next.getAttribute("href")); + } +}, false); + +//============================================================================== // Markdown tags to replace //============================================================================== var markdownTags = { diff --git a/template/standard/html/pagination.php b/template/standard/html/pagination.php index 7a9279a..df5293e 100644 --- a/template/standard/html/pagination.php +++ b/template/standard/html/pagination.php @@ -7,36 +7,33 @@ # # #%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# ?> -<section id="site-navi"> +<div id="site-navi"> <?php if($THIS > 1): ?> <div><a id="prev-site" href="<?=sprintf($HREF, $THIS-1)?>"><i class="fa fa-arrow-left"></i></a></div> <?php else: ?> <div><a class="disabled"><i class="fa fa-arrow-left"></i></a></div> <?php endif; ?> - <section> - <div> - <ol> - <?php for($currentItem = 1; $currentItem <= $LAST; ++$currentItem): ?> - <?php - $href = sprintf($HREF, $currentItem); - $class = NULL; - $currentItemHTML = $currentItem; - if($currentItem === $THIS) { - $class = ' class="active"'; - } + <div> + <ol> + <?php + for($current = 1; $current <= $LAST; ++$current) { + $class = ''; + $href = sprintf($HREF, $current); - echo '<li'.$class.'><a href="'.$href.'">'.$currentItemHTML.'</a></li>'; - ?> + if($current === $THIS) { + $class = ' class="active"'; + } - <?php endfor; ?> - </ol> - </div> - </section> + echo "<li{$class}><a href=\"{$href}\">{$current}</a></li>"; + } + ?> + </ol> + </div> <?php if($THIS < $LAST): ?> <div><a id="next-site" href="<?=sprintf($HREF, $THIS+1)?>"><i class="fa fa-arrow-right"></i></a></div> <?php else: ?> <div><a class="disabled"><i class="fa fa-arrow-right"></i></a></div> <?php endif; ?> -</section>
\ No newline at end of file +</div>
\ No newline at end of file diff --git a/template/standard/lang/de.php b/template/standard/lang/de.php index d2b094c..fa8544f 100644 --- a/template/standard/lang/de.php +++ b/template/standard/lang/de.php @@ -62,11 +62,11 @@ $LANGUAGE['search_form_placeholder'] = 'Suchbegriff eingeben …'; # Error 403 #=============================================================================== $LANGUAGE['403_heading_text'] = 'Zugriff verweigert'; -$LANGUAGE['403_heading_desc'] = 'Der Zugriff auf diese Ressource des Servers wurde dir verweigert, da du die dafür notwendigen Berechtigungen nicht besitzt.'; +$LANGUAGE['403_heading_desc'] = 'Der Zugriff auf diese Ressource wurde dir verweigert, da du die dafür notwendigen Berechtigungen nicht besitzt.'; #=============================================================================== # Error 404 #=============================================================================== $LANGUAGE['404_heading_text'] = 'Nicht gefunden'; -$LANGUAGE['404_heading_desc'] = 'Die angeforderte Ressource konnte auf diesem Server nicht gefunden werden.'; +$LANGUAGE['404_heading_desc'] = 'Die angeforderte Ressource konnte nicht gefunden werden.'; ?>
\ No newline at end of file diff --git a/template/standard/lang/en.php b/template/standard/lang/en.php index c00ec36..c2d04d9 100644 --- a/template/standard/lang/en.php +++ b/template/standard/lang/en.php @@ -68,5 +68,5 @@ $LANGUAGE['403_heading_desc'] = 'You are denied to access this resource because # Error 404 #=============================================================================== $LANGUAGE['404_heading_text'] = 'Not found'; -$LANGUAGE['404_heading_desc'] = 'The requested resource could not be found on this server.'; +$LANGUAGE['404_heading_desc'] = 'The requested resource could not be found.'; ?>
\ No newline at end of file |