diff options
author | Andrew Pantyukhin <sat@FreeBSD.org> | 2007-04-09 09:07:58 +0000 |
---|---|---|
committer | Andrew Pantyukhin <sat@FreeBSD.org> | 2007-04-09 09:07:58 +0000 |
commit | 1d0ed1a69bd517627e602ac5791cf3b50b01ce80 (patch) | |
tree | 78b9ff528af13563d04255b5b101812d844fdfcd /ftp/horde-gollem | |
parent | 1d83b817cb289c20a6ced077596725053b197d22 (diff) | |
download | ports-1d0ed1a69bd517627e602ac5791cf3b50b01ce80.tar.gz ports-1d0ed1a69bd517627e602ac5791cf3b50b01ce80.zip |
Notes
Diffstat (limited to 'ftp/horde-gollem')
-rw-r--r-- | ftp/horde-gollem/Makefile | 61 | ||||
-rw-r--r-- | ftp/horde-gollem/files/httpd.conf.gollem | 27 | ||||
-rw-r--r-- | ftp/horde-gollem/files/pkg-deinstall.in | 24 | ||||
-rw-r--r-- | ftp/horde-gollem/files/pkg-install.in | 23 | ||||
-rw-r--r-- | ftp/horde-gollem/files/pkg-message.in | 8 | ||||
-rw-r--r-- | ftp/horde-gollem/pkg-plist | 325 |
6 files changed, 166 insertions, 302 deletions
diff --git a/ftp/horde-gollem/Makefile b/ftp/horde-gollem/Makefile index 04acace997cd..ed0172793a66 100644 --- a/ftp/horde-gollem/Makefile +++ b/ftp/horde-gollem/Makefile @@ -9,66 +9,13 @@ PORTNAME= gollem PORTVERSION= 1.0.2 PORTREVISION= 1 CATEGORIES= ftp www -MASTER_SITES= HORDE -DISTNAME= ${PORTNAME}-h3-${PORTVERSION} MAINTAINER= beech@alaskaparadise.com COMMENT= Gollem is the Horde web-based File Manager -RUN_DEPENDS= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde-base - -NO_BUILD= yes +USE_HORDE= base USE_GETTEXT= yes -USE_APACHE= 1.3+ # needed to test APACHE_VERSION - -PLIST_SUB= GOLLEMDIR=${LGOLLEMDIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} -PKGMESSAGE= ${WRKDIR}/pkg-message -PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -SUB_FILES= pkg-message pkg-install pkg-deinstall -SUB_LIST= GOLLEMDIR=${GOLLEMDIR} - -DOCS= README docs/CHANGES docs/CREDITS docs/INSTALL \ - docs/RELEASE_NOTES docs/TODO -CONFFILE= backends.php credentials.php menu.php mime_drivers.php motd.php \ - prefs.php -SUB_DIRS= config js lib locale po templates themes - -LHORDEDIR?= www/horde -LGOLLEMDIR?= ${LHORDEDIR}/gollem - -GOLLEMDIR= ${PREFIX}/${LGOLLEMDIR} -CONFDIR= ${GOLLEMDIR}/config - -.include <bsd.port.pre.mk> - -.if ${APACHE_VERSION} >= 20 -HORDE_INC= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/}/Includes -.else -HORDE_INC= ${LOCALBASE}/etc/horde -.endif - -pre-configure: - @${SED} -e "s:/home/httpd/html/horde/gollem:${GOLLEMDIR}:g" \ - ${FILESDIR}/httpd.conf.gollem > ${WRKDIR}/httpd-gollem.conf - -do-install: - @${MKDIR} ${GOLLEMDIR} - @${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${GOLLEMDIR} - @${CP} -p ${WRKSRC}/*.php ${GOLLEMDIR} - - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${GOLLEMDIR} - @${CHMOD} -R o-rwx ${CONFDIR} - @${INSTALL_DATA} ${WRKDIR}/httpd-gollem.conf ${HORDE_INC} -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - @${INSTALL_DATA} ${DOCS:S|^|${WRKSRC}/|} ${DOCSDIR} - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} +PORTDOCS= README CHANGES CREDITS INSTALL RELEASE_NOTES TODO -.include <bsd.port.post.mk> +.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" +.include <bsd.port.mk> diff --git a/ftp/horde-gollem/files/httpd.conf.gollem b/ftp/horde-gollem/files/httpd.conf.gollem deleted file mode 100644 index 1730fcd83411..000000000000 --- a/ftp/horde-gollem/files/httpd.conf.gollem +++ /dev/null @@ -1,27 +0,0 @@ -# This is included in Apache's httpd.conf for Gollem -# -# For security, don't serve pages from the Gollem configuration and -# library directories. -# -<Directory "/home/httpd/html/horde/gollem/config"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/gollem/lib"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/gollem/locale"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/gollem/po"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/gollem/templates"> - order deny,allow - deny from all -</Directory> -# End of Gollem configuration ================ - diff --git a/ftp/horde-gollem/files/pkg-deinstall.in b/ftp/horde-gollem/files/pkg-deinstall.in deleted file mode 100644 index 74ba43ea36c6..000000000000 --- a/ftp/horde-gollem/files/pkg-deinstall.in +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Backup Gollem config files, if needed. - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls %%GOLLEMDIR%%/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, delete it - rm -f $cf - ;; - 1) # config file has been updated, leave it alone - ;; - *) # not found? - ;; - esac - done -fi diff --git a/ftp/horde-gollem/files/pkg-install.in b/ftp/horde-gollem/files/pkg-install.in deleted file mode 100644 index 49c99fa99dee..000000000000 --- a/ftp/horde-gollem/files/pkg-install.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -case $2 in - PRE-INSTALL) - ;; - - POST-INSTALL) - if [ -z "${PACKAGE_BUILDING}" ]; then - # Copy over sample config files unless they already exist - - for cf in `ls %%GOLLEMDIR%%/config/*.dist | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.dist $cf - fi - done - fi - ;; -esac diff --git a/ftp/horde-gollem/files/pkg-message.in b/ftp/horde-gollem/files/pkg-message.in index db3eed4e83d1..0871bb817305 100644 --- a/ftp/horde-gollem/files/pkg-message.in +++ b/ftp/horde-gollem/files/pkg-message.in @@ -1,14 +1,12 @@ ************************************************************************ -Gollem has been installed in %%GOLLEMDIR%% with your blank +Gollem has been installed in %%HORDIR%% with your blank configuration files. -Horde must be configured; if not, see `pkg_info -D -x horde'. +Horde must be configured; if not, see `pkg_info -Dx horde-base'. Note: you have to configure an appropriate backend in -%%GOLLEMDIR%%/config/backends.php. +%%HORDIR%%/config/backends.php. Finally, you must login to Horde as a Horde Administrator to finish the configuration. - -To protect your configuration files, you have to restart Apache. ************************************************************************ diff --git a/ftp/horde-gollem/pkg-plist b/ftp/horde-gollem/pkg-plist index d8b0b444d027..0b06f2c49e41 100644 --- a/ftp/horde-gollem/pkg-plist +++ b/ftp/horde-gollem/pkg-plist @@ -1,166 +1,159 @@ -%%HORDE_INC%%/httpd-gollem.conf -%%GOLLEMDIR%%/clipboard.php -%%GOLLEMDIR%%/config/backends.php.dist -%%GOLLEMDIR%%/config/conf.xml -%%GOLLEMDIR%%/config/credentials.php.dist -%%GOLLEMDIR%%/config/menu.php.dist -%%GOLLEMDIR%%/config/mime_drivers.php.dist -%%GOLLEMDIR%%/config/motd.php.dist -%%GOLLEMDIR%%/config/prefs.php.dist -%%GOLLEMDIR%%/index.php -%%GOLLEMDIR%%/js/stripe.js -%%GOLLEMDIR%%/lib/Auth/gollem.php -%%GOLLEMDIR%%/lib/Block/tree_menu.php -%%GOLLEMDIR%%/lib/Gollem.php -%%GOLLEMDIR%%/lib/MIME/Viewer/images.php -%%GOLLEMDIR%%/lib/Session.php -%%GOLLEMDIR%%/lib/api.php -%%GOLLEMDIR%%/lib/base.php -%%GOLLEMDIR%%/lib/prefs.php -%%GOLLEMDIR%%/lib/version.php -%%GOLLEMDIR%%/locale/bg_BG/LC_MESSAGES/gollem.mo -%%GOLLEMDIR%%/locale/cs_CZ/LC_MESSAGES/gollem.mo -%%GOLLEMDIR%%/locale/da_DK/LC_MESSAGES/gollem.mo -%%GOLLEMDIR%%/locale/de_DE/LC_MESSAGES/gollem.mo -%%GOLLEMDIR%%/locale/en_US/help.xml -%%GOLLEMDIR%%/locale/es_ES/LC_MESSAGES/gollem.mo -%%GOLLEMDIR%%/locale/es_ES/help.xml -%%GOLLEMDIR%%/locale/fi_FI/LC_MESSAGES/gollem.mo -%%GOLLEMDIR%%/locale/fi_FI/help.xml -%%GOLLEMDIR%%/locale/fr_FR/LC_MESSAGES/gollem.mo -%%GOLLEMDIR%%/locale/hu_HU/LC_MESSAGES/gollem.mo -%%GOLLEMDIR%%/locale/hu_HU/help.xml -%%GOLLEMDIR%%/locale/it_IT/LC_MESSAGES/gollem.mo -%%GOLLEMDIR%%/locale/ko_KR/LC_MESSAGES/gollem.mo -%%GOLLEMDIR%%/locale/lv_LV/LC_MESSAGES/gollem.mo -%%GOLLEMDIR%%/locale/nl_NL/LC_MESSAGES/gollem.mo -%%GOLLEMDIR%%/locale/nn_NO/LC_MESSAGES/gollem.mo -%%GOLLEMDIR%%/locale/pl_PL/LC_MESSAGES/gollem.mo -%%GOLLEMDIR%%/locale/ro_RO/LC_MESSAGES/gollem.mo -%%GOLLEMDIR%%/locale/ru_RU/LC_MESSAGES/gollem.mo -%%GOLLEMDIR%%/locale/sv_SE/LC_MESSAGES/gollem.mo -%%GOLLEMDIR%%/locale/zh_TW/LC_MESSAGES/gollem.mo -%%GOLLEMDIR%%/locale/zh_TW/help.xml -%%GOLLEMDIR%%/login.php -%%GOLLEMDIR%%/manager.php -%%GOLLEMDIR%%/permissions.php -%%GOLLEMDIR%%/po/README -%%GOLLEMDIR%%/po/bg_BG.po -%%GOLLEMDIR%%/po/cs_CZ.po -%%GOLLEMDIR%%/po/da_DK.po -%%GOLLEMDIR%%/po/de_DE.po -%%GOLLEMDIR%%/po/es_ES.po -%%GOLLEMDIR%%/po/fi_FI.po -%%GOLLEMDIR%%/po/fr_FR.po -%%GOLLEMDIR%%/po/gollem.pot -%%GOLLEMDIR%%/po/hu_HU.po -%%GOLLEMDIR%%/po/it_IT.po -%%GOLLEMDIR%%/po/ko_KR.po -%%GOLLEMDIR%%/po/lv_LV.po -%%GOLLEMDIR%%/po/nl_NL.po -%%GOLLEMDIR%%/po/nn_NO.po -%%GOLLEMDIR%%/po/pl_PL.po -%%GOLLEMDIR%%/po/ro_RO.po -%%GOLLEMDIR%%/po/ru_RU.po -%%GOLLEMDIR%%/po/sv_SE.po -%%GOLLEMDIR%%/po/zh_TW.po -%%GOLLEMDIR%%/quota.php -%%GOLLEMDIR%%/redirect.php -%%GOLLEMDIR%%/selectlist.php -%%GOLLEMDIR%%/templates/clipboard/clipboard.html -%%GOLLEMDIR%%/templates/common-header.inc -%%GOLLEMDIR%%/templates/javascript/open_quota_win.js -%%GOLLEMDIR%%/templates/javascript/open_selectlist_win.js -%%GOLLEMDIR%%/templates/login/javascript.inc -%%GOLLEMDIR%%/templates/login/login.html -%%GOLLEMDIR%%/templates/manager/javascript.inc -%%GOLLEMDIR%%/templates/manager/manager.html -%%GOLLEMDIR%%/templates/menu.html -%%GOLLEMDIR%%/templates/prefs/columnselect.html -%%GOLLEMDIR%%/templates/prefs/columnselect.inc -%%GOLLEMDIR%%/templates/prefs/columnselect.js -%%GOLLEMDIR%%/templates/quota/quota.html -%%GOLLEMDIR%%/templates/selectlist/javascript.inc -%%GOLLEMDIR%%/templates/selectlist/selectlist.html -%%GOLLEMDIR%%/test.php -%%GOLLEMDIR%%/themes/brown/screen.css -%%GOLLEMDIR%%/themes/graphics/cd.png -%%GOLLEMDIR%%/themes/graphics/clipboard.png -%%GOLLEMDIR%%/themes/graphics/copy.png -%%GOLLEMDIR%%/themes/graphics/cut.png -%%GOLLEMDIR%%/themes/graphics/favicon.ico -%%GOLLEMDIR%%/themes/graphics/gollem.png -%%GOLLEMDIR%%/themes/graphics/home.png -%%GOLLEMDIR%%/themes/graphics/manager/folder.png -%%GOLLEMDIR%%/themes/graphics/manager/symlink.png -%%GOLLEMDIR%%/themes/graphics/mkdir.png -%%GOLLEMDIR%%/themes/purple/screen.css -%%GOLLEMDIR%%/themes/screen.css -%%GOLLEMDIR%%/view.php -%%PORTDOCS%%%%DOCSDIR%%/CHANGES -%%PORTDOCS%%%%DOCSDIR%%/CREDITS -%%PORTDOCS%%%%DOCSDIR%%/INSTALL -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES -%%PORTDOCS%%%%DOCSDIR%%/TODO -@dirrm %%GOLLEMDIR%%/themes/purple -@dirrm %%GOLLEMDIR%%/themes/graphics/manager -@dirrm %%GOLLEMDIR%%/themes/graphics -@dirrm %%GOLLEMDIR%%/themes/brown -@dirrm %%GOLLEMDIR%%/themes -@dirrm %%GOLLEMDIR%%/templates/selectlist -@dirrm %%GOLLEMDIR%%/templates/quota -@dirrm %%GOLLEMDIR%%/templates/prefs -@dirrm %%GOLLEMDIR%%/templates/manager -@dirrm %%GOLLEMDIR%%/templates/login -@dirrm %%GOLLEMDIR%%/templates/javascript -@dirrm %%GOLLEMDIR%%/templates/clipboard -@dirrm %%GOLLEMDIR%%/templates -@dirrm %%GOLLEMDIR%%/po -@dirrm %%GOLLEMDIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%GOLLEMDIR%%/locale/zh_TW -@dirrm %%GOLLEMDIR%%/locale/sv_SE/LC_MESSAGES -@dirrm %%GOLLEMDIR%%/locale/sv_SE -@dirrm %%GOLLEMDIR%%/locale/ru_RU/LC_MESSAGES -@dirrm %%GOLLEMDIR%%/locale/ru_RU -@dirrm %%GOLLEMDIR%%/locale/ro_RO/LC_MESSAGES -@dirrm %%GOLLEMDIR%%/locale/ro_RO -@dirrm %%GOLLEMDIR%%/locale/pl_PL/LC_MESSAGES -@dirrm %%GOLLEMDIR%%/locale/pl_PL -@dirrm %%GOLLEMDIR%%/locale/nn_NO/LC_MESSAGES -@dirrm %%GOLLEMDIR%%/locale/nn_NO -@dirrm %%GOLLEMDIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%GOLLEMDIR%%/locale/nl_NL -@dirrm %%GOLLEMDIR%%/locale/lv_LV/LC_MESSAGES -@dirrm %%GOLLEMDIR%%/locale/lv_LV -@dirrm %%GOLLEMDIR%%/locale/ko_KR/LC_MESSAGES -@dirrm %%GOLLEMDIR%%/locale/ko_KR -@dirrm %%GOLLEMDIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%GOLLEMDIR%%/locale/it_IT -@dirrm %%GOLLEMDIR%%/locale/hu_HU/LC_MESSAGES -@dirrm %%GOLLEMDIR%%/locale/hu_HU -@dirrm %%GOLLEMDIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%GOLLEMDIR%%/locale/fr_FR -@dirrm %%GOLLEMDIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%GOLLEMDIR%%/locale/fi_FI -@dirrm %%GOLLEMDIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%GOLLEMDIR%%/locale/es_ES -@dirrm %%GOLLEMDIR%%/locale/en_US -@dirrm %%GOLLEMDIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%GOLLEMDIR%%/locale/de_DE -@dirrm %%GOLLEMDIR%%/locale/da_DK/LC_MESSAGES -@dirrm %%GOLLEMDIR%%/locale/da_DK -@dirrm %%GOLLEMDIR%%/locale/cs_CZ/LC_MESSAGES -@dirrm %%GOLLEMDIR%%/locale/cs_CZ -@dirrm %%GOLLEMDIR%%/locale/bg_BG/LC_MESSAGES -@dirrm %%GOLLEMDIR%%/locale/bg_BG -@dirrm %%GOLLEMDIR%%/locale -@dirrm %%GOLLEMDIR%%/lib/MIME/Viewer -@dirrm %%GOLLEMDIR%%/lib/MIME -@dirrm %%GOLLEMDIR%%/lib/Block -@dirrm %%GOLLEMDIR%%/lib/Auth -@dirrm %%GOLLEMDIR%%/lib -@dirrm %%GOLLEMDIR%%/js -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrmtry %%GOLLEMDIR%%/config -@dirrmtry %%GOLLEMDIR%% +%%HORDIR%%/clipboard.php +%%HORDIR%%/config/backends.php.dist +%%HORDIR%%/config/conf.xml +%%HORDIR%%/config/credentials.php.dist +%%HORDIR%%/config/menu.php.dist +%%HORDIR%%/config/mime_drivers.php.dist +%%HORDIR%%/config/motd.php.dist +%%HORDIR%%/config/prefs.php.dist +%%HORDIR%%/index.php +%%HORDIR%%/js/stripe.js +%%HORDIR%%/lib/Auth/gollem.php +%%HORDIR%%/lib/Block/tree_menu.php +%%HORDIR%%/lib/Gollem.php +%%HORDIR%%/lib/MIME/Viewer/images.php +%%HORDIR%%/lib/Session.php +%%HORDIR%%/lib/api.php +%%HORDIR%%/lib/base.php +%%HORDIR%%/lib/prefs.php +%%HORDIR%%/lib/version.php +%%HORDIR%%/locale/bg_BG/LC_MESSAGES/gollem.mo +%%HORDIR%%/locale/cs_CZ/LC_MESSAGES/gollem.mo +%%HORDIR%%/locale/da_DK/LC_MESSAGES/gollem.mo +%%HORDIR%%/locale/de_DE/LC_MESSAGES/gollem.mo +%%HORDIR%%/locale/en_US/help.xml +%%HORDIR%%/locale/es_ES/LC_MESSAGES/gollem.mo +%%HORDIR%%/locale/es_ES/help.xml +%%HORDIR%%/locale/fi_FI/LC_MESSAGES/gollem.mo +%%HORDIR%%/locale/fi_FI/help.xml +%%HORDIR%%/locale/fr_FR/LC_MESSAGES/gollem.mo +%%HORDIR%%/locale/hu_HU/LC_MESSAGES/gollem.mo +%%HORDIR%%/locale/hu_HU/help.xml +%%HORDIR%%/locale/it_IT/LC_MESSAGES/gollem.mo +%%HORDIR%%/locale/ko_KR/LC_MESSAGES/gollem.mo +%%HORDIR%%/locale/lv_LV/LC_MESSAGES/gollem.mo +%%HORDIR%%/locale/nl_NL/LC_MESSAGES/gollem.mo +%%HORDIR%%/locale/nn_NO/LC_MESSAGES/gollem.mo +%%HORDIR%%/locale/pl_PL/LC_MESSAGES/gollem.mo +%%HORDIR%%/locale/ro_RO/LC_MESSAGES/gollem.mo +%%HORDIR%%/locale/ru_RU/LC_MESSAGES/gollem.mo +%%HORDIR%%/locale/sv_SE/LC_MESSAGES/gollem.mo +%%HORDIR%%/locale/zh_TW/LC_MESSAGES/gollem.mo +%%HORDIR%%/locale/zh_TW/help.xml +%%HORDIR%%/login.php +%%HORDIR%%/manager.php +%%HORDIR%%/permissions.php +%%HORDIR%%/po/README +%%HORDIR%%/po/bg_BG.po +%%HORDIR%%/po/cs_CZ.po +%%HORDIR%%/po/da_DK.po +%%HORDIR%%/po/de_DE.po +%%HORDIR%%/po/es_ES.po +%%HORDIR%%/po/fi_FI.po +%%HORDIR%%/po/fr_FR.po +%%HORDIR%%/po/gollem.pot +%%HORDIR%%/po/hu_HU.po +%%HORDIR%%/po/it_IT.po +%%HORDIR%%/po/ko_KR.po +%%HORDIR%%/po/lv_LV.po +%%HORDIR%%/po/nl_NL.po +%%HORDIR%%/po/nn_NO.po +%%HORDIR%%/po/pl_PL.po +%%HORDIR%%/po/ro_RO.po +%%HORDIR%%/po/ru_RU.po +%%HORDIR%%/po/sv_SE.po +%%HORDIR%%/po/zh_TW.po +%%HORDIR%%/quota.php +%%HORDIR%%/redirect.php +%%HORDIR%%/selectlist.php +%%HORDIR%%/templates/clipboard/clipboard.html +%%HORDIR%%/templates/common-header.inc +%%HORDIR%%/templates/javascript/open_quota_win.js +%%HORDIR%%/templates/javascript/open_selectlist_win.js +%%HORDIR%%/templates/login/javascript.inc +%%HORDIR%%/templates/login/login.html +%%HORDIR%%/templates/manager/javascript.inc +%%HORDIR%%/templates/manager/manager.html +%%HORDIR%%/templates/menu.html +%%HORDIR%%/templates/prefs/columnselect.html +%%HORDIR%%/templates/prefs/columnselect.inc +%%HORDIR%%/templates/prefs/columnselect.js +%%HORDIR%%/templates/quota/quota.html +%%HORDIR%%/templates/selectlist/javascript.inc +%%HORDIR%%/templates/selectlist/selectlist.html +%%HORDIR%%/test.php +%%HORDIR%%/themes/brown/screen.css +%%HORDIR%%/themes/graphics/cd.png +%%HORDIR%%/themes/graphics/clipboard.png +%%HORDIR%%/themes/graphics/copy.png +%%HORDIR%%/themes/graphics/cut.png +%%HORDIR%%/themes/graphics/favicon.ico +%%HORDIR%%/themes/graphics/gollem.png +%%HORDIR%%/themes/graphics/home.png +%%HORDIR%%/themes/graphics/manager/folder.png +%%HORDIR%%/themes/graphics/manager/symlink.png +%%HORDIR%%/themes/graphics/mkdir.png +%%HORDIR%%/themes/purple/screen.css +%%HORDIR%%/themes/screen.css +%%HORDIR%%/view.php +@dirrmtry %%HORDIR%%/config +@dirrm %%HORDIR%%/js +@dirrm %%HORDIR%%/lib/Auth +@dirrm %%HORDIR%%/lib/Block +@dirrm %%HORDIR%%/lib/MIME/Viewer +@dirrm %%HORDIR%%/lib/MIME +@dirrm %%HORDIR%%/lib +@dirrm %%HORDIR%%/locale/bg_BG/LC_MESSAGES +@dirrm %%HORDIR%%/locale/bg_BG +@dirrm %%HORDIR%%/locale/cs_CZ/LC_MESSAGES +@dirrm %%HORDIR%%/locale/cs_CZ +@dirrm %%HORDIR%%/locale/da_DK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/da_DK +@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/de_DE +@dirrm %%HORDIR%%/locale/en_US +@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/es_ES +@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fi_FI +@dirrm %%HORDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fr_FR +@dirrm %%HORDIR%%/locale/hu_HU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/hu_HU +@dirrm %%HORDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/it_IT +@dirrm %%HORDIR%%/locale/ko_KR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ko_KR +@dirrm %%HORDIR%%/locale/lv_LV/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lv_LV +@dirrm %%HORDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nl_NL +@dirrm %%HORDIR%%/locale/nn_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nn_NO +@dirrm %%HORDIR%%/locale/pl_PL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pl_PL +@dirrm %%HORDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ro_RO +@dirrm %%HORDIR%%/locale/ru_RU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ru_RU +@dirrm %%HORDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sv_SE +@dirrm %%HORDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_TW +@dirrm %%HORDIR%%/locale +@dirrm %%HORDIR%%/po +@dirrm %%HORDIR%%/templates/clipboard +@dirrm %%HORDIR%%/templates/javascript +@dirrm %%HORDIR%%/templates/login +@dirrm %%HORDIR%%/templates/manager +@dirrm %%HORDIR%%/templates/prefs +@dirrm %%HORDIR%%/templates/quota +@dirrm %%HORDIR%%/templates/selectlist +@dirrm %%HORDIR%%/templates +@dirrm %%HORDIR%%/themes/brown +@dirrm %%HORDIR%%/themes/graphics/manager +@dirrm %%HORDIR%%/themes/graphics +@dirrm %%HORDIR%%/themes/purple +@dirrm %%HORDIR%%/themes +@dirrmtry %%HORDIR%% +@dirrmtry %%HORBAS%% |