]> git.plutz.net Git - shellwiki/blobdiff - themes/default.sh
make search fields type=search
[shellwiki] / themes / default.sh
index b4dfe16bf9ff91950818e00ee777fe80606c7503..5979f207895e2f9586abd29947902f160a93d0b9 100755 (executable)
@@ -1,5 +1,19 @@
 #!/bin/sh
 
+# Copyright 2022 - 2023 Paul Hänsch
+# 
+# Permission to use, copy, modify, and/or distribute this software for any
+# purpose with or without fee is hereby granted, provided that the above
+# copyright notice and this permission notice appear in all copies.
+# 
+# THE SOFTWARE IS PROVIDED “AS IS” AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
+# SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
+# IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
 . "$_EXEC/tools.sh"
 
 theme_head(){
@@ -25,16 +39,17 @@ theme_pagemenu(){
   local page="$1"
 
   if acl_write "$page"; then
-    printf  '
-    <ul class="pagemenu">
-      <li><a href="./%%5Bview%%5D">View</a></li>
-      <li><a href="./%%5Bedit%%5D">Edit</a></li>
-      <li><a href="./%%5Battachment%%5D">Attachments</a></li>
-      <li><a href="./%%5Brevision%%5D">Revisions</a></li>
-      <li><a href="./%%5Brename%%5D">Rename</a></li>
-      <li><a href="./%%5Bmove%%5D">Move</a></li>
-      <li><a href="./%%5Bdelete%%5D">Delete</a></li>
-    </ul>'
+    cat <<-EOF
+       <ul class="pagemenu">
+         <li><a href="./%5Bview%5D">$(_ View)</a></li>
+         <li><a href="./%5Bedit%5D">$(_ Edit)</a></li>
+         <li><a href="./%5Battachment%5D">$(_ Attachments)</a></li>
+         <li><a href="./%5Brevision%5D">$(_ Revisions)</a></li>
+         <li><a href="./%5Brename%5D">$(_ Rename)</a></li>
+         <li><a href="./%5Bmove%5D">$(_ Move)</a></li>
+         <li><a href="./%5Bdelete%5D">$(_ Delete)</a></li>
+       </ul>
+       EOF
   fi
 }
 
@@ -74,9 +89,9 @@ theme_editor(){
   [ "$template" ] && acl_read "$template" || template="$page"
 
   theme_page - "Editor: $title" <<-EOF
-       <input checked type=radio class=tab name=edithelp value=edtr id=editor><label for=editor>Editor</label>
-       <input         type=radio class=tab name=edithelp value=help id=syntax><label for=syntax>Syntax</label>
-       <input         type=radio class=tab name=edithelp value=att  id=attach><label for=attach>Attachments</label>
+       <input checked type=radio class=tab name=edithelp value=edtr id=editor><label for=editor>$(_ Editor)</label>
+       <input         type=radio class=tab name=edithelp value=help id=syntax><label for=syntax>$(_ Syntax)</label>
+       <input         type=radio class=tab name=edithelp value=att  id=attach><label for=attach>$(_ Attachments)</label>
        $([ "$LANGUAGE_DEFAULT" -a "$LANGUAGE_DEFAULT" != "$LANGUAGE" ] && printf '
        <input         type=radio class=tab name=edithelp value=att  id=transl><label for=transl>%s</label>
        ' "$LANGUAGE_DEFAULT"
@@ -85,57 +100,80 @@ theme_editor(){
          <input type=hidden name=session_key value="${SESSION_KEY}"/>
          <textarea name=pagetext>$({ wiki_text "$page" \
                                   || wiki_text "$template"; } |HTML)</textarea>
-         <button type=submit name=action value=update>Update</button>
-         <button type=submit name=action value=cancel>Cancel</button>
+         <button type=submit name=action value=update>$(_ Update)</button>
+         <button type=submit name=action value=cancel>$(_ Cancel)</button>
        </form>
         <div class="tab syntax">$(wiki "/[wiki]/editorhelp/")</div>
        <div class="tab attach">
        $(for file in "$_EXEC/pages/${page%/:$LANGUAGE/}/#attachments"/* "$_DATA/pages/${page%/:$LANGUAGE/}/#attachments"/*; do
          [ "$file" = "$_EXEC/pages/${page%/:$LANGUAGE/}/#attachments/${file##*/}" \
                -a -f "$_DATA/pages/${page%/:$LANGUAGE/}/#attachments/${file##*/}" ] && continue
+         att="$(HTML "${file##*/}")"
+          url="$(printf %s\\n "${file##*/}" |sed 's;[\\<>];\\&;g' |HTML)"
+         name="$(printf %s\\n "${file##*/}" |sed 's;[]\\[];\\&;g' |HTML)"
          case ${file##*/} in
            \*) continue;;
            *.[pP][nN][gG]|*.[jJ][pP][gG]|*.[jJ][pP][eE][gG]|*.[gG][iI][fF])
              [ "$page" != "${page%/:$LANGUAGE/}" ] && p=../ || p=''
-             att="$(HTML "${file##*/}")"
-             printf '<p class=aimg><img src="%s%s">![](%s)</p><ul class=aimg><li>[%s]([attachment]/%s)</li><li>[![%s](%s)]([attachment]/%s)</li></ul>' \
-                    "$p" "$att" "$att" "$att" "$att" "$att" "$att" "$att"
+             printf '<p class=aimg><img src="%s%s">![](&lt;%s&gt;)</p><ul class=aimg>
+                       <li>[%s](&lt;[attachment]/%s&gt;)</li>
+                       <li>[![%s](&lt;%s&gt;)](&lt;[attachment]/%s&gt;)</li>
+                     </ul>' \
+                    "$p" "$att" "$url" "$name" "$url" "$name" "$url" "$url"
              ;;
            *)
-             att="$(HTML "${file##*/}")"
-             printf '<p class="adoc">[%s](%s)</p>' "$att" "$att"
+             printf '<p class="adoc">[%s](&lt;%s&gt;)</p>' "$name" "$url"
              ;;
          esac
        done)
        </div>
        $(if [ "$LANGUAGE_DEFAULT" -a "$LANGUAGE_DEFAULT" != "$LANGUAGE" ]; then
-         printf '<div class="tab transl">%s</div>' "$(wiki_text "${page%/:$LANGUAGE/}" |HTML)"
+         printf '<div class="tab transl">%s</div>' "$(LANGUAGE='' wiki_text "${page%/:$LANGUAGE/}" |HTML)"
        fi)
        EOF
 }
 
 theme_revisions(){ theme_page "$@"; }
 
+theme_search(){
+  local words="$*"
+  # STDIN: read result pages line by line
+
+  theme_page - <<-EOF
+       <article>
+         <h1>$([ "$words" ] && _ "Search results" || _ "Search" )</h1>
+         <form class="search" method="GET">
+           <input type="search" name="q" value="$(HTML $words)"><button class="search" type="submit">$(_ Search)</button>
+         </form>
+         <ol class="searchresults">
+           $( while read p; do
+             printf '<li><a href="%s">%s</a></li>' "$(URL "$p")" "$(HTML "$p")"
+           done)
+         </ol>
+       </article>
+       EOF
+}
+
 theme_attachments(){
   local page="$1" title
   title="${page%/}"; title="${title##*/}"
 
   if acl_write "$page"; then
-    theme_page - "Attachments: $title" <<-EOF
+    theme_page - "$(_ Attachments): $title" <<-EOF
        <form class=upload method=POST enctype="multipart/form-data">
-         <h2>Upload</h2>
+         <h2>$(_ Upload)</h2>
          <input type=hidden name=session_id value="$SESSION_ID">
          <input type=file name=file multiple>
-         <button type=submit name=action value=upload>Upload</button>
+         <button type=submit name=action value=upload>$(_ Upload)</button>
        </form>
        
        <form method=POST>
-         <h2>Attachments</h2>
+         <h2>$(_ Attachments)</h2>
          <input type=hidden name=session_key value="$SESSION_KEY">
-          <input checked type=radio class=tab name=attachaction value=view id=tview><label for=tview>View</label>
-          <input         type=radio class=tab name=attachaction value=del  id=tdel ><label for=tdel >Delete</label>
-          <input         type=radio class=tab name=attachaction value=move id=tmove><label for=tmove>Move</label>
-          <input         type=radio class=tab name=attachaction value=ren  id=tren ><label for=tren >Rename</label>
+          <input checked type=radio class=tab name=attachaction value=view id=tview><label for=tview>$(_ View)</label>
+          <input         type=radio class=tab name=attachaction value=del  id=tdel ><label for=tdel >$(_ Delete)</label>
+          <input         type=radio class=tab name=attachaction value=move id=tmove><label for=tmove>$(_ Move)</label>
+          <input         type=radio class=tab name=attachaction value=ren  id=tren ><label for=tren >$(_ Rename)</label>
           <div class="tab">
            <ul class="attachment list">
        $(for file in "$_EXEC/pages/$page/#attachments"/* "$_DATA/pages/$page/#attachments"/*; do
@@ -157,16 +195,16 @@ theme_attachments(){
                 "$(size_human "$size")" "$(date -d @"$date" +"%F %T")"
        done)
            </ul>
-           <button type=submit name=action value=delete>Delete</button>
-           <label for=moveto>Move To:</label>
-           <input id="moveto" name="moveto" value="$(HTML "$page")" placeholder="page name">
-           <button type=submit name=action value=move  >Move</button>
-           <button type=submit name=action value=rename>Rename</button>
+           <button type=submit name=action value=delete>$(_ Delete)</button>
+           <label for=moveto>$(_ Move To:)</label>
+           <input id="moveto" name="moveto" value="$(HTML "$page")" placeholder="$(_ page name)">
+           <button type=submit name=action value=move  >$(_ Move)</button>
+           <button type=submit name=action value=rename>$(_ Rename)</button>
          </div>
        </form>
        EOF
   else
-    theme_page - "Attachments: $title" <<-EOF
+    theme_page - "$(_ Attachments): $title" <<-EOF
        <ul class="attachment list">
        $(for file in "$_EXEC/pages/$page/#attachments"/* "$_DATA/pages/$page/#attachments"/*; do
          [ "$file" = "$_EXEC/pages/$page/#attachments/${file##*/}" \