]> git.plutz.net Git - serve0/blob - templates/view.html.sh
improved player on small screens
[serve0] / templates / view.html.sh
1 # Copyright 2014 - 2016 Paul Hänsch
2 #
3 # This file is part of Serve0
4
5 # Serve0 is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
9
10 # Serve0 is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU Affero General Public License for more details.
14
15 # You should have received a copy of the GNU Affero General Public License
16 # along with Serve0  If not, see <http://www.gnu.org/licenses/>. 
17
18 cat <<EOF
19 <form class="panel" id="search" style="display: block;" action="?" method="get" accept-charset="UTF-8">
20   <input type="text" name="s" value="$search" placeholder="Search">
21
22   <label for="o1" class="order">Order by:</label>
23   <select class="order" size="1" name="o" id="o1">
24     <option>Name</option>
25     <option>Date</option>
26     <option>Length</option>
27   </select>
28   <input type="submit" name="submit" value="Find">
29
30   <a class="panel clearsearch" href="?">Clear All</a>
31   <a class="panel" href="${info:+?p=list&amp;${page_this}#$(urlsave $info)}${info:-?p=tree&amp;d=${directory}&amp;${page_this}}">Dismiss</a>
32
33   <div class="pagination_nav">
34     <label>Page:</label>
35     <a href="?p=view&amp;${page_prev}">&lt;&lt;</a>
36     <a href="?p=view&amp;${page_this}">$(($page + 1))</a>
37     <a href="?p=view&amp;${page_next}">&gt;&gt;</a>
38   </div>
39 </form>
40
41 <div id="videoview">
42   <h1>$info</h1>
43
44   <a href="$video">Download</a>
45   <video autoplay controls>
46     <source src="$video" type='video/mp4; codecs="avc1.4D401E, mp3"'>"
47   </video>
48
49   <span class="info length">$(($length / 60)):$(($length % 60)) min</span>
50   <span class="info width" >Width: $width</span>
51   <span class="info height">Height: $height</span><br>
52   
53   $(printf %s\\n "$tags" |sed -r 's:\|*([^|]+)\|*:<span class="info tag">\1</span> :g')
54   ${description:+<span class="info description">$(printf %s "$description" |_wiki)</span>}
55
56   <form class="panel" id="tagger" action="?action=meta&${page_this}" method="post" accept-charset="UTF-8">
57     <input type="hidden" name="length" value="$length">
58     <input type="hidden" name="width" value="$width">
59     <input type="hidden" name="height" value="$height">
60
61     $(
62     for cat in $(list_categories); do
63       printf '<p class="newtag"><label class="category">%s:</label><select name="tag" size="12" multiple>' "${cat}"
64       catt="${cat}:"
65       [ "$catt" = "none:" ] && catt=''
66       
67       printf %s "$taglist" |egrep '^'"$catt"'[^:]+$' |while read line; do
68         printf '<option %s value="%s">%s</option>' \
69                "$(egrep -q "(^|.*\|)$line(\|.*|$)" "$meta" && printf selected)" \
70                "$line" "${line#*:}"
71       done
72       printf '</select></p>'
73     done
74     )
75
76     <p class="newtag additional">
77       <label class="additional">Additional Tags (one per line):</label>
78       <textarea name="tags" rows="4"></textarea>
79     </p>
80     <p class="newtag description">
81       <label class="description">Description:</label>
82       <textarea name="description" rows="4">$description</textarea>
83     </p>
84     <input type="submit" value="Edit!">
85     <input type="submit" name="trash" value="Delete Video">
86
87     <a class="panel toggle" href="#foot">Hide</a>
88
89   </form>
90 </div>
91
92 <div class="panel footer" id="foot">
93   <a class="panel toggle" href="#tagger">Edit Tags</a>
94
95   <div class="pagination_nav">
96     <label>Page:</label>
97     <a href="?${page_prev}">&lt;&lt;</a>
98     <a href="?${page_this}">$(($page + 1))</a>
99     <a href="?${page_next}">&gt;&gt;</a>
100   </div>
101 </div>
102 EOF
103
104 # vi:set filetype=html: