]> git.plutz.net Git - shellwiki/blobdiff - macros/wikiform
make search fields type=search
[shellwiki] / macros / wikiform
index 13ff113cc33260afcfc4f70840808a592f8899f7..257a22ed6e1ca430d62cdc627f7406f8d5078074 100755 (executable)
@@ -1,10 +1,27 @@
 #!/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.
+
 action="$1"
 
 . "$_EXEC/cgilite/cgilite.sh"
 . "$_EXEC/cgilite/users.sh"
 
+_(){ printf %s\\n "$*"; }
+[ "${LANGUAGE}" -a -r "${_EXEC}/l10n/${LANGUAGE}.sh" ] && . "${_EXEC}/l10n/${LANGUAGE}.sh"
+
 case $action in
   login)
     w_user_login |"$_EXEC/cgilite/html-sh.sed"
@@ -12,4 +29,21 @@ case $action in
   register)
     w_user_register |"$_EXEC/cgilite/html-sh.sed"
     ;;
+  invite)
+    w_user_invite |"$_EXEC/cgilite/html-sh.sed"
+    ;;
+  settings)
+    w_user_update |"$_EXEC/cgilite/html-sh.sed"
+    ;;
+  search)
+    if [ "$LANGUAGE_DEFAULT" ]; then
+      printf '<form class="search" method="GET" action="./:%s/[search]">
+        <input type="search" placeholder="%s" name="q" value=""><button type="submit" class="search">%s</button>
+      </form>' "$LANGUAGE" "$(_ Search)" "$(_ Search)"
+    else
+      printf '<form class="search" method="GET" action="./[search]">
+        <input type="search" placeholder="%s" name="q" value=""><button type="submit" class="search">%s</button>
+      </form>' "$(_ Search)" "$(_ Search)"
+    fi
+    ;;
 esac