#!/bin/sh
-. "$_EXEC/indexmeta.sh"
+. "$_EXEC/db_meta.sh"
. "$_EXEC/widgets.sh"
-read length width height tags comment short <<-EOF
- $(meta_info "$_DATA/$ITEM")
- EOF
+read_meta "${ITEM%.*}"
printf 'Content-Type: text/html;charset=utf-8\r\n\r\n'
-{ printf '
-[!DOCTYPE HTML]
-[html [head [title \n'
- HTML "${ITEM##*/}"
- printf ']
- [meta name="viewport" content="width=device-width"]
- [link rel=stylesheet href="/cgilite/common.css" ]
- [link rel=stylesheet href="/style.css" ]
-] [body #view
- [script type="text/javascript" src="/stereoview.js"\n]
- [div #navigation
- [a #t_bookmarks href="#bookmarks" ★]'
- w_search
- printf '
- [a #t_prefs href="#prefs" ⚙]
- ]'
+{ cat <<-EOF
+ [!DOCTYPE HTML]
+ [html [head
+ [title . $(HTML "${ITEM##*/}")]
+ [meta name="viewport" content="width=device-width"]
+ [link rel=stylesheet href="/cgilite/common.css" ]
+ [link rel=stylesheet href="/style.css" ]
+ ] [body #view
+ [script type="text/javascript" src="/stereoview.js"\n]
+ [div #navigation
+ [a #t_bookmarks href="#bookmarks" ★]
+ $(w_search)
+ [a #t_prefs href="#prefs" ⚙]
+ ]
+ EOF
w_bookmarks
w_advsearch
w_prefs
- printf '
- [video #mainvideo controls="controls" preload="auto" [source src="?a=download" type="video/mp4"]]
- [a "?a=download" Download]
- [a "javascript:stereoview(180, document.getElementById("mainvideo"));" View 180° Stereoscopic]
- [a "javascript:stereoview(360, document.getElementById("mainvideo"));" View 360° Stereoscopic]
- [h1\n %s]
- [span .time %i:%02imin] [span .dim %ix%i] %s
- ' "$(HTML "${ITEM##*/}" |sed -r "$w_ascii"' s;[^0-9a-zA-Z&#];&[wbr];g')" \
- "$((length / 60))" "$((length % 60))" "$width" "$height" \
- "$(UNSTRING "${tags#tags=}" |sed -r '
- s;^;,;; s;,+;,;g; s;,$;;; :X s;,-?([^,]+)(,|$); [span .tag\n \1]\2;; tX;'
- )"
+ cat <<-EOF
+ [video #mainvideo controls="controls" preload="auto" [source src="?a=download" type="video/mp4"]]
+ [a "?a=download" Download]
+ [a "javascript:stereoview(180, document.getElementById("mainvideo"));" View 180° Stereoscopic]
+ [a "javascript:stereoview(360, document.getElementById("mainvideo"));" View 360° Stereoscopic]
+ [h1 . $(HTML "${ITEM##*/}" |sed -E 's;[^0-9a-zA-Z&#];&[wbr];g')]
+ [span .time $((META_LENGTH / 60)):$(printf %02i $((META_LENGTH % 60)))min] [span .dim ${META_WIDTH}x${META_HEIGHT}]
+ EOF
+ printf %s\\n "$META_TAGS" |tr , \\n |while read tag; do
+ [ "$tag" ] && printf ' [span .tag . %s]\n' "$(HTML "${tag#-}")"
+ done
printf '
[div #editing
[form method=POST action="/?a=multitag"