From: paul Date: Sat, 14 Jan 2017 13:10:47 +0000 (+0000) Subject: obsoleted tree mode in favour of browse X-Git-Url: http://git.plutz.net/?p=serve0;a=commitdiff_plain;h=dd523d1f5dc7f9907d0f4fc07f9796dab9b22085 obsoleted tree mode in favour of browse svn path=/trunk/; revision=172 --- diff --git a/pages/tree.sh b/pages/tree.sh deleted file mode 100755 index 40a50cc..0000000 --- a/pages/tree.sh +++ /dev/null @@ -1,45 +0,0 @@ -#!/bin/zsh - -# Copyright 2014, 2015 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 . - -. $_EXEC/pages/common.sh - -directory="$(invalidate "${_GET[d]}" '(.*/)?\.\.(/.*)?|' /)" - -filelist(){ - debug "Filelist with dir = $directory" - - [ -n "${directory#/}" ] && printf %s ".." - - find -L "${treeroot%/}/${directory#/}" -mindepth 1 -maxdepth 1 -type d \ - | sort \ - | while read dir; do - name="${dir##*/}" - printf %s "$(htmlsafe "$name")" - done - - find -L "${treeroot%/}/${directory#/}" -mindepth 1 -maxdepth 1 -type f \ - | sort \ - | while read file; do - name="${file##*/}" - printf %s\\n "$name" |egrep -q "$file_pattern" && \ - printf %s "$(htmlsafe "$name")" \ - || printf %s "$(htmlsafe "$name")" - done -} - diff --git a/templates/tree.html.sh b/templates/tree.html.sh deleted file mode 100755 index 485bd19..0000000 --- a/templates/tree.html.sh +++ /dev/null @@ -1,59 +0,0 @@ -# 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 . - -cat < - - - - $(. $_EXEC/templates/preferences.html.sh) - - - - -
-
    - $(filelist) -
- $(. $_EXEC/templates/tagger.html.sh) -
- - - -EOF - -# vi:set filetype=html: