]> git.plutz.net Git - serve0/blobdiff - templates/view.html.sh
styling for pagination links
[serve0] / templates / view.html.sh
index b2856a52fc1508ad5e72d0ffdddd97f34903314f..6c8a2e0aec965534908f63afaed53e8241ea0f62 100755 (executable)
-#!/bin/zsh
-
-cat <<viewEND
-  <div class="panel" id="videoview">
-    <a href="#" onclick="javascript:hide('videoview');" class="panel">Dismiss</a>
-    <div class="video">
-      <a href="$video">Full</a> <!-- a href="$reenc">Mobile</a -->
-      <!--iframe src="$video" width="100%" height="400px"-->
-      <video controls>
-        <!-- source src="$reenc" type='video/webm; codecs="vp8.0, mp3"' -->
-       <source src="$video" type='video/mp4; codecs="avc1.4D401E, mp3"'>"
-      </video><!--/iframe-->
-    </div>
-  
-    <div class="videoinfo" id="viewmeta">
-      <h2>$info</h2>
-      <a class="meta edit" href="#" onclick="javascript:hide('viewmeta');show_iblock('editmeta')">Edit</a>
-
-      <span class="info property">$(($length / 60)):$(($length % 60)) min</span>
-      <span class="info property">Width: $width</span>
-      <span class="info property">Height: $height</span><br>
-
-      <span class="label tags">Tags:</span>
-      $(echo "$tags" |sed -r 's:\|*([^|]+)\|*:<span class="info tag">\1</span>:g')
-      $([ -n "$description" ] && echo "<span class=\"info description\">$(_wiki <<<"$description")</span>")
-    </div>
-  
-    <form class="videoinfo" id="editmeta" style="display: none;"
-          action="?action=meta&${page_this}" method="post" accept-charset="UTF-8">
-      <input type="hidden" name="length" value="$length">
-      <input type="hidden" name="width" value="$width">
-      <input type="hidden" name="height" value="$height">
-
-      <h2>$info</h2>
-      <a class="meta cancel" href="#" onclick="javascript:hide('editmeta');show_iblock('viewmeta')">Cancel</a>
-
-      <span class="info property">$(($length / 60)):$(($length % 60)) min</span>
-      <span class="info property">Width: $width</span>
-      <span class="info property">Height: $height</span>
+# Copyright 2014 - 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 <<EOF
+<input type=radio name=topmenu id=btn_search checked><label for=btn_search>Search</label>
+<form class="panel" id="search" action="?" method="get" accept-charset="UTF-8">
+  <input type="text" name="s" value="$search" placeholder="Search">
+
+  <select class="order" size="1" name="o" id="o1">
+    <option class="label" selected disabled>Order by</option>
+    <option>Name</option>
+    <option>Date</option>
+    <option>Length</option>
+  </select>
+  <!-- input type="submit" name="submit" value="Find" -->
+
+  <a class="panel" href="${info:+?p=list&amp;${page_this}}${directory:+?p=browse&amp;d=${directory}&amp;${page_this}}#$(urlsafe $info)">Dismiss</a>
+</form>
+
+<input type=radio name=topmenu id=btn_preferences><label for=btn_preferences>Preferences</label>
+  $(. $_EXEC/templates/preferences.html.sh)
+
+<input type=radio name=topmenu id=btn_morelinks><label for=btn_morelinks>{+}</label>
+<div class="panel switchable top" id="morelinks">
+  <a class="panel toggle" href="#">Hide</a>
+
+  <a class="panel listview" href="?p=list">Index view</a>
+  <a class="panel treeview" href="?p=browse">Browse Folders</a>
+</div>
+
+
+<div id="videoview">
+  <h1>$(htmlsafe "$info")</h1>
+
+  <a href="$(urlsafe "$video")">Download</a>
+  <a href="javascript:stereoview(180, document.getElementById('mainvideo'));">View 180º Steroscopic</a>
+  <a href="javascript:stereoview(360, document.getElementById('mainvideo'));">View 360º Steroscopic</a>
+  <video id="mainvideo" autoplay controls>
+    <source src="$(urlsafe "$video")" type='video/mp4; codecs="avc1.4D401E, mp3"'>"
+  </video>
+
+  <span class="info length">$(printf "%d:%02d min" $(($length / 60)) $(($length % 60)) )</span>
+  <span class="info width" >Width: $width</span>
+  <span class="info height">Height: $height</span><br>
   
-      <span class="label tags">Tags:</span>
-      <select class="edit tags" name="tag" size="16" multiple>
-        $(echo "$taglist" |while read line; do
-          echo "<option $(egrep -q "(^|.*\|)$line(\|.*|$)" "$meta" && echo -n selected)>$line</option>"
-        done)
-      </select>
-
-      <span class="label moretags">Additional Tags (one per line):</span>
-      <textarea class="edit moretags" name="tags" rows="4"></textarea>
-
-      <span class="label description">Description:</span>
-      <textarea class="edit description" name="description" rows="4">$description</textarea>
-      <input type="submit" value="Submit">
-      <input type="submit" name="trash" value="Delete Video">
-      <!-- input type="submit" name="cancel" value="Cancel" -->
-    </form>
-  </div>
-viewEND
+  $(printf %s\\n "$tags" |sed -r 's:\|*([^|]+)\|*:<span class="info tag">\1</span> :g')
+  ${description:+<span class="info description">$(printf %s "$description" |_wiki)</span>}
+</div>
 
-# vi:set filetype=html:
+<script type="text/javascript" src="?static=stereoview.js"></script>
+
+<form class="panel switchable bottom" id="tagger" action="?action=meta&${page_this}" method="post" accept-charset="UTF-8">
+  <input type="hidden" name="referrer" value="$(attribsafe "${REQUEST_URI}")">
+  <input type="hidden" name="length" value="$length">
+  <input type="hidden" name="width" value="$width">
+  <input type="hidden" name="height" value="$height">
+
+  $(
+  for cat in $(list_categories); do
+    printf '<fieldset class="newtag"><label class="category">%s:</label><select name="tag" size="12" multiple>' "${cat}"
+    catt="${cat}:"
+    [ "$catt" = "none:" ] && catt=''
+    
+    printf %s "$taglist_set" |egrep '^'"$catt"'[^:]+$' |while read line; do
+      printf '<option %s value="%s">%s</option>' \
+             "$(egrep -q "(^|.*\|)$line(\|.*|$)" "$meta" && printf selected)" \
+             "$line" "${line#*:}"
+    done
+    printf '</select></fieldset>'
+  done
+  )
 
+  <fieldset class="newtag additional">
+    <label class="additional">Additional Tags (one per line):</label>
+    <textarea name="tags" rows="4"></textarea>
+  </fieldset>
+  <fieldset class="newtag description">
+    <label class="description">Description:</label>
+    <textarea name="description" rows="4">$description</textarea>
+  </fieldset>
+  <input type="submit" value="Edit!">
+  <input type="submit" name="trash" value="Delete Video">
+
+  <a class="panel toggle" href="#foot">Hide</a>
+</form>
+
+<div class="panel bottom" id="foot">
+  <a class="panel toggle" href="#tagger">Edit Tags</a>
+</div>
+EOF
+
+# vi:set filetype=html: