]> git.plutz.net Git - serve0/commitdiff
switch to db_meta
authorPaul Hänsch <paul@plutz.net>
Tue, 16 Nov 2021 00:29:19 +0000 (01:29 +0100)
committerPaul Hänsch <paul@plutz.net>
Tue, 16 Nov 2021 00:29:19 +0000 (01:29 +0100)
view.sh [changed mode: 0644->0755]

diff --git a/view.sh b/view.sh
old mode 100644 (file)
new mode 100755 (executable)
index 9bd507c..094337e
--- a/view.sh
+++ b/view.sh
@@ -1,45 +1,41 @@
 #!/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" &#x2605;]'
-    w_search
-    printf '
-    [a #t_prefs href="#prefs" &#x2699;]
-  ]'
+{ 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" &#x2605;]
+           $(w_search)
+           [a #t_prefs href="#prefs" &#x2699;]
+         ]
+       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(&#34;mainvideo&#34;));" View 180° Stereoscopic]
-  [a "javascript:stereoview(360, document.getElementById(&#34;mainvideo&#34;));" 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(&#34;mainvideo&#34;));" View 180° Stereoscopic]
+         [a "javascript:stereoview(360, document.getElementById(&#34;mainvideo&#34;));" 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"