]> git.plutz.net Git - shellwiki/blobdiff - macros/wikiform
make search fields type=search
[shellwiki] / macros / wikiform
index 4fe285e567941178ae902477abc6c171f6cf24d7..257a22ed6e1ca430d62cdc627f7406f8d5078074 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.
+
 action="$1"
 
 . "$_EXEC/cgilite/cgilite.sh"
@@ -21,4 +35,15 @@ case $action in
   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