X-Git-Url: https://git.plutz.net/?a=blobdiff_plain;f=macros%2Fwikiform;h=257a22ed6e1ca430d62cdc627f7406f8d5078074;hb=391ca15c76ee74991dc8462ae76782497751a133;hp=37d3996f872a3757bef17d70a71296ce5b695d4e;hpb=6c8a69b3a84e68dd86f16ec23913c3d2c77d0755;p=shellwiki diff --git a/macros/wikiform b/macros/wikiform index 37d3996..257a22e 100755 --- a/macros/wikiform +++ b/macros/wikiform @@ -1,11 +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" -set -- nocookie . "$_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" @@ -13,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 '' "$LANGUAGE" "$(_ Search)" "$(_ Search)" + else + printf '' "$(_ Search)" "$(_ Search)" + fi + ;; esac