]> git.plutz.net Git - serve0/blob - templates/view.html.sh
added licence headers, coding style improvements
[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}}${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   <label class="tags">Tags:</label>
54   $(printf %s\\n "$tags" |sed -r 's:\|*([^|]+)\|*:<span class="info tag">\1</span>:g')
55   ${description:+<span class="info description">$(printf %s "$description" |_wiki)</span>}
56
57   <form class="panel" id="tagger" action="?action=meta&${page_this}" method="post" accept-charset="UTF-8">
58     <input type="hidden" name="length" value="$length">
59     <input type="hidden" name="width" value="$width">
60     <input type="hidden" name="height" value="$height">
61
62     $(
63     for cat in $(list_categories); do
64       printf '<p class="newtag"><label class="category">%s:</label><select name="tag" size="12" multiple>' "${cat}"
65       catt="${cat}:"
66       [ "$catt" = "none:" ] && catt=''
67       
68       printf %s "$taglist" |egrep '^'"$catt"'[^:]+$' |while read line; do
69         printf '<option %s value="%s">%s</option>' \
70                "$(egrep -q "(^|.*\|)$line(\|.*|$)" "$meta" && printf selected)" \
71                "$line" "${line#*:}"
72       done
73       printf '</select></p>'
74     done
75     )
76
77     <p class="newtag additional">
78       <label class="additional">Additional Tags (one per line):</label>
79       <textarea name="tags" rows="4"></textarea>
80     </p>
81     <p class="newtag description">
82       <label class="description">Description:</label>
83       <textarea name="description" rows="4">$description</textarea>
84     </p>
85     <input type="submit" value="Edit!">
86     <input type="submit" name="trash" value="Delete Video">
87
88     <a class="panel toggle" href="#foot">Hide</a>
89
90   </form>
91 </div>
92
93 <div class="panel footer" id="foot">
94   <a class="panel toggle" href="#tagger">Add Tags</a>
95
96   <div class="pagination_nav">
97     <label>Page:</label>
98     <a href="?${page_prev}">&lt;&lt;</a>
99     <a href="?${page_this}">$(($page + 1))</a>
100     <a href="?${page_next}">&gt;&gt;</a>
101   </div>
102 </div>
103 EOF
104
105 # vi:set filetype=html: