]> git.plutz.net Git - serve0/blobdiff - templates/tagger.html.sh
styling for pagination links
[serve0] / templates / tagger.html.sh
index b4f2d7d327628deccb631d85e7f7b19c7b7c0b53..4b1d0fe698f83e47b74366d6f328ebca38f94095 100755 (executable)
@@ -1,46 +1,54 @@
-#!/bin/zsh    
+# Copyright 2014, 2015, 2016 Paul Hänsch
+#
+# This file is part of Serve0
+# 
+# Serve0 is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+# 
+# Serve0 is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public License
+# along with Serve0  If not, see <http://www.gnu.org/licenses/>. 
 
-cat <<LOCATIONend
-  <div class="panel footer" id="foot">
-    <a class="panel tagger show" href="#foot" onclick="javascript:hide('foot');show_block('tagger');">Add Tags</a>
+category_options(){
+  cat="${1}:"
+  [ "$cat" = "none:" ] && cat=''
 
-    <div class="pagination_nav">
-      <label>Page:</label>
-      <a href="?${page_prev}">&lt;&lt;</a>
-      <a href="?${page_this}">$(($page + 1))</a>
-      <a href="?${page_next}">&gt;&gt;</a>
-    </div>
-  </div>
+  printf %s "$taglist_set" \
+  | sed -rn 's;^('"$cat"')([^:]+)$;<option value="\1\2">\2</option>;p'
+}
 
+category_box(){
+  for cat in "$@"; do
+  cat <<EOF
+  <fieldset class="newtag">
+    <label class="category">${cat}:</label>
+    <input type="hidden" name="category" value="$cat">
+    <select name="ctag" size="12" multiple>
+      $(category_options "$cat")
+    </select>
+  </fieldset>
+EOF
+  done
+}
 
-  <div class="panel footer" id="tagger" style="display: none;">
-    <a class="panel tagger hide" href="#"
-     onclick="javascript:hide('tagger');$(for n in $(seq 1 4); do echo "hide('filter$n');"; done)show_block('foot')"
-    >Hide</a>
-    <hr>
+cat <<EOF
+  <div class="panel switchable bottom" id="tagger">
     <p class="help">Add selectetd tags to selected videos.</p>
-    <p class="newtag">
-      <label class="category">None:</label>
-      <select name="ctag" size="12" multiple id="${n}_none">
-       $(echo "$taglist" |sed -rn 's;^([^:]+)$;<option value="\1">\1</option>;p')
-      </select>
-    </p>
-    $(echo "$taglist" |sed -rn 's;^([^:]+):.*$;\1;p' |sort -u |while read cat; do echo "
-    <p class=\"newtag\">
-      <label class=\"category\">${cat}:</label>
-      <input type=\"hidden\" name=\"category\" value=\"$cat\">
-      <select name=\"ctag\" size=\"12\" multiple id=\"${n}_$cat\">
-       $(echo "$taglist" |sed -rn "s;^${cat}:(.*)$;<option value=\"${cat}:\\1\">\\1</option>;p")
-      </select>
-    </p>"
-    done)
-    <p class="newtag additional">
+    $(category_box $(list_categories))
+    <fieldset class="newtag additional">
       <label class="additional">Additional Tags (one per line):</label>
       <textarea name="tags" rows="2"></textarea>
-    </p>
+    </fieldset>
     <input type="submit" value="Add Tags!">
+
+    <a class="panel toggle" href="#foot">Hide</a>
   </div>
-LOCATIONend
+EOF
 
 # vi:set filetype=html:
-