]> git.plutz.net Git - shcgi/blobdiff - misc.sh
allow empty fields in POST data
[shcgi] / misc.sh
diff --git a/misc.sh b/misc.sh
index 05a3af52385b85547a8952dd0131778e2ce73268..adc879b3091474e24cbb765a001d211717c1b6d8 100755 (executable)
--- a/misc.sh
+++ b/misc.sh
@@ -38,3 +38,20 @@ validate(){
   printf %s\\n "${value}" \
   | sed -rn "2q; /^(${regex})\$/{p;q}; a${default}"
 }
+
+invalidate(){
+  # print default if value matches regex; otherwise print value
+  value="$1"
+  regex="$(printf %s\\n "$2" \
+           | sed -r 's;(^|[^\\]+)((\\\\)+)/;\1\2\\/;g; s;(^|[^\\])/;\1\\/;g; s;(^|[^\\]+)((\\\\)+)/;\1\2\\/;g; s;(^|[^\\])/;\1\\/;g;'
+          )" # ^^ escape only unescaped slash characters for later insertion
+  default="$3"
+
+  printf %s\\n "${value}" \
+  | sed -rn "2q; /^(${regex})\$/{bd}; p;q; :d;a${default}"
+}
+
+declare -A item_name
+l10n(){
+  [ -n "$item_name[$1]+x" ] && printf %s "$item_name[$1]" || printf %s "$1"
+}