]> git.plutz.net Git - serve0/blobdiff - actions/filter.sh
indexing stubs
[serve0] / actions / filter.sh
diff --git a/actions/filter.sh b/actions/filter.sh
deleted file mode 100755 (executable)
index f5057be..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/bin/zsh
-# Copyright 2014 - 2016 Paul Hänsch
-#
-# This file is part of Serve0
-#
-# Serve0 is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Affero General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# Serve0 is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU Affero General Public License for more details.
-#
-# You should have received a copy of the GNU Affero General Public License
-# along with Serve0  If not, see <http://www.gnu.org/licenses/>.
-
-order=$(validate "${_POST[o]}" 'Name|Length|Date' Name)
-
-for fn in {0..9}; do
-  category="$(validate "${_POST[category$fn]}" '[[:alnum:]_-]+' none)"
-
-  n=''; while [ -n "${_POST[cfilter${fn}_$n]}" ]; do
-    #cfilter="$(validate "${_POST[cfilter${fn}_$n]}" '[[:alnum:]\?!\._=\(\)+-]+' '#')"
-    cfilter="${_POST[cfilter${fn}_$n]}"
-
-    if [ -z "$n" ]; then
-      [ -n "$filters" ] && filters="${filters}^"
-      [ "${_POST[type$fn]}" = 'neg' ] && filters="${filters}!"
-      n=0
-    else
-      filters="${filters}|"
-      n=$(($n + 1))
-    fi
-    [ "$category" = "none" ] && filters="${filters}${cfilter}" \
-                             || filters="${filters}${category}:${cfilter}"
-  done
-done
-
-printf %s\\n "?o=${order}&f=${filters}" >>${_DATA}/meta/recent
-redirect  "?o=${order}&f=${filters}"