diff options
author | Thierry Thomas <thierry@FreeBSD.org> | 2004-12-26 10:22:58 +0000 |
---|---|---|
committer | Thierry Thomas <thierry@FreeBSD.org> | 2004-12-26 10:22:58 +0000 |
commit | de68a058bfd96eec3e7101d045e39163958bbb96 (patch) | |
tree | 5a2ac484713fde967c89c6400d0cbed39573f2e1 /www | |
parent | 799d98ac2d47e04c294133f7e7f32ac463a1c880 (diff) | |
download | ports-de68a058bfd96eec3e7101d045e39163958bbb96.tar.gz ports-de68a058bfd96eec3e7101d045e39163958bbb96.zip |
Notes
Diffstat (limited to 'www')
33 files changed, 7080 insertions, 0 deletions
diff --git a/www/horde-base/Makefile b/www/horde-base/Makefile new file mode 100644 index 000000000000..af93b6b1ebbc --- /dev/null +++ b/www/horde-base/Makefile @@ -0,0 +1,343 @@ +# Ports collection makefile for: horde2 +# Date created: Sun Oct 07, 2001 +# Whom: Thierry Thomas (<thierry@thomas.as>) +# +# $FreeBSD$ +# + +PORTNAME= horde +PORTVERSION= 3.0 +CATEGORIES= www +MASTER_SITES= ftp://ftp.horde.org/pub/horde/ \ + ftp://ftp.planetmirror.com/pub/horde/horde/ \ + ftp://ftp.au.horde.org/pub/horde/horde/ \ + ftp://ftp.be.horde.org/horde/ \ + ftp://ftp.es.horde.org/pub/horde/ \ + ftp://ftp.it.horde.org/pub/mirror/horde.org/horde/ \ + ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/horde/ \ + ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/horde/ \ + http://ftp.horde.org/pub/horde/ +.if defined(WITH_PHP5) +PKGNAMESUFFIX= -php5 +.endif + +MAINTAINER= thierry@FreeBSD.org +COMMENT= A common code-base used by Horde applications, written in PHP + +#---------------------------------------------------------------------------- +# You may define these options: +# +# - WITH_APACHE2: if you run Apache2. +# +# - WITH_PHP5: if you run PHP5 (you could use www/horde-php5). +# +# - WITHOUT_SUPPORTED_DB: if you run a database not in the ports tree. +# +# - WITHOUT_MYSQL: this port is built with MySQL by default +# but you might choose any other database +# supported by PHP (e.g. WITH_POSTGRESQL). +# +# - WITHOUT_IMAP: this port uses IMAP as a default authentication +# backend; use this knob if for +# example you only need Chora. +# +# - WITHOUT_LDAP: if you do not need OpenLDAP. +# +# - WITHOUT_FTP: if you do not need the VFS FTP driver. +# +# - WITHOUT_MCAL: if you don't plan to install Kronolith. +# +# - WITH_IMSP: use IMSP as a preferences backend. +# +# - WITHOUT_FILEINFO: use native code to perform MIME magic lookups. +# +# - WITHOUT_GD: don't perform manipulations on image data with gd. +# +# - WITHOUT_ZLIB: don't compress pages and don't handle zip or gz data. +# +# - WITH_MAGICK: use ImageMagick to perform these image manipulations. +# +# - WITHOUT_ICONV: remove support for UTF-8 character sets. +# - WITHOUT_MBSTRING: +# +# - WITHOUT_WV if your users never receive MS-Word docs; +# +# - WITHOUT_XL if your users never receive MS-Excel sheets +# (or .ppt presentations); +# +# - WITHOUT_GEOIP don't activate MaxMind GeoIP Hostname to Country lookup. +# +# - WITHOUT_SW don't use the weather.com block on the portal page. +# +# - WITHOUT_WEBCPP: don't highlight sources with webcpp. +# +# - WITH_SRCHIGH: highlight sources with source-highlight. +# +# - WITH_ENSCRIPT: highlight sources with enscript. +# +# - WITH_RPM: handle RPM packages. +# +# - WITH_DEB: handle Debian packages. +# +#---------------------------------------------------------------------------- + +RUN_DEPENDS+= ${PEARDIR}/Date.php:${PORTSDIR}/devel/pear-Date \ + ${PEARDIR}/Log.php:${PORTSDIR}/sysutils/pear-Log \ + ${PEARDIR}/Mail/mime.php:${PORTSDIR}/mail/pear-Mail_Mime \ + ${PEARDIR}/DB.php:${PORTSDIR}/databases/pear-DB \ + ${PEARDIR}/File.php:${PORTSDIR}/sysutils/pear-File \ + ${PEARDIR}/Net/SMTP.php:${PORTSDIR}/net/pear-Net_SMTP + +CONFLICTS= horde-2.* + +NO_BUILD= yes +USE_PHP= ctype gettext session +WANT_PHP_MOD= yes +USE_REINPLACE= yes +PKGMESSAGE= ${WRKDIR}/pkg-message + +.if !defined(WITHOUT_FILEINFO) +USE_PHP+= fileinfo +.endif +.if !defined(WITHOUT_FTP) +USE_PHP+= ftp +.endif +.if !defined(WITHOUT_GD) +USE_PHP+= gd +.endif +.if !defined(WITHOUT_ICONV) +USE_PHP+= iconv +.endif +.if !defined(WITHOUT_IMAP) +USE_PHP+= imap +.endif +.if !defined(WITHOUT_LDAP) +USE_PHP+= ldap +.endif +.if !defined(WITHOUT_MBSTRING) +USE_PHP+= mbstring +.endif +.if !defined(NOCRYPT) +USE_PHP+= mcrypt +.endif +.if !defined(WITHOUT_SUPPORTED_DB) +. if !defined(WITHOUT_MYSQL) +USE_PHP+= mysql +. endif +. if defined(WITH_POSTGRESQL) +USE_PHP+= pgsql +. endif +.endif +.if !defined(WITHOUT_ZLIB) +USE_PHP+= zlib +.endif +.if defined(WITH_MAGICK) +RUN_DEPENDS+= convert:${PORTSDIR}/graphics/ImageMagick +.endif +.if defined(WITH_IMSP) +RUN_DEPENDS+= imspd:${PORTSDIR}/databases/cyrus-imspd +.endif + +.if !defined(WITHOUT_X11) +. if !defined(WITHOUT_WV) +RUN_DEPENDS+= ${LOCALBASE}/bin/wvHtml:${PORTSDIR}/textproc/wv +. endif +. if !defined(WITHOUT_XL) +RUN_DEPENDS+= ${LOCALBASE}/bin/xlhtml:${PORTSDIR}/textproc/xlhtml +. endif +.endif + +.if !defined(WITHOUT_WEBCPP) +RUN_DEPENDS+= webcpp:${PORTSDIR}/textproc/webcpp +.endif + +.if exists(${LOCALBASE}/bin/source-highlight) +WITH_SRCHIGH= yes +.endif +.if defined(WITH_SRCHIGH) +RUN_DEPENDS+= source-highlight:${PORTSDIR}/textproc/source-highlight +.endif + +.if exists(${LOCALBASE}/bin/enscript) +WITH_ENSCRIPT= yes +.endif +.if defined(WITH_ENSCRIPT) +. if defined(A4) +RUN_DEPENDS+= enscript:${PORTSDIR}/print/enscript-a4 +. elif defined(DJ) +RUN_DEPENDS+= enscript:${PORTSDIR}/print/enscript-letterdj +. else +RUN_DEPENDS+= enscript:${PORTSDIR}/print/enscript-letter +. endif +.endif + +.if exists(${LOCALBASE}/bin/rpm) +WITH_RPM= yes +.endif +.if defined(WITH_RPM) +RUN_DEPENDS+= rpm:${PORTSDIR}/archivers/rpm4 +.endif + +.if exists(${LOCALBASE}/bin/dpkg) +WITH_DEB= yes +.endif +.if defined(WITH_DEB) +RUN_DEPENDS+= dpkg:${PORTSDIR}/archivers/dpkg +.endif + +.if !defined(WITHOUT_SW) +RUN_DEPENDS+= ${PEARDIR}/Services/Weather.php:${PORTSDIR}/misc/pear-Services_Weather +.endif + +.if !defined(WITHOUT_GEOIP) +RUN_DEPENDS+= ${LOCALBASE}/share/GeoIP/GeoIP.dat:${PORTSDIR}/net/GeoIP +.endif + +REINPLACE_ARGS= -i.beforeHorde +DOCS= COPYING README docs/CHANGES docs/CODING_STANDARDS \ + docs/CONTRIBUTING docs/CREDITS docs/HACKING docs/INSTALL \ + docs/PERFORMANCE docs/RELEASE docs/RELEASE_NOTES docs/SECURITY \ + docs/TODO docs/TRANSLATIONS docs/UPGRADING +CONFFILE= conf.php mime_drivers.php motd.php nls.php prefs.php registry.php +SUB_DIRS= admin config js lib locale po scripts services templates themes util + +LHORDEDIR?= www/horde +LHORDESBIN?= sbin + +PLIST_SUB= HORDEDIR=${LHORDEDIR} HORDESBIN=${LHORDESBIN} + +HORDEDIR= ${PREFIX}/${LHORDEDIR} +HORDESBIN= ${PREFIX}/${LHORDESBIN} +CONFDIR= ${HORDEDIR}/config + +APACHE_CONF= ${APACHE_CNFDIR}/httpd.conf +PEARDIR?= ${LOCALBASE}/share/pear +.if defined(WITH_APACHE2) +APACHE_CNFDIR= ${LOCALBASE}/etc/apache2 +.else +APACHE_CNFDIR= ${LOCALBASE}/etc/apache +.endif +HORDE_INC= ${PREFIX}/etc/horde +LOG_FILE?= /var/log/horde.log + +.if defined(WITH_PHP5) +USE_PHP+= dom +.else +USE_PHP+= domxml +. if !defined(WITHOUT_MCAL) +USE_PHP+= mcal +. endif +.endif + +.include <bsd.port.pre.mk> # Required to test PHP_VER + +pre-configure: + @${RM} ${WRKSRC}/po/translation.php.orig \ + ${WRKSRC}/config/conf.xml.orig \ + ${WRKSRC}/scripts/sql/README.orig \ + ${WRKSRC}/config/mime_drivers.php.dist.orig + @${SED} -e "s:/home/httpd/html/horde:${HORDEDIR}:" \ + -e "s:php_value auto_prepend_file:# php_value auto_prepend_file:" \ + -e "s:/home/httpd/phplib:${PEARDIR}:" \ + ${FILESDIR}/httpd.conf.horde > ${WRKDIR}/httpd.conf.horde +.if ${PHP_VER} == 5 + @${REINPLACE_CMD} -e "s:mod_php4.c:mod_php5.c:" ${WRKDIR}/httpd.conf.horde +.endif + @${REINPLACE_CMD} -e "s:%%LOCALBASE%%:${LOCALBASE}:" ${WRKSRC}/config/mime_drivers.php.dist +.if !defined(WITHOUT_X11) +. if !defined(WITHOUT_WV) + @${REINPLACE_CMD} -e "s://UNCOMMENTIFWV::" ${WRKSRC}/config/mime_drivers.php.dist +. endif +. if !defined(WITHOUT_XL) + @${REINPLACE_CMD} -e "s://UNCOMMENTIFXL::" ${WRKSRC}/config/mime_drivers.php.dist +. endif +.endif +.if !defined(WITHOUT_WEBCPP) + @${REINPLACE_CMD} -e "s://UNCOMMENTIFWCPP::" ${WRKSRC}/config/mime_drivers.php.dist +.endif +.if defined(WITH_SRCHIGH) + @${REINPLACE_CMD} -e "s://UNCOMMENTIFSRCHIGH::" ${WRKSRC}/config/mime_drivers.php.dist +.endif +.if defined(WITH_ENSCRIPT) + @${REINPLACE_CMD} -e "s://UNCOMMENTIFES::" ${WRKSRC}/config/mime_drivers.php.dist +.endif +.if defined(WITH_RPM) + @${REINPLACE_CMD} -e "s://UNCOMMENTIFRPM::" ${WRKSRC}/config/mime_drivers.php.dist +.endif +.if defined(WITH_DEB) + @${REINPLACE_CMD} -e "s://UNCOMMENTIFDEB::" ${WRKSRC}/config/mime_drivers.php.dist +.endif +.if !defined(WITHOUT_GEOIP) + @${REINPLACE_CMD} -e "s:GeoIP lookup will not be performed.\"/>:GeoIP lookup will not be performed.\">${LOCALBASE}/share/GeoIP/GeoIP.dat</configstring>:" \ + ${WRKSRC}/config/conf.xml +.endif + @${REINPLACE_CMD} -e "s:/tmp/horde.log:${LOG_FILE}:" ${WRKSRC}/config/conf.xml + @${REINPLACE_CMD} -e "s:/etc/mpasswd:${LOCALBASE}/etc/mpasswd:g" \ + ${WRKSRC}/lib/Horde/Auth/mcal.php + @${REINPLACE_CMD} -e "s:/usr/local/apache/htdocs:${PREFIX}/www:g" \ + ${WRKSRC}/docs/INSTALL + @${RM} ${WRKSRC}/lib/Horde/Auth/mcal.php.beforeHorde \ + ${WRKSRC}/config/conf.xml.beforeHorde \ + ${WRKSRC}/config/mime_drivers.php.dist.beforeHorde \ + ${WRKSRC}/docs/INSTALL.beforeHorde + +pre-install: +.if !defined(WITHOUT_SUPPORTED_DB) + @if ! php -m | ${GREP} -q -e "mysql" ; then \ + if ! php -m | ${GREP} -q -e "pgsql" ; then \ + if ! php -m | ${GREP} -q -e "sybase" ; then \ + ${ECHO_MSG} "" ; \ + ${ECHO_MSG} "Please configure PHP with a database support." ; \ + ${ECHO_MSG} "MySQL, PostgreSQL and Sybase (CTLIB or DBLIB)" ; \ + ${ECHO_MSG} "can be used with PHP AND Horde." ; \ + ${ECHO_MSG} "" ; \ + ${ECHO_MSG} "(If everything will run on this machine, do not" ; \ + ${ECHO_MSG} " forget to install the database server-side!)" ; \ + ${ECHO_MSG} "" ; \ + ${FALSE} ; \ + fi ; \ + fi ; \ + fi +.endif + +do-install: + @${MKDIR} ${HORDEDIR} +.for REP in ${SUB_DIRS} + @${CP} -Rp ${WRKSRC}/${REP} ${HORDEDIR} +.endfor + @${CP} -p ${WRKSRC}/*.php ${HORDEDIR} +.for FILE in ${CONFFILE} + @if [ ! -f ${CONFDIR}/${FILE} ]; then \ + ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ + fi +.endfor + @${CP} ${WRKSRC}/scripts/set_perms.sh ${HORDESBIN}/horde_set_perms.sh + @${CHMOD} u+x ${HORDESBIN}/horde_set_perms.sh + @${MKDIR} ${HORDE_INC} + @${INSTALL_DATA} ${WRKDIR}/httpd.conf.horde ${HORDE_INC} + @(if [ -f ${APACHE_CONF} ] ; then \ + ${ECHO_MSG} "===> Updating ${APACHE_CONF}..." ; \ + ${ECHO_CMD} "# Horde's include directory" >> ${APACHE_CONF} ; \ + ${ECHO_CMD} "Include ${HORDE_INC}" >> ${APACHE_CONF} ; \ + fi) + @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${HORDEDIR} + @${CHMOD} -R o-rwx ${CONFDIR} + @${TOUCH} ${LOG_FILE} + @${CHOWN} ${WWWOWN}:${WWWGRP} ${LOG_FILE} +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} +.for FILE in ${DOCS} + @${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR} +.endfor + @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." +.endif + +post-install: + @${SED} -e "s:%%HORDEDIR%%:${HORDEDIR}:g;s:%%APACHE_CONF%%:${APACHE_CONF}:g" \ + -e "s:%%HORDESBIN%%:${HORDESBIN}:;s:%%DOCSDIR%%:${DOCSDIR}:" \ + ${FILESDIR}/pkg-message.in > ${PKGMESSAGE} + @${ECHO_MSG} + @${CAT} ${PKGMESSAGE} + @${ECHO_MSG} + +.include <bsd.port.post.mk> diff --git a/www/horde-base/distinfo b/www/horde-base/distinfo new file mode 100644 index 000000000000..ff1486286d73 --- /dev/null +++ b/www/horde-base/distinfo @@ -0,0 +1,2 @@ +MD5 (horde-3.0.tar.gz) = afe2a76062169cf5cd2cc5a3001fcc6a +SIZE (horde-3.0.tar.gz) = 3113591 diff --git a/www/horde-base/files/httpd.conf.horde b/www/horde-base/files/httpd.conf.horde new file mode 100644 index 000000000000..0bd4b621c52b --- /dev/null +++ b/www/horde-base/files/httpd.conf.horde @@ -0,0 +1,57 @@ +# This is included in Apache's httpd.conf for Horde + +<Directory /home/httpd/html/horde> + Options Indexes FollowSymLinks + AllowOverride None + order allow,deny + allow from all + <IfModule mod_php4.c> + php_value include_path '/home/httpd/phplib:.' + php_flag register_globals On + php_flag magic_quotes_gpc Off + php_flag track_vars On + php_value memory_limit 16M + </IfModule> +</Directory> + +<IfModule mod_alias.c> + Alias /horde/ "/home/httpd/html/horde/" +</IfModule> +# +# For security, don't serve pages from the Horde configuration and library +# directories. +# +#<Directory "/home/httpd/html/horde/admin"> +# Order deny,allow +# Deny from all +#</Directory> +<Directory "/home/httpd/html/horde/config"> + Order deny,allow + Deny from all +</Directory> +<Directory "/home/httpd/html/horde/lib"> + Order deny,allow + Deny from all +</Directory> +<Directory "/home/httpd/html/horde/locale"> + Order deny,allow + Deny from all +</Directory> +<Directory "/home/httpd/html/horde/po"> + Order deny,allow + Deny from all +</Directory> +<Directory "/home/httpd/html/horde/scripts"> + Order deny,allow + Deny from all +</Directory> +<Directory "/home/httpd/html/horde/templates"> + Order deny,allow + Deny from all +</Directory> +<Directory "/home/httpd/html/horde/util"> + Order deny,allow + Deny from all +</Directory> +# End of Horde configuration ================ + diff --git a/www/horde-base/files/patch-config_conf.xml b/www/horde-base/files/patch-config_conf.xml new file mode 100644 index 000000000000..56f6f6a346f7 --- /dev/null +++ b/www/horde-base/files/patch-config_conf.xml @@ -0,0 +1,20 @@ +--- config/conf.xml.orig Fri Nov 5 10:54:09 2004 ++++ config/conf.xml Sat Nov 27 23:20:31 2004 +@@ -276,7 +276,7 @@ + + <case name="login" desc="Login (su) authentication"> + <configsection name="params"> +- <configstring name="location" desc="Location of the su binary">/bin/su</configstring> ++ <configstring name="location" desc="Location of the su binary">/usr/bin/su</configstring> + </configsection> + </case> + +@@ -932,7 +932,7 @@ + <configsection name="params"> + <configstring name="sendmail_path" required="false" desc="The location + of the sendmail binary on the filesystem +- [/usr/sbin/sendmail]">/usr/lib/sendmail</configstring> ++ [/usr/sbin/sendmail]">/usr/sbin/sendmail</configstring> + <configstring name="sendmail_args" required="false" desc="Any extra + parameters to pass to the sendmail or sendmail wrapper + binary">-oi</configstring> diff --git a/www/horde-base/files/patch-config_mime_drivers.php.dist b/www/horde-base/files/patch-config_mime_drivers.php.dist new file mode 100644 index 000000000000..b0417103aace --- /dev/null +++ b/www/horde-base/files/patch-config_mime_drivers.php.dist @@ -0,0 +1,250 @@ +--- config/mime_drivers.php.dist.orig Fri Nov 19 03:40:31 2004 ++++ config/mime_drivers.php.dist Thu Nov 25 21:58:43 2004 +@@ -37,10 +37,20 @@ + * zip Zip files + */ + $mime_drivers_map['horde']['registered'] = array( +- 'css', 'deb', 'enriched', 'enscript', 'html', 'images', 'msword', 'msexcel', +- 'mspowerpoint', 'ooo', 'pdf', 'php', 'plain', 'rar', 'report', +- 'richtext', 'rpm', 'security', 'simple', 'srchighlite', 'tgz', 'tnef', +- 'vcard', 'webcpp', 'zip'); ++ 'css' ++//UNCOMMENTIFDEB , 'deb' ++ , 'enriched' ++//UNCOMMENTIFES , 'enscript' ++ , 'html', 'images' ++//UNCOMMENTIFWV , 'msword' ++//UNCOMMENTIFXL , 'msexcel', 'mspowerpoint' ++ , 'ooo', 'pdf', 'php', 'plain', 'rar', 'report', 'richtext' ++//UNCOMMENTIFRPM , 'rpm' ++ , 'security', 'simple' ++//UNCOMMENTIFSRCHIGH , 'srchighlite' ++ , 'tgz', 'tnef', 'vcard' ++//UNCOMMENTIFWCPP , 'webcpp' ++ , 'zip'); + + + /** +@@ -161,66 +171,66 @@ + * Web C Plus Plus driver settings + * http://webcpp.sourceforge.net/ + */ +-$mime_drivers['horde']['webcpp']['location'] = 'C:\Program Files\Jeffrey Bakker\webcpp\webcpp.exe'; +-$mime_drivers['horde']['webcpp']['inline'] = true; +-$mime_drivers['horde']['webcpp']['handles'] = array( +- 'text/xml', 'text/sgml', 'application/xml', +- 'application/x-sh', 'application/x-javascript', 'application/x-tcl', +- 'x-extension/asm', 'application/x-asp', 'x-extension/bas', +- 'x-extension/cs', 'text/x-csrc', 'x-extension/rc', +- 'text/x-c++src', 'text/x-c++src', 'text/x-c++src', +- 'text/x-chdr', 'x-extension/bat', 'text/x-fortran', +- 'x-extension/f77', 'x-extension/f90', 'x-extension/for', +- 'x-extension/ftn', 'text/x-java', 'application/x-javascript', +- 'text/sgml', 'text/xml', 'text/x-pascal', +- 'application/x-cgi', 'application/x-perl', 'application/x-python', +- 'text/x-sql', 'text/x-tcl', +- 'application/x-shellscript', 'x-extension/vhd', 'x-extension/vhdl'); +-$mime_drivers['horde']['webcpp']['icons'] = array( +- 'default' => 'text.png', +- 'text/xml' => 'xml.png', +- 'text/x-csrc' => 'source-c.png', +- 'text/x-chdr' => 'source-h.png', +- 'text/x-java' => 'source-java.png', +- 'application/x-javascript' => 'script-js.png'); ++//UNCOMMENTIFWCPP$mime_drivers['horde']['webcpp']['location'] = '%%LOCALBASE%%/bin/webcpp'; ++//UNCOMMENTIFWCPP$mime_drivers['horde']['webcpp']['inline'] = true; ++//UNCOMMENTIFWCPP$mime_drivers['horde']['webcpp']['handles'] = array( ++//UNCOMMENTIFWCPP 'text/xml', 'text/sgml', 'application/xml', ++//UNCOMMENTIFWCPP 'application/x-sh', 'application/x-javascript', 'application/x-tcl', ++//UNCOMMENTIFWCPP 'x-extension/asm', 'application/x-asp', 'x-extension/bas', ++//UNCOMMENTIFWCPP 'x-extension/cs', 'text/x-csrc', 'x-extension/rc', ++//UNCOMMENTIFWCPP 'text/x-c++src', 'text/x-c++src', 'text/x-c++src', ++//UNCOMMENTIFWCPP 'text/x-chdr', 'x-extension/bat', 'text/x-fortran', ++//UNCOMMENTIFWCPP 'x-extension/f77', 'x-extension/f90', 'x-extension/for', ++//UNCOMMENTIFWCPP 'x-extension/ftn', 'text/x-java', 'application/x-javascript', ++//UNCOMMENTIFWCPP 'text/sgml', 'text/xml', 'text/x-pascal', ++//UNCOMMENTIFWCPP 'application/x-cgi', 'application/x-perl', 'application/x-python', ++//UNCOMMENTIFWCPP 'text/x-sql', 'text/x-tcl', ++//UNCOMMENTIFWCPP 'application/x-shellscript', 'x-extension/vhd', 'x-extension/vhdl'); ++//UNCOMMENTIFWCPP$mime_drivers['horde']['webcpp']['icons'] = array( ++//UNCOMMENTIFWCPP 'default' => 'text.png', ++//UNCOMMENTIFWCPP 'text/xml' => 'xml.png', ++//UNCOMMENTIFWCPP 'text/x-csrc' => 'source-c.png', ++//UNCOMMENTIFWCPP 'text/x-chdr' => 'source-h.png', ++//UNCOMMENTIFWCPP 'text/x-java' => 'source-java.png', ++//UNCOMMENTIFWCPP 'application/x-javascript' => 'script-js.png'); + + /** + * Source-Highlight driver settings + * http://www.gnu.org/software/src-highlite/ + */ +-$mime_drivers['horde']['srchighlite']['location'] = 'C:\Program Files\src-highlite\bin\source-highlight.exe'; +-$mime_drivers['horde']['srchighlite']['inline'] = true; +-$mime_drivers['horde']['srchighlite']['handles'] = array( +- 'text/x-csrc', 'text/x-c++src', 'text/x-java', +- 'application/x-perl', 'application/x-python', 'text/x-c++src', +- 'text/cpp'); +-$mime_drivers['horde']['srchighlite']['icons'] = array( +- 'default' => 'text.png', +- 'text/x-csrc' => 'source-c.png', +- 'text/x-c++src' => 'source-c.png', +- 'text/cpp' => 'source-c.png', +- 'text/x-java' => 'source-java.png'); ++//UNCOMMENTIFSRCHIGH$mime_drivers['horde']['srchighlite']['location'] = '%%LOCALBASE%%/bin/source-highlight'; ++//UNCOMMENTIFSRCHIGH$mime_drivers['horde']['srchighlite']['inline'] = true; ++//UNCOMMENTIFSRCHIGH$mime_drivers['horde']['srchighlite']['handles'] = array( ++//UNCOMMENTIFSRCHIGH 'text/x-csrc', 'text/x-c++src', 'text/x-java', ++//UNCOMMENTIFSRCHIGH 'application/x-perl', 'application/x-python', 'text/x-c++src', ++//UNCOMMENTIFSRCHIGH 'text/cpp'); ++//UNCOMMENTIFSRCHIGH$mime_drivers['horde']['srchighlite']['icons'] = array( ++//UNCOMMENTIFSRCHIGH 'default' => 'text.png', ++//UNCOMMENTIFSRCHIGH 'text/x-csrc' => 'source-c.png', ++//UNCOMMENTIFSRCHIGH 'text/x-c++src' => 'source-c.png', ++//UNCOMMENTIFSRCHIGH 'text/cpp' => 'source-c.png', ++//UNCOMMENTIFSRCHIGH 'text/x-java' => 'source-java.png'); + + /** + * GNU Enscript driver settings + */ +-$mime_drivers['horde']['enscript']['location'] = '/usr/bin/enscript'; +-$mime_drivers['horde']['enscript']['inline'] = true; +-$mime_drivers['horde']['enscript']['handles'] = array( +- 'application/x-shellscript', 'application/x-javascript', +- 'application/x-perl', 'application/xml', 'text/xml', +- 'text/diff', 'text/x-diff', 'text/x-patch', 'text/x-csrc', +- 'x-extension/cs', 'text/x-java', 'text/x-chdr', 'text/x-c++src', +- 'text/x-c++hdr', 'x-extension/vhd', 'x-extension/vhdl', 'text/x-sql', +- 'x-extension/vb', 'x-extension/vba', 'text/x-emacs-lisp'); +-$mime_drivers['horde']['enscript']['icons'] = array( +- 'default' => 'text.png', +- 'text/xml' => 'xml.png', +- 'application/xml' => 'xml.png', +- 'text/x-csrc' => 'source-c.png', +- 'text/x-chdr' => 'source-h.png', +- 'text/x-java' => 'source-java.png', +- 'application/x-javascript' => 'script-js.png'); ++//UNCOMMENTIFES$mime_drivers['horde']['enscript']['location'] = '%%LOCALBASE%%//bin/enscript'; ++//UNCOMMENTIFES$mime_drivers['horde']['enscript']['inline'] = true; ++//UNCOMMENTIFES$mime_drivers['horde']['enscript']['handles'] = array( ++//UNCOMMENTIFES 'application/x-shellscript', 'application/x-javascript', ++//UNCOMMENTIFES 'application/x-perl', 'application/xml', 'text/xml', ++//UNCOMMENTIFES 'text/diff', 'text/x-diff', 'text/x-patch', 'text/x-csrc', ++//UNCOMMENTIFES 'x-extension/cs', 'text/x-java', 'text/x-chdr', 'text/x-c++src', ++//UNCOMMENTIFES 'text/x-c++hdr', 'x-extension/vhd', 'x-extension/vhdl', 'text/x-sql', ++//UNCOMMENTIFES 'x-extension/vb', 'x-extension/vba', 'text/x-emacs-lisp'); ++//UNCOMMENTIFES$mime_drivers['horde']['enscript']['icons'] = array( ++//UNCOMMENTIFES 'default' => 'text.png', ++//UNCOMMENTIFES 'text/xml' => 'xml.png', ++//UNCOMMENTIFES 'application/xml' => 'xml.png', ++//UNCOMMENTIFES 'text/x-csrc' => 'source-c.png', ++//UNCOMMENTIFES 'text/x-chdr' => 'source-h.png', ++//UNCOMMENTIFES 'text/x-java' => 'source-java.png', ++//UNCOMMENTIFES 'application/x-javascript' => 'script-js.png'); + + + /** +@@ -272,14 +282,14 @@ + * The 'location' entry should point to the 'wvHtml' program, NOT the + * 'wvWare' program. + */ +-$mime_drivers['horde']['msword']['location'] = '/usr/bin/wvHtml'; +-$mime_drivers['horde']['msword']['inline'] = false; +-$mime_drivers['horde']['msword']['handles'] = array( +- 'application/msword', +- 'application/rtf', +- 'text/rtf'); +-$mime_drivers['horde']['msword']['icons'] = array( +- 'default' => 'msword.png'); ++//UNCOMMENTIFWV$mime_drivers['horde']['msword']['location'] = '%%LOCALBASE%%/bin/wvHtml'; ++//UNCOMMENTIFWV$mime_drivers['horde']['msword']['inline'] = false; ++//UNCOMMENTIFWV$mime_drivers['horde']['msword']['handles'] = array( ++//UNCOMMENTIFWV 'application/msword', ++//UNCOMMENTIFWV 'application/rtf', ++//UNCOMMENTIFWV 'text/rtf'); ++//UNCOMMENTIFWV$mime_drivers['horde']['msword']['icons'] = array( ++//UNCOMMENTIFWV 'default' => 'msword.png'); + + + /** +@@ -287,14 +297,14 @@ + * This driver requires xlhtml to be installed. + * xlhtml homepage: http://chicago.sourceforge.net/xlhtml/ + */ +-$mime_drivers['horde']['msexcel']['location'] = '/usr/local/bin/xlhtml'; +-$mime_drivers['horde']['msexcel']['inline'] = false; +-$mime_drivers['horde']['msexcel']['handles'] = array( +- 'application/vnd.ms-excel', +- 'application/msexcel', +- 'application/x-msexcel'); +-$mime_drivers['horde']['msexcel']['icons'] = array( +- 'default' => 'msexcel.png'); ++//UNCOMMENTIFXL$mime_drivers['horde']['msexcel']['location'] = '%%LOCALBASE%%/bin/xlhtml'; ++//UNCOMMENTIFXL$mime_drivers['horde']['msexcel']['inline'] = false; ++//UNCOMMENTIFXL$mime_drivers['horde']['msexcel']['handles'] = array( ++//UNCOMMENTIFXL 'application/vnd.ms-excel', ++//UNCOMMENTIFXL 'application/msexcel', ++//UNCOMMENTIFXL 'application/x-msexcel'); ++//UNCOMMENTIFXL$mime_drivers['horde']['msexcel']['icons'] = array( ++//UNCOMMENTIFXL 'default' => 'msexcel.png'); + + + /** +@@ -302,13 +312,13 @@ + * This driver requires ppthtml, included with xlhtml, to be installed. + * xlhtml homepage: http://chicago.sourceforge.net/xlhtml/ + */ +-$mime_drivers['horde']['mspowerpoint']['location'] = '/usr/local/bin/ppthtml'; +-$mime_drivers['horde']['mspowerpoint']['inline'] = false; +-$mime_drivers['horde']['mspowerpoint']['handles'] = array( +- 'application/vnd.ms-powerpoint', +- 'application/mspowerpoint'); +-$mime_drivers['horde']['mspowerpoint']['icons'] = array( +- 'default' => 'mspowerpoint.png'); ++//UNCOMMENTIFXL$mime_drivers['horde']['mspowerpoint']['location'] = '%%LOCALBASE%%/bin/ppthtml'; ++//UNCOMMENTIFXL$mime_drivers['horde']['mspowerpoint']['inline'] = false; ++//UNCOMMENTIFXL$mime_drivers['horde']['mspowerpoint']['handles'] = array( ++//UNCOMMENTIFXL 'application/vnd.ms-powerpoint', ++//UNCOMMENTIFXL 'application/mspowerpoint'); ++//UNCOMMENTIFXL$mime_drivers['horde']['mspowerpoint']['icons'] = array( ++//UNCOMMENTIFXL 'default' => 'mspowerpoint.png'); + + + /** +@@ -324,24 +334,24 @@ + /** + * RPM driver settings + */ +-$mime_drivers['horde']['rpm']['location'] = '/usr/bin/rpm'; +-$mime_drivers['horde']['rpm']['inline'] = false; +-$mime_drivers['horde']['rpm']['handles'] = array( +- 'application/x-rpm'); +-$mime_drivers['horde']['rpm']['icons'] = array( +- 'default' => 'rpm.png'); ++//UNCOMMENTIFRPM$mime_drivers['horde']['rpm']['location'] = '%%LOCALBASE%%/bin/rpm'; ++//UNCOMMENTIFRPM$mime_drivers['horde']['rpm']['inline'] = false; ++//UNCOMMENTIFRPM$mime_drivers['horde']['rpm']['handles'] = array( ++//UNCOMMENTIFRPM 'application/x-rpm'); ++//UNCOMMENTIFRPM$mime_drivers['horde']['rpm']['icons'] = array( ++//UNCOMMENTIFRPM 'default' => 'rpm.png'); + + + /** + * Debian package driver settings + */ +-$mime_drivers['horde']['deb']['location'] = '/usr/bin/dpkg'; +-$mime_drivers['horde']['deb']['inline'] = false; +-$mime_drivers['horde']['deb']['handles'] = array( +- 'application/x-deb', +- 'application/x-debian-package'); +-$mime_drivers['horde']['deb']['icons'] = array( +- 'default' => 'deb.png'); ++//UNCOMMENTIFDEB$mime_drivers['horde']['deb']['location'] = '%%LOCALBASE%%/bin/dpkg'; ++//UNCOMMENTIFDEB$mime_drivers['horde']['deb']['inline'] = false; ++//UNCOMMENTIFDEB$mime_drivers['horde']['deb']['handles'] = array( ++//UNCOMMENTIFDEB 'application/x-deb', ++//UNCOMMENTIFDEB 'application/x-debian-package'); ++//UNCOMMENTIFDEB$mime_drivers['horde']['deb']['icons'] = array( ++//UNCOMMENTIFDEB 'default' => 'deb.png'); + + + /** diff --git a/www/horde-base/files/patch-po_translation.php b/www/horde-base/files/patch-po_translation.php new file mode 100644 index 000000000000..045891903631 --- /dev/null +++ b/www/horde-base/files/patch-po_translation.php @@ -0,0 +1,8 @@ +--- po/translation.php.orig Tue Jan 21 16:05:36 2003 ++++ po/translation.php Wed Jan 29 23:00:27 2003 +@@ -1,4 +1,4 @@ +-#!/usr/bin/php -q ++#!/usr/local/bin/php -q + <?php + /** + * Translation helper application for the Horde framework. diff --git a/www/horde-base/files/patch-scripts_sql_README b/www/horde-base/files/patch-scripts_sql_README new file mode 100644 index 000000000000..6403c0f8e849 --- /dev/null +++ b/www/horde-base/files/patch-scripts_sql_README @@ -0,0 +1,11 @@ +--- scripts/sql/README.orig Sat Sep 25 21:55:35 2004 ++++ scripts/sql/README Mon Nov 22 13:19:52 2004 +@@ -77,7 +77,7 @@ + PostgreSQL + ~~~~~~~~~~ + +-# su - postgres (or whatever your database runs as... usually postgres) ++# su - pgsql (or whatever your database runs as... usually pgsql) + $ psql -d template1 -f create.pgsql.sql + + This script will create a "horde" database and a "horde" user. You diff --git a/www/horde-base/files/pkg-message.in b/www/horde-base/files/pkg-message.in new file mode 100644 index 000000000000..b910ccbe6f2b --- /dev/null +++ b/www/horde-base/files/pkg-message.in @@ -0,0 +1,36 @@ +************************************************************************ +Horde has been installed in %%HORDEDIR%% with your blank +configuration files. + +If you want Horde to access a database, you have to run the +appropriate scripts located in %%HORDEDIR%%/scripts/sql. +It is recommended that you change the password of the 'hordemgr' +user used to connect to the horde database. +Horde is setup by default to access MySQL. + +WARNING! if you are upgrading from Horde v. 2.2.x, you have to alter your +******** database schemas. Please read the doc UPGRADING. + +You can now access Horde without a password at <http://localhost/horde/>, +and you will be logged in as an administrator. You should first configure +a real authentication backend. Click on "Setup" in the "Administration" +menu and configure Horde. Start in the "Authentication" tab. +See the doc in %%DOCSDIR%% for details. +(tip: if you plan to install IMP, just keep "Automatic authentication as +a certain user", add your login to be treated as administrator, and once +IMP will be installed, switch to "Let a Horde application handle auth"). +Select a log driver; if you keep 'file', do not forget to add a line +in /etc/newsyslog.conf. +Then select and configure a preferences driver. + +Your %%APACHE_CONF%% has been updated, +you have to restart Apache. + +When everything is OK, you should be able to access Horde from +<http://localhost/horde/>. +(If <http://localhost/horde/> does not run, but + <http://localhost/horde/index.php> is OK, then you have + to define index.php as a DirectoryIndex in %%APACHE_CONF%%.) + +There is a testing script at <http://localhost/horde/test.php>. +************************************************************************ diff --git a/www/horde-base/pkg-deinstall b/www/horde-base/pkg-deinstall new file mode 100644 index 000000000000..fcecd184cd25 --- /dev/null +++ b/www/horde-base/pkg-deinstall @@ -0,0 +1,43 @@ +#!/bin/sh +# +# $FreeBSD$ +# +# Try to restore httpd.conf when deinstalling Horde + +if [ x$2 != xDEINSTALL ]; then + exit +fi + +if [ -d ${PKG_PREFIX}/etc/apache ] ; then +APACHEDIR=${PKG_PREFIX}/etc/apache +elif [ -d ${PKG_PREFIX}/etc/apache2 ] ; then +APACHEDIR=${PKG_PREFIX}/etc/apache2 +fi + +if [ -f ${APACHEDIR}/httpd.conf.beforeHorde ] ; then + echo "Restoring httpd.conf..." + cp ${APACHEDIR}/httpd.conf ${APACHEDIR}/httpd.conf.deinstHorde + sed -i.tmp -e "s:Include ${PKG_PREFIX}/etc/horde:# Include ${PKG_PREFIX}/etc/horde:g" \ + ${APACHEDIR}/httpd.conf + rm ${APACHEDIR}/httpd.conf.tmp +fi + +# Backup Horde config files, if needed. + +if [ -z "${PACKAGE_BUILDING}" ]; then + for cf in `ls ${PKG_PREFIX}/www/horde/config/*php`; do + diff -bBqw $cf $cf.dist >/dev/null 2>&1 + case $? in + 0) # original config file, will be deleted by pkg-plist + ;; + 1) # config file has been updated, must be backuped + cp -p $cf $cf.previous + echo "===> Backing-up..." + echo "---> $cf has been saved ***" + echo "---> as $cf.previous ***" + ;; + *) # not found? + ;; + esac + done +fi diff --git a/www/horde-base/pkg-descr b/www/horde-base/pkg-descr new file mode 100644 index 000000000000..5a86429fa7e6 --- /dev/null +++ b/www/horde-base/pkg-descr @@ -0,0 +1,6 @@ +Horde is a framework used by several applications written in PHP. + +Horde is used by these ports: mail/imp, mail/turba, devel/chora, +deskutils/kronolith, deskutils/nag, mail/ingo and deskutils/mnemo. + +WWW: http://www.horde.org/ diff --git a/www/horde-base/pkg-plist b/www/horde-base/pkg-plist new file mode 100644 index 000000000000..08ae948b35f4 --- /dev/null +++ b/www/horde-base/pkg-plist @@ -0,0 +1,1584 @@ +etc/horde/httpd.conf.horde +%%HORDESBIN%%/horde_set_perms.sh +%%PORTDOCS%%%%DOCSDIR%%/CHANGES +%%PORTDOCS%%%%DOCSDIR%%/CODING_STANDARDS +%%PORTDOCS%%%%DOCSDIR%%/CONTRIBUTING +%%PORTDOCS%%%%DOCSDIR%%/COPYING +%%PORTDOCS%%%%DOCSDIR%%/CREDITS +%%PORTDOCS%%%%DOCSDIR%%/HACKING +%%PORTDOCS%%%%DOCSDIR%%/INSTALL +%%PORTDOCS%%%%DOCSDIR%%/PERFORMANCE +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/RELEASE +%%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES +%%PORTDOCS%%%%DOCSDIR%%/SECURITY +%%PORTDOCS%%%%DOCSDIR%%/TODO +%%PORTDOCS%%%%DOCSDIR%%/TRANSLATIONS +%%PORTDOCS%%%%DOCSDIR%%/UPGRADING +%%HORDEDIR%%/admin/cmdshell.php +%%HORDEDIR%%/admin/datatree.php +%%HORDEDIR%%/admin/groups.php +%%HORDEDIR%%/admin/index.php +%%HORDEDIR%%/admin/locale/en_US/help.xml +%%HORDEDIR%%/admin/locale/fi_FI/help.xml +%%HORDEDIR%%/admin/perms/addchild.php +%%HORDEDIR%%/admin/perms/delete.php +%%HORDEDIR%%/admin/perms/edit.php +%%HORDEDIR%%/admin/perms/index.php +%%HORDEDIR%%/admin/phpshell.php +%%HORDEDIR%%/admin/setup/config.php +%%HORDEDIR%%/admin/setup/diff.php +%%HORDEDIR%%/admin/setup/index.php +%%HORDEDIR%%/admin/setup/scripts.php +%%HORDEDIR%%/admin/sqlshell.php +%%HORDEDIR%%/admin/templates.php +%%HORDEDIR%%/admin/user.php +%%HORDEDIR%%/config/.htaccess +%%HORDEDIR%%/config/conf.php +%%HORDEDIR%%/config/conf.php.dist +%%HORDEDIR%%/config/conf.xml +%%HORDEDIR%%/config/hooks.php.dist +%%HORDEDIR%%/config/mime_drivers.php +%%HORDEDIR%%/config/mime_drivers.php.dist +%%HORDEDIR%%/config/motd.php +%%HORDEDIR%%/config/motd.php.dist +%%HORDEDIR%%/config/nls.php +%%HORDEDIR%%/config/nls.php.dist +%%HORDEDIR%%/config/prefs.php +%%HORDEDIR%%/config/prefs.php.dist +%%HORDEDIR%%/config/registry.php +%%HORDEDIR%%/config/registry.php.dist +%%HORDEDIR%%/index.php +%%HORDEDIR%%/js/alphaImageLoader.php +%%HORDEDIR%%/js/enter_key_trap.js +%%HORDEDIR%%/js/form_assign.js +%%HORDEDIR%%/js/form_helpers.js +%%HORDEDIR%%/js/hideable.js +%%HORDEDIR%%/js/httpclient.js +%%HORDEDIR%%/js/image.js +%%HORDEDIR%%/js/open_colorpicker.js +%%HORDEDIR%%/js/popup.js +%%HORDEDIR%%/js/sorter.js +%%HORDEDIR%%/js/tooltip.js +%%HORDEDIR%%/lib/.htaccess +%%HORDEDIR%%/lib/Block/color.php +%%HORDEDIR%%/lib/Block/fortune.php +%%HORDEDIR%%/lib/Block/google.php +%%HORDEDIR%%/lib/Block/iframe.php +%%HORDEDIR%%/lib/Block/metar.php +%%HORDEDIR%%/lib/Block/moon.php +%%HORDEDIR%%/lib/Block/sunrise.php +%%HORDEDIR%%/lib/Block/time.php +%%HORDEDIR%%/lib/Block/weatherdotcom.php +%%HORDEDIR%%/lib/File/PDF.php +%%HORDEDIR%%/lib/File/PDF/fonts/courier.php +%%HORDEDIR%%/lib/File/PDF/fonts/helvetica.php +%%HORDEDIR%%/lib/File/PDF/fonts/helveticab.php +%%HORDEDIR%%/lib/File/PDF/fonts/helveticabi.php +%%HORDEDIR%%/lib/File/PDF/fonts/helveticai.php +%%HORDEDIR%%/lib/File/PDF/fonts/symbol.php +%%HORDEDIR%%/lib/File/PDF/fonts/times.php +%%HORDEDIR%%/lib/File/PDF/fonts/timesb.php +%%HORDEDIR%%/lib/File/PDF/fonts/timesbi.php +%%HORDEDIR%%/lib/File/PDF/fonts/timesi.php +%%HORDEDIR%%/lib/File/PDF/fonts/zapfdingbats.php +%%HORDEDIR%%/lib/Horde.php +%%HORDEDIR%%/lib/Horde/Array.php +%%HORDEDIR%%/lib/Horde/Auth.php +%%HORDEDIR%%/lib/Horde/Auth/Signup.php +%%HORDEDIR%%/lib/Horde/Auth/application.php +%%HORDEDIR%%/lib/Horde/Auth/auto.php +%%HORDEDIR%%/lib/Horde/Auth/composite.php +%%HORDEDIR%%/lib/Horde/Auth/customsql.php +%%HORDEDIR%%/lib/Horde/Auth/cyrsql.php +%%HORDEDIR%%/lib/Horde/Auth/cyrus.php +%%HORDEDIR%%/lib/Horde/Auth/ftp.php +%%HORDEDIR%%/lib/Horde/Auth/http.php +%%HORDEDIR%%/lib/Horde/Auth/imap.php +%%HORDEDIR%%/lib/Horde/Auth/imsp.php +%%HORDEDIR%%/lib/Horde/Auth/ipbasic.php +%%HORDEDIR%%/lib/Horde/Auth/ipmap.php +%%HORDEDIR%%/lib/Horde/Auth/kolab.php +%%HORDEDIR%%/lib/Horde/Auth/krb5.php +%%HORDEDIR%%/lib/Horde/Auth/ldap.php +%%HORDEDIR%%/lib/Horde/Auth/login.php +%%HORDEDIR%%/lib/Horde/Auth/mcal.php +%%HORDEDIR%%/lib/Horde/Auth/pam.php +%%HORDEDIR%%/lib/Horde/Auth/passwd.php +%%HORDEDIR%%/lib/Horde/Auth/radius.php +%%HORDEDIR%%/lib/Horde/Auth/sasl.php +%%HORDEDIR%%/lib/Horde/Auth/smb.php +%%HORDEDIR%%/lib/Horde/Auth/sql.php +%%HORDEDIR%%/lib/Horde/Auth/yahoo.php +%%HORDEDIR%%/lib/Horde/Block.php +%%HORDEDIR%%/lib/Horde/Block/Collection.php +%%HORDEDIR%%/lib/Horde/Block/Layout.php +%%HORDEDIR%%/lib/Horde/Block/UI.php +%%HORDEDIR%%/lib/Horde/Browser.php +%%HORDEDIR%%/lib/Horde/Browser/imode.php +%%HORDEDIR%%/lib/Horde/CLI.php +%%HORDEDIR%%/lib/Horde/Cache.php +%%HORDEDIR%%/lib/Horde/Cache/file.php +%%HORDEDIR%%/lib/Horde/Cache/zps4.php +%%HORDEDIR%%/lib/Horde/Cipher.php +%%HORDEDIR%%/lib/Horde/Cipher/BlockMode.php +%%HORDEDIR%%/lib/Horde/Cipher/BlockMode/cbc.php +%%HORDEDIR%%/lib/Horde/Cipher/BlockMode/cfb64.php +%%HORDEDIR%%/lib/Horde/Cipher/BlockMode/ecb.php +%%HORDEDIR%%/lib/Horde/Cipher/BlockMode/ofb64.php +%%HORDEDIR%%/lib/Horde/Cipher/blowfish.php +%%HORDEDIR%%/lib/Horde/Cipher/cast128.php +%%HORDEDIR%%/lib/Horde/Cipher/des.php +%%HORDEDIR%%/lib/Horde/Cipher/rc2.php +%%HORDEDIR%%/lib/Horde/Cipher/rc4.php +%%HORDEDIR%%/lib/Horde/Compress.php +%%HORDEDIR%%/lib/Horde/Compress/dbx.php +%%HORDEDIR%%/lib/Horde/Compress/gzip.php +%%HORDEDIR%%/lib/Horde/Compress/tar.php +%%HORDEDIR%%/lib/Horde/Compress/tnef.php +%%HORDEDIR%%/lib/Horde/Compress/zip.php +%%HORDEDIR%%/lib/Horde/Config.php +%%HORDEDIR%%/lib/Horde/Crypt.php +%%HORDEDIR%%/lib/Horde/Crypt/pgp.php +%%HORDEDIR%%/lib/Horde/Crypt/smime.php +%%HORDEDIR%%/lib/Horde/Data.php +%%HORDEDIR%%/lib/Horde/Data/csv.php +%%HORDEDIR%%/lib/Horde/Data/icalendar.php +%%HORDEDIR%%/lib/Horde/Data/imc.php +%%HORDEDIR%%/lib/Horde/Data/outlookcsv.php +%%HORDEDIR%%/lib/Horde/Data/palm.php +%%HORDEDIR%%/lib/Horde/Data/pdb.php +%%HORDEDIR%%/lib/Horde/Data/tsv.php +%%HORDEDIR%%/lib/Horde/Data/vcard.php +%%HORDEDIR%%/lib/Horde/Data/vnote.php +%%HORDEDIR%%/lib/Horde/Data/vtodo.php +%%HORDEDIR%%/lib/Horde/DataTree.php +%%HORDEDIR%%/lib/Horde/DataTree/null.php +%%HORDEDIR%%/lib/Horde/DataTree/sql.php +%%HORDEDIR%%/lib/Horde/Date.php +%%HORDEDIR%%/lib/Horde/Editor.php +%%HORDEDIR%%/lib/Horde/Editor/htmlarea.php +%%HORDEDIR%%/lib/Horde/Form.php +%%HORDEDIR%%/lib/Horde/Form/Action.php +%%HORDEDIR%%/lib/Horde/Form/Action/conditional_enable.php +%%HORDEDIR%%/lib/Horde/Form/Action/conditional_setvalue.php +%%HORDEDIR%%/lib/Horde/Form/Action/reload.php +%%HORDEDIR%%/lib/Horde/Form/Action/submit.php +%%HORDEDIR%%/lib/Horde/Form/Action/sum_fields.php +%%HORDEDIR%%/lib/Horde/Form/Action/updatefield.php +%%HORDEDIR%%/lib/Horde/Form/Renderer.php +%%HORDEDIR%%/lib/Horde/Graph.php +%%HORDEDIR%%/lib/Horde/Graph/Chart/pie.php +%%HORDEDIR%%/lib/Horde/Graph/Chart/pie3d.php +%%HORDEDIR%%/lib/Horde/Graph/Plot/bar.php +%%HORDEDIR%%/lib/Horde/Graph/Plot/bargrouped.php +%%HORDEDIR%%/lib/Horde/Graph/Plot/barstacked.php +%%HORDEDIR%%/lib/Horde/Graph/Plot/line.php +%%HORDEDIR%%/lib/Horde/Graph/Plot/scatter.php +%%HORDEDIR%%/lib/Horde/Group.php +%%HORDEDIR%%/lib/Horde/Group/hooks.php +%%HORDEDIR%%/lib/Horde/Help.php +%%HORDEDIR%%/lib/Horde/History.php +%%HORDEDIR%%/lib/Horde/IMAP/ACL.php +%%HORDEDIR%%/lib/Horde/IMAP/ACL/rfc2086.php +%%HORDEDIR%%/lib/Horde/IMAP/Admin.php +%%HORDEDIR%%/lib/Horde/IMAP/Cache.php +%%HORDEDIR%%/lib/Horde/IMAP/Search.php +%%HORDEDIR%%/lib/Horde/IMAP/Sort.php +%%HORDEDIR%%/lib/Horde/IMAP/Thread.php +%%HORDEDIR%%/lib/Horde/IMAP/Tree.php +%%HORDEDIR%%/lib/Horde/Identity.php +%%HORDEDIR%%/lib/Horde/Image.php +%%HORDEDIR%%/lib/Horde/Image/gd.php +%%HORDEDIR%%/lib/Horde/Image/im.php +%%HORDEDIR%%/lib/Horde/Image/png.php +%%HORDEDIR%%/lib/Horde/Image/rgb.php +%%HORDEDIR%%/lib/Horde/Image/svg.php +%%HORDEDIR%%/lib/Horde/Image/swf.php +%%HORDEDIR%%/lib/Horde/Kolab.php +%%HORDEDIR%%/lib/Horde/LDAP.php +%%HORDEDIR%%/lib/Horde/MIME.php +%%HORDEDIR%%/lib/Horde/MIME/Contents.php +%%HORDEDIR%%/lib/Horde/MIME/Headers.php +%%HORDEDIR%%/lib/Horde/MIME/MDN.php +%%HORDEDIR%%/lib/Horde/MIME/Magic.php +%%HORDEDIR%%/lib/Horde/MIME/Message.php +%%HORDEDIR%%/lib/Horde/MIME/Part.php +%%HORDEDIR%%/lib/Horde/MIME/Structure.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/css.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/deb.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/default.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/enriched.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/enscript.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/html.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/icalendar.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/images.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/msexcel.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/mspowerpoint.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/msword.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/common.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/global_document.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/main_html.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/palm.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/style_header.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/style_inlined.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/style_mapping.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/table.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/table_cells.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/table_columns.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/table_rows.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/pdf.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/php.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/plain.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/rar.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/report.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/rfc822.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/richtext.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/rpm.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/security.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/simple.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/source.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/srchighlite.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/tgz.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/tnef.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/vcard.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/webcpp.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/zip.php +%%HORDEDIR%%/lib/Horde/MIME/mime.magic.php +%%HORDEDIR%%/lib/Horde/MIME/mime.mapping.php +%%HORDEDIR%%/lib/Horde/Maintenance.php +%%HORDEDIR%%/lib/Horde/Menu.php +%%HORDEDIR%%/lib/Horde/Mobile.php +%%HORDEDIR%%/lib/Horde/Mobile/Renderer.php +%%HORDEDIR%%/lib/Horde/Mobile/Renderer/html.php +%%HORDEDIR%%/lib/Horde/Mobile/Renderer/wml.php +%%HORDEDIR%%/lib/Horde/NLS.php +%%HORDEDIR%%/lib/Horde/NLS/GeoIP.php +%%HORDEDIR%%/lib/Horde/NLS/carsigns.php +%%HORDEDIR%%/lib/Horde/NLS/coordinates.php +%%HORDEDIR%%/lib/Horde/NLS/countries.php +%%HORDEDIR%%/lib/Horde/NLS/tld.php +%%HORDEDIR%%/lib/Horde/Notification.php +%%HORDEDIR%%/lib/Horde/Notification/Event.php +%%HORDEDIR%%/lib/Horde/Notification/Listener.php +%%HORDEDIR%%/lib/Horde/Notification/Listener/javascript.php +%%HORDEDIR%%/lib/Horde/Notification/Listener/mobile.php +%%HORDEDIR%%/lib/Horde/Notification/Listener/status.php +%%HORDEDIR%%/lib/Horde/Perms.php +%%HORDEDIR%%/lib/Horde/Perms/UI.php +%%HORDEDIR%%/lib/Horde/Perms/datatree.php +%%HORDEDIR%%/lib/Horde/Prefs.php +%%HORDEDIR%%/lib/Horde/Prefs/CategoryManager.php +%%HORDEDIR%%/lib/Horde/Prefs/UI.php +%%HORDEDIR%%/lib/Horde/Prefs/imsp.php +%%HORDEDIR%%/lib/Horde/Prefs/kolab.php +%%HORDEDIR%%/lib/Horde/Prefs/ldap.php +%%HORDEDIR%%/lib/Horde/Prefs/session.php +%%HORDEDIR%%/lib/Horde/Prefs/sql.php +%%HORDEDIR%%/lib/Horde/RPC.php +%%HORDEDIR%%/lib/Horde/RPC/soap.php +%%HORDEDIR%%/lib/Horde/RPC/syncml.php +%%HORDEDIR%%/lib/Horde/RPC/syncml_wbxml.php +%%HORDEDIR%%/lib/Horde/RPC/webdav.php +%%HORDEDIR%%/lib/Horde/RPC/xmlrpc.php +%%HORDEDIR%%/lib/Horde/Registry.php +%%HORDEDIR%%/lib/Horde/Relationship/Manager.php +%%HORDEDIR%%/lib/Horde/SQL.php +%%HORDEDIR%%/lib/Horde/SQL/Attributes.php +%%HORDEDIR%%/lib/Horde/SQL/Keywords.php +%%HORDEDIR%%/lib/Horde/Scheduler.php +%%HORDEDIR%%/lib/Horde/Scheduler/cron.php +%%HORDEDIR%%/lib/Horde/Search.php +%%HORDEDIR%%/lib/Horde/Search/google.php +%%HORDEDIR%%/lib/Horde/Secret.php +%%HORDEDIR%%/lib/Horde/Serialize.php +%%HORDEDIR%%/lib/Horde/SessionHandler.php +%%HORDEDIR%%/lib/Horde/SessionHandler/dbm.php +%%HORDEDIR%%/lib/Horde/SessionHandler/mysql.php +%%HORDEDIR%%/lib/Horde/SessionHandler/oci8.php +%%HORDEDIR%%/lib/Horde/SessionHandler/pgsql.php +%%HORDEDIR%%/lib/Horde/SessionHandler/sapdb.php +%%HORDEDIR%%/lib/Horde/SessionHandler/sql.php +%%HORDEDIR%%/lib/Horde/SessionObjects.php +%%HORDEDIR%%/lib/Horde/Share.php +%%HORDEDIR%%/lib/Horde/String.php +%%HORDEDIR%%/lib/Horde/SyncML.php +%%HORDEDIR%%/lib/Horde/SyncML/Command.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Alert.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Final.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Get.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Map.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Put.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Replace.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Results.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Status.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Sync.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Sync/Add.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Sync/ContentSyncElement.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Sync/Delete.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Sync/Replace.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Sync/SyncElement.php +%%HORDEDIR%%/lib/Horde/SyncML/State.php +%%HORDEDIR%%/lib/Horde/SyncML/Sync.php +%%HORDEDIR%%/lib/Horde/SyncML/Sync/OneWayFromClientSync.php +%%HORDEDIR%%/lib/Horde/SyncML/Sync/OneWayFromServerSync.php +%%HORDEDIR%%/lib/Horde/SyncML/Sync/RefreshFromClientSync.php +%%HORDEDIR%%/lib/Horde/SyncML/Sync/RefreshFromServerSync.php +%%HORDEDIR%%/lib/Horde/SyncML/Sync/SlowSync.php +%%HORDEDIR%%/lib/Horde/SyncML/Sync/TwoWaySync.php +%%HORDEDIR%%/lib/Horde/Template.php +%%HORDEDIR%%/lib/Horde/Text.php +%%HORDEDIR%%/lib/Horde/Text/Filter.php +%%HORDEDIR%%/lib/Horde/Text/Filter/bbcode.php +%%HORDEDIR%%/lib/Horde/Text/Filter/cleanascii.php +%%HORDEDIR%%/lib/Horde/Text/Filter/dimsignature.php +%%HORDEDIR%%/lib/Horde/Text/Filter/emails.php +%%HORDEDIR%%/lib/Horde/Text/Filter/emoticons.php +%%HORDEDIR%%/lib/Horde/Text/Filter/environment.php +%%HORDEDIR%%/lib/Horde/Text/Filter/highlightquotes.php +%%HORDEDIR%%/lib/Horde/Text/Filter/html2text.php +%%HORDEDIR%%/lib/Horde/Text/Filter/linkurls.php +%%HORDEDIR%%/lib/Horde/Text/Filter/rst.php +%%HORDEDIR%%/lib/Horde/Text/Filter/simplemarkup.php +%%HORDEDIR%%/lib/Horde/Text/Filter/space2html.php +%%HORDEDIR%%/lib/Horde/Text/Filter/tabs2spaces.php +%%HORDEDIR%%/lib/Horde/Text/Filter/text2html.php +%%HORDEDIR%%/lib/Horde/Text/Filter/words.php +%%HORDEDIR%%/lib/Horde/Timer.php +%%HORDEDIR%%/lib/Horde/Token.php +%%HORDEDIR%%/lib/Horde/Token/file.php +%%HORDEDIR%%/lib/Horde/Token/sql.php +%%HORDEDIR%%/lib/Horde/Tree.php +%%HORDEDIR%%/lib/Horde/Tree/html.php +%%HORDEDIR%%/lib/Horde/Tree/javascript.php +%%HORDEDIR%%/lib/Horde/UI/Language.php +%%HORDEDIR%%/lib/Horde/UI/Pager.php +%%HORDEDIR%%/lib/Horde/UI/Table.php +%%HORDEDIR%%/lib/Horde/UI/Tabs.php +%%HORDEDIR%%/lib/Horde/UI/VarRenderer.php +%%HORDEDIR%%/lib/Horde/UI/VarRenderer/html.php +%%HORDEDIR%%/lib/Horde/UI/Widget.php +%%HORDEDIR%%/lib/Horde/Util.php +%%HORDEDIR%%/lib/Horde/VC.php +%%HORDEDIR%%/lib/Horde/VC/cvs.php +%%HORDEDIR%%/lib/Horde/VC/rcs.php +%%HORDEDIR%%/lib/Horde/VC/svn.php +%%HORDEDIR%%/lib/Horde/Variables.php +%%HORDEDIR%%/lib/Horde/iCalendar.php +%%HORDEDIR%%/lib/Horde/iCalendar/valarm.php +%%HORDEDIR%%/lib/Horde/iCalendar/vcard.php +%%HORDEDIR%%/lib/Horde/iCalendar/vevent.php +%%HORDEDIR%%/lib/Horde/iCalendar/vfreebusy.php +%%HORDEDIR%%/lib/Horde/iCalendar/vjournal.php +%%HORDEDIR%%/lib/Horde/iCalendar/vnote.php +%%HORDEDIR%%/lib/Horde/iCalendar/vtimezone.php +%%HORDEDIR%%/lib/Horde/iCalendar/vtodo.php +%%HORDEDIR%%/lib/Net/IMSP.php +%%HORDEDIR%%/lib/Net/IMSP/Auth.php +%%HORDEDIR%%/lib/Net/IMSP/Auth/cram_md5.php +%%HORDEDIR%%/lib/Net/IMSP/Auth/plaintext.php +%%HORDEDIR%%/lib/Net/IMSP/Book.php +%%HORDEDIR%%/lib/Net/IMSP/Options.php +%%HORDEDIR%%/lib/Net/IMSP/Utils.php +%%HORDEDIR%%/lib/Net/SMS.php +%%HORDEDIR%%/lib/Net/SMS/clickatell_http.php +%%HORDEDIR%%/lib/Net/SMS/sms2email_http.php +%%HORDEDIR%%/lib/Net/SMS/vodafoneitaly_smtp.php +%%HORDEDIR%%/lib/Test.php +%%HORDEDIR%%/lib/Text/Diff.php +%%HORDEDIR%%/lib/Text/Diff/Renderer.php +%%HORDEDIR%%/lib/Text/Diff/Renderer/inline.php +%%HORDEDIR%%/lib/Text/Diff/Renderer/unified.php +%%HORDEDIR%%/lib/Text/Diff3.php +%%HORDEDIR%%/lib/Text/Flowed.php +%%HORDEDIR%%/lib/Text/reST.php +%%HORDEDIR%%/lib/Text/reST/Formatter.php +%%HORDEDIR%%/lib/Text/reST/Formatter/html.php +%%HORDEDIR%%/lib/Text/reST/Parser.php +%%HORDEDIR%%/lib/VFS.php +%%HORDEDIR%%/lib/VFS/Browser.php +%%HORDEDIR%%/lib/VFS/GC.php +%%HORDEDIR%%/lib/VFS/ISOWriter.php +%%HORDEDIR%%/lib/VFS/ISOWriter/RealInputStrategy.php +%%HORDEDIR%%/lib/VFS/ISOWriter/RealInputStrategy/copy.php +%%HORDEDIR%%/lib/VFS/ISOWriter/RealInputStrategy/direct.php +%%HORDEDIR%%/lib/VFS/ISOWriter/RealOutputStrategy.php +%%HORDEDIR%%/lib/VFS/ISOWriter/RealOutputStrategy/copy.php +%%HORDEDIR%%/lib/VFS/ISOWriter/RealOutputStrategy/direct.php +%%HORDEDIR%%/lib/VFS/ISOWriter/mkisofs.php +%%HORDEDIR%%/lib/VFS/ListItem.php +%%HORDEDIR%%/lib/VFS/Object.php +%%HORDEDIR%%/lib/VFS/file.php +%%HORDEDIR%%/lib/VFS/ftp.php +%%HORDEDIR%%/lib/VFS/musql.php +%%HORDEDIR%%/lib/VFS/sql.php +%%HORDEDIR%%/lib/VFS/sql_file.php +%%HORDEDIR%%/lib/XML/RAX.php +%%HORDEDIR%%/lib/XML/SVG.php +%%HORDEDIR%%/lib/XML/WBXML.php +%%HORDEDIR%%/lib/XML/WBXML/ContentHandler.php +%%HORDEDIR%%/lib/XML/WBXML/DTD.php +%%HORDEDIR%%/lib/XML/WBXML/DTD/SyncML.php +%%HORDEDIR%%/lib/XML/WBXML/DTD/SyncMLDevInf.php +%%HORDEDIR%%/lib/XML/WBXML/DTD/SyncMLMetInf.php +%%HORDEDIR%%/lib/XML/WBXML/DTDManager.php +%%HORDEDIR%%/lib/XML/WBXML/Decoder.php +%%HORDEDIR%%/lib/XML/WBXML/Encoder.php +%%HORDEDIR%%/lib/api.php +%%HORDEDIR%%/lib/base.php +%%HORDEDIR%%/lib/core.php +%%HORDEDIR%%/lib/prefs.php +%%HORDEDIR%%/lib/version.php +%%HORDEDIR%%/locale/.htaccess +%%HORDEDIR%%/locale/ar_SY/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/bg_BG/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/bg_BG/help.xml +%%HORDEDIR%%/locale/ca_ES/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/cs_CZ/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/cs_CZ/help.xml +%%HORDEDIR%%/locale/da_DK/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/da_DK/help.xml +%%HORDEDIR%%/locale/de_DE/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/de_DE/help.xml +%%HORDEDIR%%/locale/el_GR/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/el_GR/help.xml +%%HORDEDIR%%/locale/en_US/help.xml +%%HORDEDIR%%/locale/es_ES/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/es_ES/help.xml +%%HORDEDIR%%/locale/et_EE/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/et_EE/help.xml +%%HORDEDIR%%/locale/fa_IR/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/fi_FI/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/fi_FI/help.xml +%%HORDEDIR%%/locale/fr_FR/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/fr_FR/help.xml +%%HORDEDIR%%/locale/gl_ES/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/hu_HU/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/hu_HU/help.xml +%%HORDEDIR%%/locale/id_ID/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/it_IT/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/it_IT/help.xml +%%HORDEDIR%%/locale/ja_JP/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/ja_JP/help.xml +%%HORDEDIR%%/locale/ko_KR/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/ko_KR/help.xml +%%HORDEDIR%%/locale/lt_LT/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/lt_LT/help.xml +%%HORDEDIR%%/locale/lv_LV/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/mk_MK/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/nb_NO/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/nb_NO/help.xml +%%HORDEDIR%%/locale/nl_NL/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/nl_NL/help.xml +%%HORDEDIR%%/locale/nn_NO/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/nn_NO/help.xml +%%HORDEDIR%%/locale/pl_PL/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/pl_PL/help.xml +%%HORDEDIR%%/locale/pt_BR/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/pt_BR/help.xml +%%HORDEDIR%%/locale/pt_PT/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/pt_PT/help.xml +%%HORDEDIR%%/locale/ro_RO/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/ru_RU/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/ru_RU/help.xml +%%HORDEDIR%%/locale/sk_SK/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/sk_SK/help.xml +%%HORDEDIR%%/locale/sl_SI/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/sl_SI/help.xml +%%HORDEDIR%%/locale/sv_SE/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/sv_SE/help.xml +%%HORDEDIR%%/locale/tr_TR/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/uk_UA/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/uk_UA/help.xml +%%HORDEDIR%%/locale/zh_CN/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/zh_CN/help.xml +%%HORDEDIR%%/locale/zh_TW/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/zh_TW/help.xml +%%HORDEDIR%%/login.php +%%HORDEDIR%%/po/.htaccess +%%HORDEDIR%%/po/README +%%HORDEDIR%%/po/ar_SY.po +%%HORDEDIR%%/po/bg_BG.po +%%HORDEDIR%%/po/ca_ES.po +%%HORDEDIR%%/po/cs_CZ.po +%%HORDEDIR%%/po/da_DK.po +%%HORDEDIR%%/po/de_DE.po +%%HORDEDIR%%/po/el_GR.po +%%HORDEDIR%%/po/es_ES.po +%%HORDEDIR%%/po/et_EE.po +%%HORDEDIR%%/po/fa_IR.po +%%HORDEDIR%%/po/fi_FI.po +%%HORDEDIR%%/po/fr_FR.po +%%HORDEDIR%%/po/gl_ES.po +%%HORDEDIR%%/po/horde.pot +%%HORDEDIR%%/po/hu_HU.po +%%HORDEDIR%%/po/id_ID.po +%%HORDEDIR%%/po/it_IT.po +%%HORDEDIR%%/po/ja_JP.po +%%HORDEDIR%%/po/ko_KR.po +%%HORDEDIR%%/po/lt_LT.po +%%HORDEDIR%%/po/lv_LV.po +%%HORDEDIR%%/po/mk_MK.po +%%HORDEDIR%%/po/nb_NO.po +%%HORDEDIR%%/po/nl_NL.po +%%HORDEDIR%%/po/nn_NO.po +%%HORDEDIR%%/po/pl_PL.po +%%HORDEDIR%%/po/pt_BR.po +%%HORDEDIR%%/po/pt_PT.po +%%HORDEDIR%%/po/ro_RO.po +%%HORDEDIR%%/po/ru_RU.po +%%HORDEDIR%%/po/sk_SK.po +%%HORDEDIR%%/po/sl_SI.po +%%HORDEDIR%%/po/sv_SE.po +%%HORDEDIR%%/po/tr_TR.po +%%HORDEDIR%%/po/translation.php +%%HORDEDIR%%/po/uk_UA.po +%%HORDEDIR%%/po/zh_CN.po +%%HORDEDIR%%/po/zh_TW.po +%%HORDEDIR%%/rpc.php +%%HORDEDIR%%/scripts/.htaccess +%%HORDEDIR%%/scripts/SCRIPTS +%%HORDEDIR%%/scripts/crond +%%HORDEDIR%%/scripts/get_login.php +%%HORDEDIR%%/scripts/http_login_refer.php +%%HORDEDIR%%/scripts/ldap/horde.schema +%%HORDEDIR%%/scripts/migrate_user_categories.php +%%HORDEDIR%%/scripts/remove_prefs.php +%%HORDEDIR%%/scripts/set_perms.sh +%%HORDEDIR%%/scripts/setup.php +%%HORDEDIR%%/scripts/sql/README +%%HORDEDIR%%/scripts/sql/README.OCI8 +%%HORDEDIR%%/scripts/sql/create.mysql.sql +%%HORDEDIR%%/scripts/sql/create.oci8.sql +%%HORDEDIR%%/scripts/sql/create.pgsql.sql +%%HORDEDIR%%/scripts/sql/create.sybase.sql +%%HORDEDIR%%/scripts/sql/horde_datatree.mysql.sql +%%HORDEDIR%%/scripts/sql/horde_datatree.sql +%%HORDEDIR%%/scripts/sql/horde_log.sql +%%HORDEDIR%%/scripts/sql/horde_muvfs.sql +%%HORDEDIR%%/scripts/sql/horde_prefs.sql +%%HORDEDIR%%/scripts/sql/horde_sessionhandler.oci8.sql +%%HORDEDIR%%/scripts/sql/horde_sessionhandler.pgsql.sql +%%HORDEDIR%%/scripts/sql/horde_sessionhandler.sapdb.sql +%%HORDEDIR%%/scripts/sql/horde_sessionhandler.sql +%%HORDEDIR%%/scripts/sql/horde_tokens.sql +%%HORDEDIR%%/scripts/sql/horde_users.sql +%%HORDEDIR%%/scripts/sql/horde_vfs.oci8.sql +%%HORDEDIR%%/scripts/sql/horde_vfs.pgsql.sql +%%HORDEDIR%%/scripts/sql/horde_vfs.sql +%%HORDEDIR%%/scripts/sql/script.initial_horde_user.sql +%%HORDEDIR%%/scripts/temp-cleanup.cron +%%HORDEDIR%%/scripts/themes_check.php +%%HORDEDIR%%/scripts/upgrades/2.2_to_3.0.mysql.sql +%%HORDEDIR%%/services/cacheview.php +%%HORDEDIR%%/services/download/index.php +%%HORDEDIR%%/services/editor/htmlarea/dialog.js +%%HORDEDIR%%/services/editor/htmlarea/htmlarea.css +%%HORDEDIR%%/services/editor/htmlarea/htmlarea.js +%%HORDEDIR%%/services/editor/htmlarea/images/ed_about.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_align_center.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_align_justify.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_align_left.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_align_right.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_blank.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_charmap.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_color_bg.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_color_fg.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_copy.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_custom.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_cut.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_delete.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_format_bold.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_format_italic.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_format_strike.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_format_sub.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_format_sup.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_format_underline.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_help.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_hr.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_html.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_image.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_indent_less.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_indent_more.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_killword.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_left_to_right.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_link.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_list_bullet.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_list_num.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_paste.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_redo.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_right_to_left.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_rmformat.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_save.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_show_border.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_splitcel.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_undo.gif +%%HORDEDIR%%/services/editor/htmlarea/images/fullscreen_maximize.gif +%%HORDEDIR%%/services/editor/htmlarea/images/fullscreen_minimize.gif +%%HORDEDIR%%/services/editor/htmlarea/images/insert_table.gif +%%HORDEDIR%%/services/editor/htmlarea/lang/en.js +%%HORDEDIR%%/services/editor/htmlarea/plugins/AnselImage/ansel-image.js +%%HORDEDIR%%/services/editor/htmlarea/plugins/AnselImage/insert_image.php +%%HORDEDIR%%/services/editor/htmlarea/plugins/AnselImage/lang/en.js +%%HORDEDIR%%/services/editor/htmlarea/plugins/AnselImage/showimage.html +%%HORDEDIR%%/services/editor/htmlarea/plugins/ContextMenu/context-menu.js +%%HORDEDIR%%/services/editor/htmlarea/plugins/ContextMenu/lang/en.js +%%HORDEDIR%%/services/editor/htmlarea/plugins/ContextMenu/menu.css +%%HORDEDIR%%/services/editor/htmlarea/plugins/ListType/lang/en.js +%%HORDEDIR%%/services/editor/htmlarea/plugins/ListType/list-type.js +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-delete.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-insert-after.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-insert-before.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-merge.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-prop.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-split.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-delete.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-insert-after.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-insert-before.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-split.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-delete.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-insert-above.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-insert-under.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-prop.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-split.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/table-prop.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/lang/en.js +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/table-operations.js +%%HORDEDIR%%/services/editor/htmlarea/popupdiv.js +%%HORDEDIR%%/services/editor/htmlarea/popups/about.html +%%HORDEDIR%%/services/editor/htmlarea/popups/blank.html +%%HORDEDIR%%/services/editor/htmlarea/popups/fullscreen.html +%%HORDEDIR%%/services/editor/htmlarea/popups/insert_image.html +%%HORDEDIR%%/services/editor/htmlarea/popups/insert_table.html +%%HORDEDIR%%/services/editor/htmlarea/popups/link.html +%%HORDEDIR%%/services/editor/htmlarea/popups/popup.js +%%HORDEDIR%%/services/editor/htmlarea/popups/select_color.html +%%HORDEDIR%%/services/editor/htmlarea/popupwin.js +%%HORDEDIR%%/services/go.php +%%HORDEDIR%%/services/help/index.php +%%HORDEDIR%%/services/images/colorpicker.php +%%HORDEDIR%%/services/images/pixel.php +%%HORDEDIR%%/services/images/view.php +%%HORDEDIR%%/services/javascript.php +%%HORDEDIR%%/services/keyboard.php +%%HORDEDIR%%/services/language.php +%%HORDEDIR%%/services/maintenance.php +%%HORDEDIR%%/services/obrowser/index.php +%%HORDEDIR%%/services/portal/edit.php +%%HORDEDIR%%/services/portal/index.php +%%HORDEDIR%%/services/portal/mobile.php +%%HORDEDIR%%/services/portal/rpcsum.php +%%HORDEDIR%%/services/portal/sidebar.php +%%HORDEDIR%%/services/prefs.php +%%HORDEDIR%%/services/problem.php +%%HORDEDIR%%/services/resetpassword.php +%%HORDEDIR%%/services/shares/edit.php +%%HORDEDIR%%/signup.php +%%HORDEDIR%%/templates/.htaccess +%%HORDEDIR%%/templates/admin/common-header.inc +%%HORDEDIR%%/templates/admin/groups/addchild.inc +%%HORDEDIR%%/templates/admin/groups/delete.inc +%%HORDEDIR%%/templates/admin/groups/edit.inc +%%HORDEDIR%%/templates/admin/setup/config.html +%%HORDEDIR%%/templates/admin/setup/diff.html +%%HORDEDIR%%/templates/admin/setup/index.html +%%HORDEDIR%%/templates/admin/user/add.inc +%%HORDEDIR%%/templates/admin/user/approve.inc +%%HORDEDIR%%/templates/admin/user/clear.inc +%%HORDEDIR%%/templates/admin/user/list.inc +%%HORDEDIR%%/templates/admin/user/noadd.inc +%%HORDEDIR%%/templates/admin/user/nolist.inc +%%HORDEDIR%%/templates/admin/user/remove.inc +%%HORDEDIR%%/templates/admin/user/removequeued.inc +%%HORDEDIR%%/templates/admin/user/update.inc +%%HORDEDIR%%/templates/categorytree/rowend.inc +%%HORDEDIR%%/templates/categorytree/rowstart.inc +%%HORDEDIR%%/templates/categorytree/tablefoot.inc +%%HORDEDIR%%/templates/categorytree/tablehead.inc +%%HORDEDIR%%/templates/common-footer.inc +%%HORDEDIR%%/templates/common-header.inc +%%HORDEDIR%%/templates/contents/open_view_win.js +%%HORDEDIR%%/templates/data/csvinfo.inc +%%HORDEDIR%%/templates/data/csvmap.inc +%%HORDEDIR%%/templates/data/date.inc +%%HORDEDIR%%/templates/data/datemap.inc +%%HORDEDIR%%/templates/data/datetime.inc +%%HORDEDIR%%/templates/data/time.inc +%%HORDEDIR%%/templates/data/tsvinfo.inc +%%HORDEDIR%%/templates/help/about.inc +%%HORDEDIR%%/templates/help/index.inc +%%HORDEDIR%%/templates/help/menu.inc +%%HORDEDIR%%/templates/index/frames_index.inc +%%HORDEDIR%%/templates/javascript/form_sections.js +%%HORDEDIR%%/templates/javascript/htmlarea.js +%%HORDEDIR%%/templates/javascript/htmlarea_anselimage_lang.js +%%HORDEDIR%%/templates/javascript/htmlarea_context_lang.js +%%HORDEDIR%%/templates/javascript/htmlarea_lang.js +%%HORDEDIR%%/templates/javascript/htmlarea_listtype_lang.js +%%HORDEDIR%%/templates/javascript/htmlarea_table_lang.js +%%HORDEDIR%%/templates/javascript/keybindings.js +%%HORDEDIR%%/templates/javascript/open_calendar.js +%%HORDEDIR%%/templates/javascript/open_google_win.js +%%HORDEDIR%%/templates/javascript/open_help_win.js +%%HORDEDIR%%/templates/javascript/open_html_helper.js +%%HORDEDIR%%/templates/javascript/print.js +%%HORDEDIR%%/templates/javascript/quoteBlocks.js +%%HORDEDIR%%/templates/javascript/tree.js +%%HORDEDIR%%/templates/login/login.inc +%%HORDEDIR%%/templates/login/mobile.inc +%%HORDEDIR%%/templates/maintenance/agreement_bottom.inc +%%HORDEDIR%%/templates/maintenance/agreement_middle.inc +%%HORDEDIR%%/templates/maintenance/agreement_top.inc +%%HORDEDIR%%/templates/maintenance/confirm_bottom.inc +%%HORDEDIR%%/templates/maintenance/confirm_middle.inc +%%HORDEDIR%%/templates/maintenance/confirm_top.inc +%%HORDEDIR%%/templates/maintenance/javascript.inc +%%HORDEDIR%%/templates/maintenance/maintenance_bottom.inc +%%HORDEDIR%%/templates/maintenance/maintenance_top.inc +%%HORDEDIR%%/templates/maintenance/notice_bottom.inc +%%HORDEDIR%%/templates/maintenance/notice_middle.inc +%%HORDEDIR%%/templates/maintenance/notice_top.inc +%%HORDEDIR%%/templates/menu/menu.inc +%%HORDEDIR%%/templates/portal/add.inc +%%HORDEDIR%%/templates/portal/block.inc +%%HORDEDIR%%/templates/portal/edit.inc +%%HORDEDIR%%/templates/portal/empty.inc +%%HORDEDIR%%/templates/portal/footer.inc +%%HORDEDIR%%/templates/portal/header.inc +%%HORDEDIR%%/templates/portal/layout.inc +%%HORDEDIR%%/templates/portal/menu.inc +%%HORDEDIR%%/templates/portal/sidebar.inc +%%HORDEDIR%%/templates/prefs/app.inc +%%HORDEDIR%%/templates/prefs/begin.inc +%%HORDEDIR%%/templates/prefs/categorymanagement.inc +%%HORDEDIR%%/templates/prefs/checkbox.inc +%%HORDEDIR%%/templates/prefs/deleteidentity.inc +%%HORDEDIR%%/templates/prefs/end.inc +%%HORDEDIR%%/templates/prefs/enum.inc +%%HORDEDIR%%/templates/prefs/identityselect.inc +%%HORDEDIR%%/templates/prefs/link.inc +%%HORDEDIR%%/templates/prefs/multienum.inc +%%HORDEDIR%%/templates/prefs/number.inc +%%HORDEDIR%%/templates/prefs/overview.inc +%%HORDEDIR%%/templates/prefs/password.inc +%%HORDEDIR%%/templates/prefs/select.inc +%%HORDEDIR%%/templates/prefs/text.inc +%%HORDEDIR%%/templates/prefs/textarea.inc +%%HORDEDIR%%/templates/problem/problem.inc +%%HORDEDIR%%/templates/rpcsum/rpcsum.inc +%%HORDEDIR%%/templates/shares/edit.inc +%%HORDEDIR%%/templates/test/extensions.inc +%%HORDEDIR%%/templates/test/footer.inc +%%HORDEDIR%%/templates/test/header.inc +%%HORDEDIR%%/templates/test/php_version.inc +%%HORDEDIR%%/templates/test/version.inc +%%HORDEDIR%%/test.php +%%HORDEDIR%%/themes/NeXTgrey/info.php +%%HORDEDIR%%/themes/NeXTgrey/screen.css +%%HORDEDIR%%/themes/azur/info.php +%%HORDEDIR%%/themes/azur/screen.css +%%HORDEDIR%%/themes/barbie/info.php +%%HORDEDIR%%/themes/barbie/screen.css +%%HORDEDIR%%/themes/bluemoon/info.php +%%HORDEDIR%%/themes/bluemoon/screen.css +%%HORDEDIR%%/themes/bluewhite/info.php +%%HORDEDIR%%/themes/bluewhite/screen.css +%%HORDEDIR%%/themes/brown/info.php +%%HORDEDIR%%/themes/brown/screen.css +%%HORDEDIR%%/themes/burntorange/info.php +%%HORDEDIR%%/themes/burntorange/screen.css +%%HORDEDIR%%/themes/camouflage/graphics/menu.png +%%HORDEDIR%%/themes/camouflage/info.php +%%HORDEDIR%%/themes/camouflage/screen.css +%%HORDEDIR%%/themes/cornflower/info.php +%%HORDEDIR%%/themes/cornflower/screen.css +%%HORDEDIR%%/themes/gennevilliers/info.php +%%HORDEDIR%%/themes/gennevilliers/screen.css +%%HORDEDIR%%/themes/green/info.php +%%HORDEDIR%%/themes/green/screen.css +%%HORDEDIR%%/themes/grey/info.php +%%HORDEDIR%%/themes/grey/screen.css +%%HORDEDIR%%/themes/graphics/administration.png +%%HORDEDIR%%/themes/graphics/alerts/error.png +%%HORDEDIR%%/themes/graphics/alerts/message.png +%%HORDEDIR%%/themes/graphics/alerts/success.png +%%HORDEDIR%%/themes/graphics/alerts/warning.png +%%HORDEDIR%%/themes/graphics/az.png +%%HORDEDIR%%/themes/graphics/blank.gif +%%HORDEDIR%%/themes/graphics/block/add.png +%%HORDEDIR%%/themes/graphics/block/down.png +%%HORDEDIR%%/themes/graphics/block/large_down.png +%%HORDEDIR%%/themes/graphics/block/large_left.png +%%HORDEDIR%%/themes/graphics/block/large_right.png +%%HORDEDIR%%/themes/graphics/block/large_up.png +%%HORDEDIR%%/themes/graphics/block/left.png +%%HORDEDIR%%/themes/graphics/block/moon/firstquarter.png +%%HORDEDIR%%/themes/graphics/block/moon/fullmoon.png +%%HORDEDIR%%/themes/graphics/block/moon/lastquarter.png +%%HORDEDIR%%/themes/graphics/block/moon/newmoon.png +%%HORDEDIR%%/themes/graphics/block/right.png +%%HORDEDIR%%/themes/graphics/block/sunrise/sunrise.png +%%HORDEDIR%%/themes/graphics/block/sunrise/sunset.png +%%HORDEDIR%%/themes/graphics/block/up.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/0.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/1.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/10.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/11.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/12.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/13.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/14.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/15.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/16.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/17.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/18.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/19.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/2.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/20.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/21.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/22.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/23.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/24.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/25.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/26.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/27.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/28.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/29.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/3.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/30.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/31.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/32.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/33.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/34.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/35.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/36.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/37.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/38.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/39.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/4.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/40.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/41.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/42.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/43.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/44.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/45.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/46.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/47.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/5.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/6.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/7.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/8.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/9.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/na.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/0.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/1.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/10.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/11.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/12.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/13.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/14.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/15.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/16.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/17.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/18.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/19.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/2.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/20.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/21.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/22.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/23.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/24.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/25.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/26.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/27.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/28.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/29.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/3.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/30.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/31.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/32.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/33.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/34.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/35.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/36.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/37.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/38.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/39.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/4.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/40.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/41.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/42.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/43.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/44.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/45.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/46.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/47.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/5.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/6.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/7.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/8.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/9.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/TWClogo_32px.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/na.png +%%HORDEDIR%%/themes/graphics/calendar.png +%%HORDEDIR%%/themes/graphics/close.png +%%HORDEDIR%%/themes/graphics/colorpicker.png +%%HORDEDIR%%/themes/graphics/colorscale.png +%%HORDEDIR%%/themes/graphics/config.png +%%HORDEDIR%%/themes/graphics/data.png +%%HORDEDIR%%/themes/graphics/delete-small.png +%%HORDEDIR%%/themes/graphics/delete.png +%%HORDEDIR%%/themes/graphics/devel.png +%%HORDEDIR%%/themes/graphics/download.png +%%HORDEDIR%%/themes/graphics/edit.png +%%HORDEDIR%%/themes/graphics/edit-small.png +%%HORDEDIR%%/themes/graphics/emoticons/angel.png +%%HORDEDIR%%/themes/graphics/emoticons/angelwink.png +%%HORDEDIR%%/themes/graphics/emoticons/angry.png +%%HORDEDIR%%/themes/graphics/emoticons/annoyed.png +%%HORDEDIR%%/themes/graphics/emoticons/asleep.png +%%HORDEDIR%%/themes/graphics/emoticons/bigfrown.png +%%HORDEDIR%%/themes/graphics/emoticons/biggrin.png +%%HORDEDIR%%/themes/graphics/emoticons/blush.png +%%HORDEDIR%%/themes/graphics/emoticons/clown.png +%%HORDEDIR%%/themes/graphics/emoticons/confused.png +%%HORDEDIR%%/themes/graphics/emoticons/cool.png +%%HORDEDIR%%/themes/graphics/emoticons/coolgrin.png +%%HORDEDIR%%/themes/graphics/emoticons/cooltongue.png +%%HORDEDIR%%/themes/graphics/emoticons/dazed.png +%%HORDEDIR%%/themes/graphics/emoticons/devil.png +%%HORDEDIR%%/themes/graphics/emoticons/deviltongue.png +%%HORDEDIR%%/themes/graphics/emoticons/disappointed.png +%%HORDEDIR%%/themes/graphics/emoticons/embarrassed.png +%%HORDEDIR%%/themes/graphics/emoticons/enraged.png +%%HORDEDIR%%/themes/graphics/emoticons/frown.png +%%HORDEDIR%%/themes/graphics/emoticons/frustrated.png +%%HORDEDIR%%/themes/graphics/emoticons/grin.png +%%HORDEDIR%%/themes/graphics/emoticons/hangover.png +%%HORDEDIR%%/themes/graphics/emoticons/hippie.png +%%HORDEDIR%%/themes/graphics/emoticons/hippiegrin.png +%%HORDEDIR%%/themes/graphics/emoticons/hippietongue.png +%%HORDEDIR%%/themes/graphics/emoticons/hurt.png +%%HORDEDIR%%/themes/graphics/emoticons/indifferent.png +%%HORDEDIR%%/themes/graphics/emoticons/love.png +%%HORDEDIR%%/themes/graphics/emoticons/mad.png +%%HORDEDIR%%/themes/graphics/emoticons/mrt.png +%%HORDEDIR%%/themes/graphics/emoticons/punk.png +%%HORDEDIR%%/themes/graphics/emoticons/punkmohawk.png +%%HORDEDIR%%/themes/graphics/emoticons/punktongue.png +%%HORDEDIR%%/themes/graphics/emoticons/raspberry.png +%%HORDEDIR%%/themes/graphics/emoticons/sad.png +%%HORDEDIR%%/themes/graphics/emoticons/shout.png +%%HORDEDIR%%/themes/graphics/emoticons/smile.png +%%HORDEDIR%%/themes/graphics/emoticons/tired.png +%%HORDEDIR%%/themes/graphics/emoticons/tongueout.png +%%HORDEDIR%%/themes/graphics/emoticons/vampire.png +%%HORDEDIR%%/themes/graphics/emoticons/wink.png +%%HORDEDIR%%/themes/graphics/emoticons/winkgrin.png +%%HORDEDIR%%/themes/graphics/emoticons/winktongue.png +%%HORDEDIR%%/themes/graphics/emoticons/winktongueout.png +%%HORDEDIR%%/themes/graphics/emoticons/worried.png +%%HORDEDIR%%/themes/graphics/favicon.ico +%%HORDEDIR%%/themes/graphics/flags/af.png +%%HORDEDIR%%/themes/graphics/flags/al.png +%%HORDEDIR%%/themes/graphics/flags/am.png +%%HORDEDIR%%/themes/graphics/flags/an.png +%%HORDEDIR%%/themes/graphics/flags/ao.png +%%HORDEDIR%%/themes/graphics/flags/ar.png +%%HORDEDIR%%/themes/graphics/flags/at.png +%%HORDEDIR%%/themes/graphics/flags/au.png +%%HORDEDIR%%/themes/graphics/flags/aw.png +%%HORDEDIR%%/themes/graphics/flags/az.png +%%HORDEDIR%%/themes/graphics/flags/ba.png +%%HORDEDIR%%/themes/graphics/flags/bb.png +%%HORDEDIR%%/themes/graphics/flags/bd.png +%%HORDEDIR%%/themes/graphics/flags/be.png +%%HORDEDIR%%/themes/graphics/flags/bf.png +%%HORDEDIR%%/themes/graphics/flags/bg.png +%%HORDEDIR%%/themes/graphics/flags/bh.png +%%HORDEDIR%%/themes/graphics/flags/bi.png +%%HORDEDIR%%/themes/graphics/flags/bj.png +%%HORDEDIR%%/themes/graphics/flags/bm.png +%%HORDEDIR%%/themes/graphics/flags/bn.png +%%HORDEDIR%%/themes/graphics/flags/bo.png +%%HORDEDIR%%/themes/graphics/flags/br.png +%%HORDEDIR%%/themes/graphics/flags/bs.png +%%HORDEDIR%%/themes/graphics/flags/bt.png +%%HORDEDIR%%/themes/graphics/flags/bw.png +%%HORDEDIR%%/themes/graphics/flags/by.png +%%HORDEDIR%%/themes/graphics/flags/bz.png +%%HORDEDIR%%/themes/graphics/flags/ca.png +%%HORDEDIR%%/themes/graphics/flags/cf.png +%%HORDEDIR%%/themes/graphics/flags/cg.png +%%HORDEDIR%%/themes/graphics/flags/ch.png +%%HORDEDIR%%/themes/graphics/flags/ci.png +%%HORDEDIR%%/themes/graphics/flags/ck.png +%%HORDEDIR%%/themes/graphics/flags/cl.png +%%HORDEDIR%%/themes/graphics/flags/cm.png +%%HORDEDIR%%/themes/graphics/flags/cn.png +%%HORDEDIR%%/themes/graphics/flags/co.png +%%HORDEDIR%%/themes/graphics/flags/cr.png +%%HORDEDIR%%/themes/graphics/flags/cu.png +%%HORDEDIR%%/themes/graphics/flags/cv.png +%%HORDEDIR%%/themes/graphics/flags/cy.png +%%HORDEDIR%%/themes/graphics/flags/cz.png +%%HORDEDIR%%/themes/graphics/flags/de.png +%%HORDEDIR%%/themes/graphics/flags/dk.png +%%HORDEDIR%%/themes/graphics/flags/dz.png +%%HORDEDIR%%/themes/graphics/flags/ec.png +%%HORDEDIR%%/themes/graphics/flags/ee.png +%%HORDEDIR%%/themes/graphics/flags/eg.png +%%HORDEDIR%%/themes/graphics/flags/er.png +%%HORDEDIR%%/themes/graphics/flags/es.png +%%HORDEDIR%%/themes/graphics/flags/et.png +%%HORDEDIR%%/themes/graphics/flags/fi.png +%%HORDEDIR%%/themes/graphics/flags/fj.png +%%HORDEDIR%%/themes/graphics/flags/fo.png +%%HORDEDIR%%/themes/graphics/flags/fr.png +%%HORDEDIR%%/themes/graphics/flags/ga.png +%%HORDEDIR%%/themes/graphics/flags/ge.png +%%HORDEDIR%%/themes/graphics/flags/gi.png +%%HORDEDIR%%/themes/graphics/flags/gl.png +%%HORDEDIR%%/themes/graphics/flags/gp.png +%%HORDEDIR%%/themes/graphics/flags/gr.png +%%HORDEDIR%%/themes/graphics/flags/gt.png +%%HORDEDIR%%/themes/graphics/flags/gu.png +%%HORDEDIR%%/themes/graphics/flags/gy.png +%%HORDEDIR%%/themes/graphics/flags/hk.png +%%HORDEDIR%%/themes/graphics/flags/hr.png +%%HORDEDIR%%/themes/graphics/flags/ht.png +%%HORDEDIR%%/themes/graphics/flags/hu.png +%%HORDEDIR%%/themes/graphics/flags/id.png +%%HORDEDIR%%/themes/graphics/flags/ie.png +%%HORDEDIR%%/themes/graphics/flags/il.png +%%HORDEDIR%%/themes/graphics/flags/in.png +%%HORDEDIR%%/themes/graphics/flags/iq.png +%%HORDEDIR%%/themes/graphics/flags/ir.png +%%HORDEDIR%%/themes/graphics/flags/is.png +%%HORDEDIR%%/themes/graphics/flags/it.png +%%HORDEDIR%%/themes/graphics/flags/jm.png +%%HORDEDIR%%/themes/graphics/flags/jo.png +%%HORDEDIR%%/themes/graphics/flags/jp.png +%%HORDEDIR%%/themes/graphics/flags/ke.png +%%HORDEDIR%%/themes/graphics/flags/kg.png +%%HORDEDIR%%/themes/graphics/flags/kh.png +%%HORDEDIR%%/themes/graphics/flags/ki.png +%%HORDEDIR%%/themes/graphics/flags/kp.png +%%HORDEDIR%%/themes/graphics/flags/kr.png +%%HORDEDIR%%/themes/graphics/flags/ky.png +%%HORDEDIR%%/themes/graphics/flags/kz.png +%%HORDEDIR%%/themes/graphics/flags/lb.png +%%HORDEDIR%%/themes/graphics/flags/lc.png +%%HORDEDIR%%/themes/graphics/flags/lk.png +%%HORDEDIR%%/themes/graphics/flags/lt.png +%%HORDEDIR%%/themes/graphics/flags/lu.png +%%HORDEDIR%%/themes/graphics/flags/lv.png +%%HORDEDIR%%/themes/graphics/flags/ly.png +%%HORDEDIR%%/themes/graphics/flags/ma.png +%%HORDEDIR%%/themes/graphics/flags/mc.png +%%HORDEDIR%%/themes/graphics/flags/md.png +%%HORDEDIR%%/themes/graphics/flags/mg.png +%%HORDEDIR%%/themes/graphics/flags/mn.png +%%HORDEDIR%%/themes/graphics/flags/mo.png +%%HORDEDIR%%/themes/graphics/flags/mp.png +%%HORDEDIR%%/themes/graphics/flags/ms.png +%%HORDEDIR%%/themes/graphics/flags/mt.png +%%HORDEDIR%%/themes/graphics/flags/mx.png +%%HORDEDIR%%/themes/graphics/flags/my.png +%%HORDEDIR%%/themes/graphics/flags/mz.png +%%HORDEDIR%%/themes/graphics/flags/na.png +%%HORDEDIR%%/themes/graphics/flags/nc.png +%%HORDEDIR%%/themes/graphics/flags/nf.png +%%HORDEDIR%%/themes/graphics/flags/nl.png +%%HORDEDIR%%/themes/graphics/flags/no.png +%%HORDEDIR%%/themes/graphics/flags/np.png +%%HORDEDIR%%/themes/graphics/flags/nr.png +%%HORDEDIR%%/themes/graphics/flags/nz.png +%%HORDEDIR%%/themes/graphics/flags/om.png +%%HORDEDIR%%/themes/graphics/flags/pa.png +%%HORDEDIR%%/themes/graphics/flags/pe.png +%%HORDEDIR%%/themes/graphics/flags/pf.png +%%HORDEDIR%%/themes/graphics/flags/ph.png +%%HORDEDIR%%/themes/graphics/flags/pk.png +%%HORDEDIR%%/themes/graphics/flags/pl.png +%%HORDEDIR%%/themes/graphics/flags/pm.png +%%HORDEDIR%%/themes/graphics/flags/pr.png +%%HORDEDIR%%/themes/graphics/flags/pt.png +%%HORDEDIR%%/themes/graphics/flags/py.png +%%HORDEDIR%%/themes/graphics/flags/qa.png +%%HORDEDIR%%/themes/graphics/flags/ro.png +%%HORDEDIR%%/themes/graphics/flags/ru.png +%%HORDEDIR%%/themes/graphics/flags/sa.png +%%HORDEDIR%%/themes/graphics/flags/sb.png +%%HORDEDIR%%/themes/graphics/flags/sd.png +%%HORDEDIR%%/themes/graphics/flags/se.png +%%HORDEDIR%%/themes/graphics/flags/sg.png +%%HORDEDIR%%/themes/graphics/flags/si.png +%%HORDEDIR%%/themes/graphics/flags/sk.png +%%HORDEDIR%%/themes/graphics/flags/sl.png +%%HORDEDIR%%/themes/graphics/flags/so.png +%%HORDEDIR%%/themes/graphics/flags/sr.png +%%HORDEDIR%%/themes/graphics/flags/sy.png +%%HORDEDIR%%/themes/graphics/flags/tc.png +%%HORDEDIR%%/themes/graphics/flags/tg.png +%%HORDEDIR%%/themes/graphics/flags/th.png +%%HORDEDIR%%/themes/graphics/flags/tn.png +%%HORDEDIR%%/themes/graphics/flags/to.png +%%HORDEDIR%%/themes/graphics/flags/tp.png +%%HORDEDIR%%/themes/graphics/flags/tr.png +%%HORDEDIR%%/themes/graphics/flags/tt.png +%%HORDEDIR%%/themes/graphics/flags/tv.png +%%HORDEDIR%%/themes/graphics/flags/tw.png +%%HORDEDIR%%/themes/graphics/flags/tz.png +%%HORDEDIR%%/themes/graphics/flags/ua.png +%%HORDEDIR%%/themes/graphics/flags/ug.png +%%HORDEDIR%%/themes/graphics/flags/uk.png +%%HORDEDIR%%/themes/graphics/flags/us.png +%%HORDEDIR%%/themes/graphics/flags/uy.png +%%HORDEDIR%%/themes/graphics/flags/va.png +%%HORDEDIR%%/themes/graphics/flags/ve.png +%%HORDEDIR%%/themes/graphics/flags/vg.png +%%HORDEDIR%%/themes/graphics/flags/vi.png +%%HORDEDIR%%/themes/graphics/flags/vn.png +%%HORDEDIR%%/themes/graphics/flags/ws.png +%%HORDEDIR%%/themes/graphics/flags/ye.png +%%HORDEDIR%%/themes/graphics/flags/yu.png +%%HORDEDIR%%/themes/graphics/flags/za.png +%%HORDEDIR%%/themes/graphics/flags/zw.png +%%HORDEDIR%%/themes/graphics/google.png +%%HORDEDIR%%/themes/graphics/group.png +%%HORDEDIR%%/themes/graphics/help.png +%%HORDEDIR%%/themes/graphics/help_index.png +%%HORDEDIR%%/themes/graphics/hide_panel.png +%%HORDEDIR%%/themes/graphics/horde-power1.png +%%HORDEDIR%%/themes/graphics/horde-power2.png +%%HORDEDIR%%/themes/graphics/horde-power3.png +%%HORDEDIR%%/themes/graphics/horde.png +%%HORDEDIR%%/themes/graphics/image/flip.png +%%HORDEDIR%%/themes/graphics/image/grayscale.png +%%HORDEDIR%%/themes/graphics/image/mirror.png +%%HORDEDIR%%/themes/graphics/image/ratio.png +%%HORDEDIR%%/themes/graphics/image/rotate-180.png +%%HORDEDIR%%/themes/graphics/image/rotate-270.png +%%HORDEDIR%%/themes/graphics/image/rotate-90.png +%%HORDEDIR%%/themes/graphics/info.png +%%HORDEDIR%%/themes/graphics/info_icon.png +%%HORDEDIR%%/themes/graphics/keyboard.png +%%HORDEDIR%%/themes/graphics/layout.png +%%HORDEDIR%%/themes/graphics/lhand.png +%%HORDEDIR%%/themes/graphics/locked.png +%%HORDEDIR%%/themes/graphics/login.png +%%HORDEDIR%%/themes/graphics/logout.png +%%HORDEDIR%%/themes/graphics/mail.png +%%HORDEDIR%%/themes/graphics/map.png +%%HORDEDIR%%/themes/graphics/map_eu.png +%%HORDEDIR%%/themes/graphics/mime/audio.png +%%HORDEDIR%%/themes/graphics/mime/binary.png +%%HORDEDIR%%/themes/graphics/mime/compressed.png +%%HORDEDIR%%/themes/graphics/mime/csv.png +%%HORDEDIR%%/themes/graphics/mime/deb.png +%%HORDEDIR%%/themes/graphics/mime/encryption.png +%%HORDEDIR%%/themes/graphics/mime/executable.png +%%HORDEDIR%%/themes/graphics/mime/html.png +%%HORDEDIR%%/themes/graphics/mime/icalendar.png +%%HORDEDIR%%/themes/graphics/mime/image.png +%%HORDEDIR%%/themes/graphics/mime/inf.png +%%HORDEDIR%%/themes/graphics/mime/mail.png +%%HORDEDIR%%/themes/graphics/mime/makefile.png +%%HORDEDIR%%/themes/graphics/mime/msexcel.png +%%HORDEDIR%%/themes/graphics/mime/msi.png +%%HORDEDIR%%/themes/graphics/mime/msp.png +%%HORDEDIR%%/themes/graphics/mime/mspowerpoint.png +%%HORDEDIR%%/themes/graphics/mime/msword.png +%%HORDEDIR%%/themes/graphics/mime/ooo_calc.png +%%HORDEDIR%%/themes/graphics/mime/ooo_draw.png +%%HORDEDIR%%/themes/graphics/mime/ooo_impress.png +%%HORDEDIR%%/themes/graphics/mime/ooo_math.png +%%HORDEDIR%%/themes/graphics/mime/ooo_writer.png +%%HORDEDIR%%/themes/graphics/mime/pdf.png +%%HORDEDIR%%/themes/graphics/mime/php.png +%%HORDEDIR%%/themes/graphics/mime/quicktime.png +%%HORDEDIR%%/themes/graphics/mime/readme.png +%%HORDEDIR%%/themes/graphics/mime/realaudio.png +%%HORDEDIR%%/themes/graphics/mime/rpm.png +%%HORDEDIR%%/themes/graphics/mime/script-asa.png +%%HORDEDIR%%/themes/graphics/mime/script-asp.png +%%HORDEDIR%%/themes/graphics/mime/script-js.png +%%HORDEDIR%%/themes/graphics/mime/setup.png +%%HORDEDIR%%/themes/graphics/mime/signed.png +%%HORDEDIR%%/themes/graphics/mime/source-c.png +%%HORDEDIR%%/themes/graphics/mime/source-cpp.png +%%HORDEDIR%%/themes/graphics/mime/source-h.png +%%HORDEDIR%%/themes/graphics/mime/source-java.png +%%HORDEDIR%%/themes/graphics/mime/source-python.png +%%HORDEDIR%%/themes/graphics/mime/text.png +%%HORDEDIR%%/themes/graphics/mime/unknown.png +%%HORDEDIR%%/themes/graphics/mime/vcard.png +%%HORDEDIR%%/themes/graphics/mime/video.png +%%HORDEDIR%%/themes/graphics/mime/xcode.png +%%HORDEDIR%%/themes/graphics/mime/xml.png +%%HORDEDIR%%/themes/graphics/mobile/bottom.jpg +%%HORDEDIR%%/themes/graphics/mobile/display.jpg +%%HORDEDIR%%/themes/graphics/mobile/left.jpg +%%HORDEDIR%%/themes/graphics/mobile/right.jpg +%%HORDEDIR%%/themes/graphics/mobile/top.jpg +%%HORDEDIR%%/themes/graphics/myaccount.png +%%HORDEDIR%%/themes/graphics/nav/bottom-grey.png +%%HORDEDIR%%/themes/graphics/nav/bottom.png +%%HORDEDIR%%/themes/graphics/nav/down-grey.png +%%HORDEDIR%%/themes/graphics/nav/down.png +%%HORDEDIR%%/themes/graphics/nav/first-grey.png +%%HORDEDIR%%/themes/graphics/nav/first.png +%%HORDEDIR%%/themes/graphics/nav/last-grey.png +%%HORDEDIR%%/themes/graphics/nav/last.png +%%HORDEDIR%%/themes/graphics/nav/left-grey.png +%%HORDEDIR%%/themes/graphics/nav/left.png +%%HORDEDIR%%/themes/graphics/nav/right-grey.png +%%HORDEDIR%%/themes/graphics/nav/right.png +%%HORDEDIR%%/themes/graphics/nav/top-grey.png +%%HORDEDIR%%/themes/graphics/nav/top.png +%%HORDEDIR%%/themes/graphics/nav/up-grey.png +%%HORDEDIR%%/themes/graphics/nav/up.png +%%HORDEDIR%%/themes/graphics/office.png +%%HORDEDIR%%/themes/graphics/organizing.png +%%HORDEDIR%%/themes/graphics/perms.png +%%HORDEDIR%%/themes/graphics/prefs.png +%%HORDEDIR%%/themes/graphics/print.png +%%HORDEDIR%%/themes/graphics/problem.png +%%HORDEDIR%%/themes/graphics/reload.png +%%HORDEDIR%%/themes/graphics/required.png +%%HORDEDIR%%/themes/graphics/rhand.png +%%HORDEDIR%%/themes/graphics/save.png +%%HORDEDIR%%/themes/graphics/search.png +%%HORDEDIR%%/themes/graphics/shadow.gif +%%HORDEDIR%%/themes/graphics/shadow.png +%%HORDEDIR%%/themes/graphics/shell.png +%%HORDEDIR%%/themes/graphics/show_panel.png +%%HORDEDIR%%/themes/graphics/sql.png +%%HORDEDIR%%/themes/graphics/tree/blank.png +%%HORDEDIR%%/themes/graphics/tree/folder.png +%%HORDEDIR%%/themes/graphics/tree/folderopen.png +%%HORDEDIR%%/themes/graphics/tree/join.png +%%HORDEDIR%%/themes/graphics/tree/joinbottom-down.png +%%HORDEDIR%%/themes/graphics/tree/joinbottom.png +%%HORDEDIR%%/themes/graphics/tree/leaf.png +%%HORDEDIR%%/themes/graphics/tree/line.png +%%HORDEDIR%%/themes/graphics/tree/minus.png +%%HORDEDIR%%/themes/graphics/tree/minusbottom.png +%%HORDEDIR%%/themes/graphics/tree/minusonly.png +%%HORDEDIR%%/themes/graphics/tree/minustop.png +%%HORDEDIR%%/themes/graphics/tree/nullonly.png +%%HORDEDIR%%/themes/graphics/tree/plus.png +%%HORDEDIR%%/themes/graphics/tree/plusbottom.png +%%HORDEDIR%%/themes/graphics/tree/plusonly.png +%%HORDEDIR%%/themes/graphics/tree/plustop.png +%%HORDEDIR%%/themes/graphics/tree/rev-join.png +%%HORDEDIR%%/themes/graphics/tree/rev-minusonly.png +%%HORDEDIR%%/themes/graphics/tree/rev-joinbottom-down.png +%%HORDEDIR%%/themes/graphics/tree/rev-plusonly.png +%%HORDEDIR%%/themes/graphics/tree/rev-line.png +%%HORDEDIR%%/themes/graphics/tree/rev-minusbottom.png +%%HORDEDIR%%/themes/graphics/tree/rev-plus.png +%%HORDEDIR%%/themes/graphics/tree/rev-plusbottom.png +%%HORDEDIR%%/themes/graphics/tree/rev-leaf.png +%%HORDEDIR%%/themes/graphics/tree/rev-joinbottom.png +%%HORDEDIR%%/themes/graphics/tree/rev-nullonly.png +%%HORDEDIR%%/themes/graphics/tree/rev-minus.png +%%HORDEDIR%%/themes/graphics/tree/rev-plustop.png +%%HORDEDIR%%/themes/graphics/tree/rev-minustop.png +%%HORDEDIR%%/themes/graphics/unlocked.png +%%HORDEDIR%%/themes/graphics/user.png +%%HORDEDIR%%/themes/graphics/website.png +%%HORDEDIR%%/themes/graphics/za.png +%%HORDEDIR%%/themes/ie5mac.css +%%HORDEDIR%%/themes/kolab/graphics/bg.png +%%HORDEDIR%%/themes/kolab/graphics/kolab.png +%%HORDEDIR%%/themes/kolab/graphics/kolablogo.png +%%HORDEDIR%%/themes/kolab/info.php +%%HORDEDIR%%/themes/kolab/screen.css +%%HORDEDIR%%/themes/lavander/info.php +%%HORDEDIR%%/themes/lavander/screen.css +%%HORDEDIR%%/themes/lightblue/graphics/menu.png +%%HORDEDIR%%/themes/lightblue/info.php +%%HORDEDIR%%/themes/lightblue/screen.css +%%HORDEDIR%%/themes/luc/info.php +%%HORDEDIR%%/themes/luc/screen.css +%%HORDEDIR%%/themes/lucblue/info.php +%%HORDEDIR%%/themes/lucblue/screen.css +%%HORDEDIR%%/themes/mobile/screen.css +%%HORDEDIR%%/themes/mozilla/graphics/header.png +%%HORDEDIR%%/themes/mozilla/graphics/menu-active.png +%%HORDEDIR%%/themes/mozilla/graphics/menu.png +%%HORDEDIR%%/themes/mozilla/info.php +%%HORDEDIR%%/themes/mozilla/screen.css +%%HORDEDIR%%/themes/postnuke/info.php +%%HORDEDIR%%/themes/postnuke/screen.css +%%HORDEDIR%%/themes/print/screen.css +%%HORDEDIR%%/themes/purple/info.php +%%HORDEDIR%%/themes/purple/screen.css +%%HORDEDIR%%/themes/screen.css +%%HORDEDIR%%/themes/simplex/graphics/background.png +%%HORDEDIR%%/themes/simplex/info.php +%%HORDEDIR%%/themes/simplex/screen.css +%%HORDEDIR%%/util/barcode.php +%%HORDEDIR%%/util/google_example.php +%%HORDEDIR%%/util/icon_browser.php +%%HORDEDIR%%/util/regex_test.php +@dirrm %%HORDEDIR%%/util +@dirrm %%HORDEDIR%%/themes/simplex/graphics +@dirrm %%HORDEDIR%%/themes/simplex +@dirrm %%HORDEDIR%%/themes/purple +@dirrm %%HORDEDIR%%/themes/print +@dirrm %%HORDEDIR%%/themes/postnuke +@dirrm %%HORDEDIR%%/themes/mozilla/graphics +@dirrm %%HORDEDIR%%/themes/mozilla +@dirrm %%HORDEDIR%%/themes/mobile +@dirrm %%HORDEDIR%%/themes/lucblue +@dirrm %%HORDEDIR%%/themes/luc +@dirrm %%HORDEDIR%%/themes/lightblue/graphics +@dirrm %%HORDEDIR%%/themes/lightblue +@dirrm %%HORDEDIR%%/themes/lavander +@dirrm %%HORDEDIR%%/themes/kolab/graphics +@dirrm %%HORDEDIR%%/themes/kolab +@dirrm %%HORDEDIR%%/themes/graphics/tree +@dirrm %%HORDEDIR%%/themes/graphics/nav +@dirrm %%HORDEDIR%%/themes/graphics/mobile +@dirrm %%HORDEDIR%%/themes/graphics/mime +@dirrm %%HORDEDIR%%/themes/graphics/image +@dirrm %%HORDEDIR%%/themes/graphics/flags +@dirrm %%HORDEDIR%%/themes/graphics/emoticons +@dirrm %%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32 +@dirrm %%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23 +@dirrm %%HORDEDIR%%/themes/graphics/block/weatherdotcom +@dirrm %%HORDEDIR%%/themes/graphics/block/sunrise +@dirrm %%HORDEDIR%%/themes/graphics/block/moon +@dirrm %%HORDEDIR%%/themes/graphics/block +@dirrm %%HORDEDIR%%/themes/graphics/alerts +@dirrm %%HORDEDIR%%/themes/graphics +@dirrm %%HORDEDIR%%/themes/grey +@dirrm %%HORDEDIR%%/themes/green +@dirrm %%HORDEDIR%%/themes/gennevilliers +@dirrm %%HORDEDIR%%/themes/cornflower +@dirrm %%HORDEDIR%%/themes/camouflage/graphics +@dirrm %%HORDEDIR%%/themes/camouflage +@dirrm %%HORDEDIR%%/themes/burntorange +@dirrm %%HORDEDIR%%/themes/brown +@dirrm %%HORDEDIR%%/themes/bluewhite +@dirrm %%HORDEDIR%%/themes/bluemoon +@dirrm %%HORDEDIR%%/themes/barbie +@dirrm %%HORDEDIR%%/themes/azur +@dirrm %%HORDEDIR%%/themes/NeXTgrey +@dirrm %%HORDEDIR%%/themes +@dirrm %%HORDEDIR%%/templates/test +@dirrm %%HORDEDIR%%/templates/shares +@dirrm %%HORDEDIR%%/templates/rpcsum +@dirrm %%HORDEDIR%%/templates/problem +@dirrm %%HORDEDIR%%/templates/prefs +@dirrm %%HORDEDIR%%/templates/portal +@dirrm %%HORDEDIR%%/templates/menu +@dirrm %%HORDEDIR%%/templates/maintenance +@dirrm %%HORDEDIR%%/templates/login +@dirrm %%HORDEDIR%%/templates/javascript +@dirrm %%HORDEDIR%%/templates/index +@dirrm %%HORDEDIR%%/templates/help +@dirrm %%HORDEDIR%%/templates/data +@dirrm %%HORDEDIR%%/templates/contents +@dirrm %%HORDEDIR%%/templates/categorytree +@dirrm %%HORDEDIR%%/templates/admin/user +@dirrm %%HORDEDIR%%/templates/admin/setup +@dirrm %%HORDEDIR%%/templates/admin/groups +@dirrm %%HORDEDIR%%/templates/admin +@dirrm %%HORDEDIR%%/templates +@dirrm %%HORDEDIR%%/services/shares +@dirrm %%HORDEDIR%%/services/portal +@dirrm %%HORDEDIR%%/services/obrowser +@dirrm %%HORDEDIR%%/services/images +@dirrm %%HORDEDIR%%/services/help +@dirrm %%HORDEDIR%%/services/editor/htmlarea/popups +@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/lang +@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img +@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations +@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/ListType/lang +@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/ListType +@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/ContextMenu/lang +@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/ContextMenu +@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/AnselImage/lang +@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/AnselImage +@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins +@dirrm %%HORDEDIR%%/services/editor/htmlarea/lang +@dirrm %%HORDEDIR%%/services/editor/htmlarea/images +@dirrm %%HORDEDIR%%/services/editor/htmlarea +@dirrm %%HORDEDIR%%/services/editor +@dirrm %%HORDEDIR%%/services/download +@dirrm %%HORDEDIR%%/services +@dirrm %%HORDEDIR%%/scripts/upgrades +@dirrm %%HORDEDIR%%/scripts/sql +@dirrm %%HORDEDIR%%/scripts/ldap +@dirrm %%HORDEDIR%%/scripts +@dirrm %%HORDEDIR%%/po +@dirrm %%HORDEDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/zh_TW +@dirrm %%HORDEDIR%%/locale/zh_CN/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/zh_CN +@dirrm %%HORDEDIR%%/locale/uk_UA/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/uk_UA +@dirrm %%HORDEDIR%%/locale/tr_TR/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/tr_TR +@dirrm %%HORDEDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/sv_SE +@dirrm %%HORDEDIR%%/locale/sl_SI/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/sl_SI +@dirrm %%HORDEDIR%%/locale/sk_SK/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/sk_SK +@dirrm %%HORDEDIR%%/locale/ru_RU/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/ru_RU +@dirrm %%HORDEDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/ro_RO +@dirrm %%HORDEDIR%%/locale/pt_PT/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/pt_PT +@dirrm %%HORDEDIR%%/locale/pt_BR/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/pt_BR +@dirrm %%HORDEDIR%%/locale/pl_PL/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/pl_PL +@dirrm %%HORDEDIR%%/locale/nn_NO/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/nn_NO +@dirrm %%HORDEDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/nl_NL +@dirrm %%HORDEDIR%%/locale/nb_NO/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/nb_NO +@dirrm %%HORDEDIR%%/locale/mk_MK/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/mk_MK +@dirrm %%HORDEDIR%%/locale/lv_LV/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/lv_LV +@dirrm %%HORDEDIR%%/locale/lt_LT/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/lt_LT +@dirrm %%HORDEDIR%%/locale/ko_KR/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/ko_KR +@dirrm %%HORDEDIR%%/locale/ja_JP/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/ja_JP +@dirrm %%HORDEDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/it_IT +@dirrm %%HORDEDIR%%/locale/id_ID/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/id_ID +@dirrm %%HORDEDIR%%/locale/hu_HU/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/hu_HU +@dirrm %%HORDEDIR%%/locale/gl_ES/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/gl_ES +@dirrm %%HORDEDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/fr_FR +@dirrm %%HORDEDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/fi_FI +@dirrm %%HORDEDIR%%/locale/fa_IR/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/fa_IR +@dirrm %%HORDEDIR%%/locale/et_EE/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/et_EE +@dirrm %%HORDEDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/es_ES +@dirrm %%HORDEDIR%%/locale/en_US +@dirrm %%HORDEDIR%%/locale/el_GR/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/el_GR +@dirrm %%HORDEDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/de_DE +@dirrm %%HORDEDIR%%/locale/da_DK/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/da_DK +@dirrm %%HORDEDIR%%/locale/cs_CZ/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/cs_CZ +@dirrm %%HORDEDIR%%/locale/ca_ES/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/ca_ES +@dirrm %%HORDEDIR%%/locale/bg_BG/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/bg_BG +@dirrm %%HORDEDIR%%/locale/ar_SY/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/ar_SY +@dirrm %%HORDEDIR%%/locale +@dirrm %%HORDEDIR%%/lib/XML/tests +@dirrm %%HORDEDIR%%/lib/XML/docs/examples +@dirrm %%HORDEDIR%%/lib/XML/docs +@dirrm %%HORDEDIR%%/lib/XML/WBXML/DTD +@dirrm %%HORDEDIR%%/lib/XML/WBXML +@dirrm %%HORDEDIR%%/lib/XML +@dirrm %%HORDEDIR%%/lib/VFS/tests +@dirrm %%HORDEDIR%%/lib/VFS/ISOWriter/RealOutputStrategy +@dirrm %%HORDEDIR%%/lib/VFS/ISOWriter/RealInputStrategy +@dirrm %%HORDEDIR%%/lib/VFS/ISOWriter +@dirrm %%HORDEDIR%%/lib/VFS +@dirrm %%HORDEDIR%%/lib/Text/tests +@dirrm %%HORDEDIR%%/lib/Text/reST/Formatter +@dirrm %%HORDEDIR%%/lib/Text/reST +@dirrm %%HORDEDIR%%/lib/Text/docs/examples +@dirrm %%HORDEDIR%%/lib/Text/docs +@dirrm %%HORDEDIR%%/lib/Text/Diff/Renderer +@dirrm %%HORDEDIR%%/lib/Text/Diff +@dirrm %%HORDEDIR%%/lib/Text +@dirrm %%HORDEDIR%%/lib/Net/SMS +@dirrm %%HORDEDIR%%/lib/Net/IMSP/Auth +@dirrm %%HORDEDIR%%/lib/Net/IMSP +@dirrm %%HORDEDIR%%/lib/Net +@dirrm %%HORDEDIR%%/lib/Horde/tests +@dirrm %%HORDEDIR%%/lib/Horde/iCalendar +@dirrm %%HORDEDIR%%/lib/Horde/docs +@dirrm %%HORDEDIR%%/lib/Horde/VC +@dirrm %%HORDEDIR%%/lib/Horde/UI/VarRenderer +@dirrm %%HORDEDIR%%/lib/Horde/UI +@dirrm %%HORDEDIR%%/lib/Horde/Tree +@dirrm %%HORDEDIR%%/lib/Horde/Token +@dirrm %%HORDEDIR%%/lib/Horde/Text/tests +@dirrm %%HORDEDIR%%/lib/Horde/Text/Filter +@dirrm %%HORDEDIR%%/lib/Horde/Text +@dirrm %%HORDEDIR%%/lib/Horde/SyncML/Sync +@dirrm %%HORDEDIR%%/lib/Horde/SyncML/Command/Sync +@dirrm %%HORDEDIR%%/lib/Horde/SyncML/Command +@dirrm %%HORDEDIR%%/lib/Horde/SyncML +@dirrm %%HORDEDIR%%/lib/Horde/SessionHandler +@dirrm %%HORDEDIR%%/lib/Horde/Search +@dirrm %%HORDEDIR%%/lib/Horde/Scheduler +@dirrm %%HORDEDIR%%/lib/Horde/SQL +@dirrm %%HORDEDIR%%/lib/Horde/Relationship +@dirrm %%HORDEDIR%%/lib/Horde/RPC +@dirrm %%HORDEDIR%%/lib/Horde/Prefs +@dirrm %%HORDEDIR%%/lib/Horde/Perms +@dirrm %%HORDEDIR%%/lib/Horde/Notification/Listener +@dirrm %%HORDEDIR%%/lib/Horde/Notification +@dirrm %%HORDEDIR%%/lib/Horde/NLS +@dirrm %%HORDEDIR%%/lib/Horde/Mobile/Renderer +@dirrm %%HORDEDIR%%/lib/Horde/Mobile +@dirrm %%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo +@dirrm %%HORDEDIR%%/lib/Horde/MIME/Viewer +@dirrm %%HORDEDIR%%/lib/Horde/MIME +@dirrm %%HORDEDIR%%/lib/Horde/Image +@dirrm %%HORDEDIR%%/lib/Horde/IMAP/ACL +@dirrm %%HORDEDIR%%/lib/Horde/IMAP +@dirrm %%HORDEDIR%%/lib/Horde/Group +@dirrm %%HORDEDIR%%/lib/Horde/Graph/Plot +@dirrm %%HORDEDIR%%/lib/Horde/Graph/Chart +@dirrm %%HORDEDIR%%/lib/Horde/Graph +@dirrm %%HORDEDIR%%/lib/Horde/Form/Action +@dirrm %%HORDEDIR%%/lib/Horde/Form +@dirrm %%HORDEDIR%%/lib/Horde/Editor +@dirrm %%HORDEDIR%%/lib/Horde/DataTree +@dirrm %%HORDEDIR%%/lib/Horde/Data +@dirrm %%HORDEDIR%%/lib/Horde/Crypt +@dirrm %%HORDEDIR%%/lib/Horde/Compress +@dirrm %%HORDEDIR%%/lib/Horde/Cipher/BlockMode +@dirrm %%HORDEDIR%%/lib/Horde/Cipher +@dirrm %%HORDEDIR%%/lib/Horde/Cache +@dirrm %%HORDEDIR%%/lib/Horde/Browser +@dirrm %%HORDEDIR%%/lib/Horde/Block +@dirrm %%HORDEDIR%%/lib/Horde/Auth +@dirrm %%HORDEDIR%%/lib/Horde +@dirrm %%HORDEDIR%%/lib/File/PDF/fonts +@dirrm %%HORDEDIR%%/lib/File/PDF +@dirrm %%HORDEDIR%%/lib/File +@dirrm %%HORDEDIR%%/lib/Block +@dirrm %%HORDEDIR%%/lib +@dirrm %%HORDEDIR%%/js +@unexec rmdir %D/%%HORDEDIR%%/config 2>/dev/null || true +@dirrm %%HORDEDIR%%/admin/setup +@dirrm %%HORDEDIR%%/admin/perms +@dirrm %%HORDEDIR%%/admin/locale/fi_FI +@dirrm %%HORDEDIR%%/admin/locale/en_US +@dirrm %%HORDEDIR%%/admin/locale +@dirrm %%HORDEDIR%%/admin +@unexec rmdir %D/%%HORDEDIR%% 2>/dev/null || true +%%PORTDOCS%%@dirrm %%DOCSDIR%% +@unexec rmdir %D/etc/horde 2>/dev/null || true diff --git a/www/horde/Makefile b/www/horde/Makefile new file mode 100644 index 000000000000..af93b6b1ebbc --- /dev/null +++ b/www/horde/Makefile @@ -0,0 +1,343 @@ +# Ports collection makefile for: horde2 +# Date created: Sun Oct 07, 2001 +# Whom: Thierry Thomas (<thierry@thomas.as>) +# +# $FreeBSD$ +# + +PORTNAME= horde +PORTVERSION= 3.0 +CATEGORIES= www +MASTER_SITES= ftp://ftp.horde.org/pub/horde/ \ + ftp://ftp.planetmirror.com/pub/horde/horde/ \ + ftp://ftp.au.horde.org/pub/horde/horde/ \ + ftp://ftp.be.horde.org/horde/ \ + ftp://ftp.es.horde.org/pub/horde/ \ + ftp://ftp.it.horde.org/pub/mirror/horde.org/horde/ \ + ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/horde/ \ + ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/horde/ \ + http://ftp.horde.org/pub/horde/ +.if defined(WITH_PHP5) +PKGNAMESUFFIX= -php5 +.endif + +MAINTAINER= thierry@FreeBSD.org +COMMENT= A common code-base used by Horde applications, written in PHP + +#---------------------------------------------------------------------------- +# You may define these options: +# +# - WITH_APACHE2: if you run Apache2. +# +# - WITH_PHP5: if you run PHP5 (you could use www/horde-php5). +# +# - WITHOUT_SUPPORTED_DB: if you run a database not in the ports tree. +# +# - WITHOUT_MYSQL: this port is built with MySQL by default +# but you might choose any other database +# supported by PHP (e.g. WITH_POSTGRESQL). +# +# - WITHOUT_IMAP: this port uses IMAP as a default authentication +# backend; use this knob if for +# example you only need Chora. +# +# - WITHOUT_LDAP: if you do not need OpenLDAP. +# +# - WITHOUT_FTP: if you do not need the VFS FTP driver. +# +# - WITHOUT_MCAL: if you don't plan to install Kronolith. +# +# - WITH_IMSP: use IMSP as a preferences backend. +# +# - WITHOUT_FILEINFO: use native code to perform MIME magic lookups. +# +# - WITHOUT_GD: don't perform manipulations on image data with gd. +# +# - WITHOUT_ZLIB: don't compress pages and don't handle zip or gz data. +# +# - WITH_MAGICK: use ImageMagick to perform these image manipulations. +# +# - WITHOUT_ICONV: remove support for UTF-8 character sets. +# - WITHOUT_MBSTRING: +# +# - WITHOUT_WV if your users never receive MS-Word docs; +# +# - WITHOUT_XL if your users never receive MS-Excel sheets +# (or .ppt presentations); +# +# - WITHOUT_GEOIP don't activate MaxMind GeoIP Hostname to Country lookup. +# +# - WITHOUT_SW don't use the weather.com block on the portal page. +# +# - WITHOUT_WEBCPP: don't highlight sources with webcpp. +# +# - WITH_SRCHIGH: highlight sources with source-highlight. +# +# - WITH_ENSCRIPT: highlight sources with enscript. +# +# - WITH_RPM: handle RPM packages. +# +# - WITH_DEB: handle Debian packages. +# +#---------------------------------------------------------------------------- + +RUN_DEPENDS+= ${PEARDIR}/Date.php:${PORTSDIR}/devel/pear-Date \ + ${PEARDIR}/Log.php:${PORTSDIR}/sysutils/pear-Log \ + ${PEARDIR}/Mail/mime.php:${PORTSDIR}/mail/pear-Mail_Mime \ + ${PEARDIR}/DB.php:${PORTSDIR}/databases/pear-DB \ + ${PEARDIR}/File.php:${PORTSDIR}/sysutils/pear-File \ + ${PEARDIR}/Net/SMTP.php:${PORTSDIR}/net/pear-Net_SMTP + +CONFLICTS= horde-2.* + +NO_BUILD= yes +USE_PHP= ctype gettext session +WANT_PHP_MOD= yes +USE_REINPLACE= yes +PKGMESSAGE= ${WRKDIR}/pkg-message + +.if !defined(WITHOUT_FILEINFO) +USE_PHP+= fileinfo +.endif +.if !defined(WITHOUT_FTP) +USE_PHP+= ftp +.endif +.if !defined(WITHOUT_GD) +USE_PHP+= gd +.endif +.if !defined(WITHOUT_ICONV) +USE_PHP+= iconv +.endif +.if !defined(WITHOUT_IMAP) +USE_PHP+= imap +.endif +.if !defined(WITHOUT_LDAP) +USE_PHP+= ldap +.endif +.if !defined(WITHOUT_MBSTRING) +USE_PHP+= mbstring +.endif +.if !defined(NOCRYPT) +USE_PHP+= mcrypt +.endif +.if !defined(WITHOUT_SUPPORTED_DB) +. if !defined(WITHOUT_MYSQL) +USE_PHP+= mysql +. endif +. if defined(WITH_POSTGRESQL) +USE_PHP+= pgsql +. endif +.endif +.if !defined(WITHOUT_ZLIB) +USE_PHP+= zlib +.endif +.if defined(WITH_MAGICK) +RUN_DEPENDS+= convert:${PORTSDIR}/graphics/ImageMagick +.endif +.if defined(WITH_IMSP) +RUN_DEPENDS+= imspd:${PORTSDIR}/databases/cyrus-imspd +.endif + +.if !defined(WITHOUT_X11) +. if !defined(WITHOUT_WV) +RUN_DEPENDS+= ${LOCALBASE}/bin/wvHtml:${PORTSDIR}/textproc/wv +. endif +. if !defined(WITHOUT_XL) +RUN_DEPENDS+= ${LOCALBASE}/bin/xlhtml:${PORTSDIR}/textproc/xlhtml +. endif +.endif + +.if !defined(WITHOUT_WEBCPP) +RUN_DEPENDS+= webcpp:${PORTSDIR}/textproc/webcpp +.endif + +.if exists(${LOCALBASE}/bin/source-highlight) +WITH_SRCHIGH= yes +.endif +.if defined(WITH_SRCHIGH) +RUN_DEPENDS+= source-highlight:${PORTSDIR}/textproc/source-highlight +.endif + +.if exists(${LOCALBASE}/bin/enscript) +WITH_ENSCRIPT= yes +.endif +.if defined(WITH_ENSCRIPT) +. if defined(A4) +RUN_DEPENDS+= enscript:${PORTSDIR}/print/enscript-a4 +. elif defined(DJ) +RUN_DEPENDS+= enscript:${PORTSDIR}/print/enscript-letterdj +. else +RUN_DEPENDS+= enscript:${PORTSDIR}/print/enscript-letter +. endif +.endif + +.if exists(${LOCALBASE}/bin/rpm) +WITH_RPM= yes +.endif +.if defined(WITH_RPM) +RUN_DEPENDS+= rpm:${PORTSDIR}/archivers/rpm4 +.endif + +.if exists(${LOCALBASE}/bin/dpkg) +WITH_DEB= yes +.endif +.if defined(WITH_DEB) +RUN_DEPENDS+= dpkg:${PORTSDIR}/archivers/dpkg +.endif + +.if !defined(WITHOUT_SW) +RUN_DEPENDS+= ${PEARDIR}/Services/Weather.php:${PORTSDIR}/misc/pear-Services_Weather +.endif + +.if !defined(WITHOUT_GEOIP) +RUN_DEPENDS+= ${LOCALBASE}/share/GeoIP/GeoIP.dat:${PORTSDIR}/net/GeoIP +.endif + +REINPLACE_ARGS= -i.beforeHorde +DOCS= COPYING README docs/CHANGES docs/CODING_STANDARDS \ + docs/CONTRIBUTING docs/CREDITS docs/HACKING docs/INSTALL \ + docs/PERFORMANCE docs/RELEASE docs/RELEASE_NOTES docs/SECURITY \ + docs/TODO docs/TRANSLATIONS docs/UPGRADING +CONFFILE= conf.php mime_drivers.php motd.php nls.php prefs.php registry.php +SUB_DIRS= admin config js lib locale po scripts services templates themes util + +LHORDEDIR?= www/horde +LHORDESBIN?= sbin + +PLIST_SUB= HORDEDIR=${LHORDEDIR} HORDESBIN=${LHORDESBIN} + +HORDEDIR= ${PREFIX}/${LHORDEDIR} +HORDESBIN= ${PREFIX}/${LHORDESBIN} +CONFDIR= ${HORDEDIR}/config + +APACHE_CONF= ${APACHE_CNFDIR}/httpd.conf +PEARDIR?= ${LOCALBASE}/share/pear +.if defined(WITH_APACHE2) +APACHE_CNFDIR= ${LOCALBASE}/etc/apache2 +.else +APACHE_CNFDIR= ${LOCALBASE}/etc/apache +.endif +HORDE_INC= ${PREFIX}/etc/horde +LOG_FILE?= /var/log/horde.log + +.if defined(WITH_PHP5) +USE_PHP+= dom +.else +USE_PHP+= domxml +. if !defined(WITHOUT_MCAL) +USE_PHP+= mcal +. endif +.endif + +.include <bsd.port.pre.mk> # Required to test PHP_VER + +pre-configure: + @${RM} ${WRKSRC}/po/translation.php.orig \ + ${WRKSRC}/config/conf.xml.orig \ + ${WRKSRC}/scripts/sql/README.orig \ + ${WRKSRC}/config/mime_drivers.php.dist.orig + @${SED} -e "s:/home/httpd/html/horde:${HORDEDIR}:" \ + -e "s:php_value auto_prepend_file:# php_value auto_prepend_file:" \ + -e "s:/home/httpd/phplib:${PEARDIR}:" \ + ${FILESDIR}/httpd.conf.horde > ${WRKDIR}/httpd.conf.horde +.if ${PHP_VER} == 5 + @${REINPLACE_CMD} -e "s:mod_php4.c:mod_php5.c:" ${WRKDIR}/httpd.conf.horde +.endif + @${REINPLACE_CMD} -e "s:%%LOCALBASE%%:${LOCALBASE}:" ${WRKSRC}/config/mime_drivers.php.dist +.if !defined(WITHOUT_X11) +. if !defined(WITHOUT_WV) + @${REINPLACE_CMD} -e "s://UNCOMMENTIFWV::" ${WRKSRC}/config/mime_drivers.php.dist +. endif +. if !defined(WITHOUT_XL) + @${REINPLACE_CMD} -e "s://UNCOMMENTIFXL::" ${WRKSRC}/config/mime_drivers.php.dist +. endif +.endif +.if !defined(WITHOUT_WEBCPP) + @${REINPLACE_CMD} -e "s://UNCOMMENTIFWCPP::" ${WRKSRC}/config/mime_drivers.php.dist +.endif +.if defined(WITH_SRCHIGH) + @${REINPLACE_CMD} -e "s://UNCOMMENTIFSRCHIGH::" ${WRKSRC}/config/mime_drivers.php.dist +.endif +.if defined(WITH_ENSCRIPT) + @${REINPLACE_CMD} -e "s://UNCOMMENTIFES::" ${WRKSRC}/config/mime_drivers.php.dist +.endif +.if defined(WITH_RPM) + @${REINPLACE_CMD} -e "s://UNCOMMENTIFRPM::" ${WRKSRC}/config/mime_drivers.php.dist +.endif +.if defined(WITH_DEB) + @${REINPLACE_CMD} -e "s://UNCOMMENTIFDEB::" ${WRKSRC}/config/mime_drivers.php.dist +.endif +.if !defined(WITHOUT_GEOIP) + @${REINPLACE_CMD} -e "s:GeoIP lookup will not be performed.\"/>:GeoIP lookup will not be performed.\">${LOCALBASE}/share/GeoIP/GeoIP.dat</configstring>:" \ + ${WRKSRC}/config/conf.xml +.endif + @${REINPLACE_CMD} -e "s:/tmp/horde.log:${LOG_FILE}:" ${WRKSRC}/config/conf.xml + @${REINPLACE_CMD} -e "s:/etc/mpasswd:${LOCALBASE}/etc/mpasswd:g" \ + ${WRKSRC}/lib/Horde/Auth/mcal.php + @${REINPLACE_CMD} -e "s:/usr/local/apache/htdocs:${PREFIX}/www:g" \ + ${WRKSRC}/docs/INSTALL + @${RM} ${WRKSRC}/lib/Horde/Auth/mcal.php.beforeHorde \ + ${WRKSRC}/config/conf.xml.beforeHorde \ + ${WRKSRC}/config/mime_drivers.php.dist.beforeHorde \ + ${WRKSRC}/docs/INSTALL.beforeHorde + +pre-install: +.if !defined(WITHOUT_SUPPORTED_DB) + @if ! php -m | ${GREP} -q -e "mysql" ; then \ + if ! php -m | ${GREP} -q -e "pgsql" ; then \ + if ! php -m | ${GREP} -q -e "sybase" ; then \ + ${ECHO_MSG} "" ; \ + ${ECHO_MSG} "Please configure PHP with a database support." ; \ + ${ECHO_MSG} "MySQL, PostgreSQL and Sybase (CTLIB or DBLIB)" ; \ + ${ECHO_MSG} "can be used with PHP AND Horde." ; \ + ${ECHO_MSG} "" ; \ + ${ECHO_MSG} "(If everything will run on this machine, do not" ; \ + ${ECHO_MSG} " forget to install the database server-side!)" ; \ + ${ECHO_MSG} "" ; \ + ${FALSE} ; \ + fi ; \ + fi ; \ + fi +.endif + +do-install: + @${MKDIR} ${HORDEDIR} +.for REP in ${SUB_DIRS} + @${CP} -Rp ${WRKSRC}/${REP} ${HORDEDIR} +.endfor + @${CP} -p ${WRKSRC}/*.php ${HORDEDIR} +.for FILE in ${CONFFILE} + @if [ ! -f ${CONFDIR}/${FILE} ]; then \ + ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ + fi +.endfor + @${CP} ${WRKSRC}/scripts/set_perms.sh ${HORDESBIN}/horde_set_perms.sh + @${CHMOD} u+x ${HORDESBIN}/horde_set_perms.sh + @${MKDIR} ${HORDE_INC} + @${INSTALL_DATA} ${WRKDIR}/httpd.conf.horde ${HORDE_INC} + @(if [ -f ${APACHE_CONF} ] ; then \ + ${ECHO_MSG} "===> Updating ${APACHE_CONF}..." ; \ + ${ECHO_CMD} "# Horde's include directory" >> ${APACHE_CONF} ; \ + ${ECHO_CMD} "Include ${HORDE_INC}" >> ${APACHE_CONF} ; \ + fi) + @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${HORDEDIR} + @${CHMOD} -R o-rwx ${CONFDIR} + @${TOUCH} ${LOG_FILE} + @${CHOWN} ${WWWOWN}:${WWWGRP} ${LOG_FILE} +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} +.for FILE in ${DOCS} + @${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR} +.endfor + @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." +.endif + +post-install: + @${SED} -e "s:%%HORDEDIR%%:${HORDEDIR}:g;s:%%APACHE_CONF%%:${APACHE_CONF}:g" \ + -e "s:%%HORDESBIN%%:${HORDESBIN}:;s:%%DOCSDIR%%:${DOCSDIR}:" \ + ${FILESDIR}/pkg-message.in > ${PKGMESSAGE} + @${ECHO_MSG} + @${CAT} ${PKGMESSAGE} + @${ECHO_MSG} + +.include <bsd.port.post.mk> diff --git a/www/horde/distinfo b/www/horde/distinfo new file mode 100644 index 000000000000..ff1486286d73 --- /dev/null +++ b/www/horde/distinfo @@ -0,0 +1,2 @@ +MD5 (horde-3.0.tar.gz) = afe2a76062169cf5cd2cc5a3001fcc6a +SIZE (horde-3.0.tar.gz) = 3113591 diff --git a/www/horde/files/httpd.conf.horde b/www/horde/files/httpd.conf.horde new file mode 100644 index 000000000000..0bd4b621c52b --- /dev/null +++ b/www/horde/files/httpd.conf.horde @@ -0,0 +1,57 @@ +# This is included in Apache's httpd.conf for Horde + +<Directory /home/httpd/html/horde> + Options Indexes FollowSymLinks + AllowOverride None + order allow,deny + allow from all + <IfModule mod_php4.c> + php_value include_path '/home/httpd/phplib:.' + php_flag register_globals On + php_flag magic_quotes_gpc Off + php_flag track_vars On + php_value memory_limit 16M + </IfModule> +</Directory> + +<IfModule mod_alias.c> + Alias /horde/ "/home/httpd/html/horde/" +</IfModule> +# +# For security, don't serve pages from the Horde configuration and library +# directories. +# +#<Directory "/home/httpd/html/horde/admin"> +# Order deny,allow +# Deny from all +#</Directory> +<Directory "/home/httpd/html/horde/config"> + Order deny,allow + Deny from all +</Directory> +<Directory "/home/httpd/html/horde/lib"> + Order deny,allow + Deny from all +</Directory> +<Directory "/home/httpd/html/horde/locale"> + Order deny,allow + Deny from all +</Directory> +<Directory "/home/httpd/html/horde/po"> + Order deny,allow + Deny from all +</Directory> +<Directory "/home/httpd/html/horde/scripts"> + Order deny,allow + Deny from all +</Directory> +<Directory "/home/httpd/html/horde/templates"> + Order deny,allow + Deny from all +</Directory> +<Directory "/home/httpd/html/horde/util"> + Order deny,allow + Deny from all +</Directory> +# End of Horde configuration ================ + diff --git a/www/horde/files/patch-config_conf.xml b/www/horde/files/patch-config_conf.xml new file mode 100644 index 000000000000..56f6f6a346f7 --- /dev/null +++ b/www/horde/files/patch-config_conf.xml @@ -0,0 +1,20 @@ +--- config/conf.xml.orig Fri Nov 5 10:54:09 2004 ++++ config/conf.xml Sat Nov 27 23:20:31 2004 +@@ -276,7 +276,7 @@ + + <case name="login" desc="Login (su) authentication"> + <configsection name="params"> +- <configstring name="location" desc="Location of the su binary">/bin/su</configstring> ++ <configstring name="location" desc="Location of the su binary">/usr/bin/su</configstring> + </configsection> + </case> + +@@ -932,7 +932,7 @@ + <configsection name="params"> + <configstring name="sendmail_path" required="false" desc="The location + of the sendmail binary on the filesystem +- [/usr/sbin/sendmail]">/usr/lib/sendmail</configstring> ++ [/usr/sbin/sendmail]">/usr/sbin/sendmail</configstring> + <configstring name="sendmail_args" required="false" desc="Any extra + parameters to pass to the sendmail or sendmail wrapper + binary">-oi</configstring> diff --git a/www/horde/files/patch-config_mime_drivers.php.dist b/www/horde/files/patch-config_mime_drivers.php.dist new file mode 100644 index 000000000000..b0417103aace --- /dev/null +++ b/www/horde/files/patch-config_mime_drivers.php.dist @@ -0,0 +1,250 @@ +--- config/mime_drivers.php.dist.orig Fri Nov 19 03:40:31 2004 ++++ config/mime_drivers.php.dist Thu Nov 25 21:58:43 2004 +@@ -37,10 +37,20 @@ + * zip Zip files + */ + $mime_drivers_map['horde']['registered'] = array( +- 'css', 'deb', 'enriched', 'enscript', 'html', 'images', 'msword', 'msexcel', +- 'mspowerpoint', 'ooo', 'pdf', 'php', 'plain', 'rar', 'report', +- 'richtext', 'rpm', 'security', 'simple', 'srchighlite', 'tgz', 'tnef', +- 'vcard', 'webcpp', 'zip'); ++ 'css' ++//UNCOMMENTIFDEB , 'deb' ++ , 'enriched' ++//UNCOMMENTIFES , 'enscript' ++ , 'html', 'images' ++//UNCOMMENTIFWV , 'msword' ++//UNCOMMENTIFXL , 'msexcel', 'mspowerpoint' ++ , 'ooo', 'pdf', 'php', 'plain', 'rar', 'report', 'richtext' ++//UNCOMMENTIFRPM , 'rpm' ++ , 'security', 'simple' ++//UNCOMMENTIFSRCHIGH , 'srchighlite' ++ , 'tgz', 'tnef', 'vcard' ++//UNCOMMENTIFWCPP , 'webcpp' ++ , 'zip'); + + + /** +@@ -161,66 +171,66 @@ + * Web C Plus Plus driver settings + * http://webcpp.sourceforge.net/ + */ +-$mime_drivers['horde']['webcpp']['location'] = 'C:\Program Files\Jeffrey Bakker\webcpp\webcpp.exe'; +-$mime_drivers['horde']['webcpp']['inline'] = true; +-$mime_drivers['horde']['webcpp']['handles'] = array( +- 'text/xml', 'text/sgml', 'application/xml', +- 'application/x-sh', 'application/x-javascript', 'application/x-tcl', +- 'x-extension/asm', 'application/x-asp', 'x-extension/bas', +- 'x-extension/cs', 'text/x-csrc', 'x-extension/rc', +- 'text/x-c++src', 'text/x-c++src', 'text/x-c++src', +- 'text/x-chdr', 'x-extension/bat', 'text/x-fortran', +- 'x-extension/f77', 'x-extension/f90', 'x-extension/for', +- 'x-extension/ftn', 'text/x-java', 'application/x-javascript', +- 'text/sgml', 'text/xml', 'text/x-pascal', +- 'application/x-cgi', 'application/x-perl', 'application/x-python', +- 'text/x-sql', 'text/x-tcl', +- 'application/x-shellscript', 'x-extension/vhd', 'x-extension/vhdl'); +-$mime_drivers['horde']['webcpp']['icons'] = array( +- 'default' => 'text.png', +- 'text/xml' => 'xml.png', +- 'text/x-csrc' => 'source-c.png', +- 'text/x-chdr' => 'source-h.png', +- 'text/x-java' => 'source-java.png', +- 'application/x-javascript' => 'script-js.png'); ++//UNCOMMENTIFWCPP$mime_drivers['horde']['webcpp']['location'] = '%%LOCALBASE%%/bin/webcpp'; ++//UNCOMMENTIFWCPP$mime_drivers['horde']['webcpp']['inline'] = true; ++//UNCOMMENTIFWCPP$mime_drivers['horde']['webcpp']['handles'] = array( ++//UNCOMMENTIFWCPP 'text/xml', 'text/sgml', 'application/xml', ++//UNCOMMENTIFWCPP 'application/x-sh', 'application/x-javascript', 'application/x-tcl', ++//UNCOMMENTIFWCPP 'x-extension/asm', 'application/x-asp', 'x-extension/bas', ++//UNCOMMENTIFWCPP 'x-extension/cs', 'text/x-csrc', 'x-extension/rc', ++//UNCOMMENTIFWCPP 'text/x-c++src', 'text/x-c++src', 'text/x-c++src', ++//UNCOMMENTIFWCPP 'text/x-chdr', 'x-extension/bat', 'text/x-fortran', ++//UNCOMMENTIFWCPP 'x-extension/f77', 'x-extension/f90', 'x-extension/for', ++//UNCOMMENTIFWCPP 'x-extension/ftn', 'text/x-java', 'application/x-javascript', ++//UNCOMMENTIFWCPP 'text/sgml', 'text/xml', 'text/x-pascal', ++//UNCOMMENTIFWCPP 'application/x-cgi', 'application/x-perl', 'application/x-python', ++//UNCOMMENTIFWCPP 'text/x-sql', 'text/x-tcl', ++//UNCOMMENTIFWCPP 'application/x-shellscript', 'x-extension/vhd', 'x-extension/vhdl'); ++//UNCOMMENTIFWCPP$mime_drivers['horde']['webcpp']['icons'] = array( ++//UNCOMMENTIFWCPP 'default' => 'text.png', ++//UNCOMMENTIFWCPP 'text/xml' => 'xml.png', ++//UNCOMMENTIFWCPP 'text/x-csrc' => 'source-c.png', ++//UNCOMMENTIFWCPP 'text/x-chdr' => 'source-h.png', ++//UNCOMMENTIFWCPP 'text/x-java' => 'source-java.png', ++//UNCOMMENTIFWCPP 'application/x-javascript' => 'script-js.png'); + + /** + * Source-Highlight driver settings + * http://www.gnu.org/software/src-highlite/ + */ +-$mime_drivers['horde']['srchighlite']['location'] = 'C:\Program Files\src-highlite\bin\source-highlight.exe'; +-$mime_drivers['horde']['srchighlite']['inline'] = true; +-$mime_drivers['horde']['srchighlite']['handles'] = array( +- 'text/x-csrc', 'text/x-c++src', 'text/x-java', +- 'application/x-perl', 'application/x-python', 'text/x-c++src', +- 'text/cpp'); +-$mime_drivers['horde']['srchighlite']['icons'] = array( +- 'default' => 'text.png', +- 'text/x-csrc' => 'source-c.png', +- 'text/x-c++src' => 'source-c.png', +- 'text/cpp' => 'source-c.png', +- 'text/x-java' => 'source-java.png'); ++//UNCOMMENTIFSRCHIGH$mime_drivers['horde']['srchighlite']['location'] = '%%LOCALBASE%%/bin/source-highlight'; ++//UNCOMMENTIFSRCHIGH$mime_drivers['horde']['srchighlite']['inline'] = true; ++//UNCOMMENTIFSRCHIGH$mime_drivers['horde']['srchighlite']['handles'] = array( ++//UNCOMMENTIFSRCHIGH 'text/x-csrc', 'text/x-c++src', 'text/x-java', ++//UNCOMMENTIFSRCHIGH 'application/x-perl', 'application/x-python', 'text/x-c++src', ++//UNCOMMENTIFSRCHIGH 'text/cpp'); ++//UNCOMMENTIFSRCHIGH$mime_drivers['horde']['srchighlite']['icons'] = array( ++//UNCOMMENTIFSRCHIGH 'default' => 'text.png', ++//UNCOMMENTIFSRCHIGH 'text/x-csrc' => 'source-c.png', ++//UNCOMMENTIFSRCHIGH 'text/x-c++src' => 'source-c.png', ++//UNCOMMENTIFSRCHIGH 'text/cpp' => 'source-c.png', ++//UNCOMMENTIFSRCHIGH 'text/x-java' => 'source-java.png'); + + /** + * GNU Enscript driver settings + */ +-$mime_drivers['horde']['enscript']['location'] = '/usr/bin/enscript'; +-$mime_drivers['horde']['enscript']['inline'] = true; +-$mime_drivers['horde']['enscript']['handles'] = array( +- 'application/x-shellscript', 'application/x-javascript', +- 'application/x-perl', 'application/xml', 'text/xml', +- 'text/diff', 'text/x-diff', 'text/x-patch', 'text/x-csrc', +- 'x-extension/cs', 'text/x-java', 'text/x-chdr', 'text/x-c++src', +- 'text/x-c++hdr', 'x-extension/vhd', 'x-extension/vhdl', 'text/x-sql', +- 'x-extension/vb', 'x-extension/vba', 'text/x-emacs-lisp'); +-$mime_drivers['horde']['enscript']['icons'] = array( +- 'default' => 'text.png', +- 'text/xml' => 'xml.png', +- 'application/xml' => 'xml.png', +- 'text/x-csrc' => 'source-c.png', +- 'text/x-chdr' => 'source-h.png', +- 'text/x-java' => 'source-java.png', +- 'application/x-javascript' => 'script-js.png'); ++//UNCOMMENTIFES$mime_drivers['horde']['enscript']['location'] = '%%LOCALBASE%%//bin/enscript'; ++//UNCOMMENTIFES$mime_drivers['horde']['enscript']['inline'] = true; ++//UNCOMMENTIFES$mime_drivers['horde']['enscript']['handles'] = array( ++//UNCOMMENTIFES 'application/x-shellscript', 'application/x-javascript', ++//UNCOMMENTIFES 'application/x-perl', 'application/xml', 'text/xml', ++//UNCOMMENTIFES 'text/diff', 'text/x-diff', 'text/x-patch', 'text/x-csrc', ++//UNCOMMENTIFES 'x-extension/cs', 'text/x-java', 'text/x-chdr', 'text/x-c++src', ++//UNCOMMENTIFES 'text/x-c++hdr', 'x-extension/vhd', 'x-extension/vhdl', 'text/x-sql', ++//UNCOMMENTIFES 'x-extension/vb', 'x-extension/vba', 'text/x-emacs-lisp'); ++//UNCOMMENTIFES$mime_drivers['horde']['enscript']['icons'] = array( ++//UNCOMMENTIFES 'default' => 'text.png', ++//UNCOMMENTIFES 'text/xml' => 'xml.png', ++//UNCOMMENTIFES 'application/xml' => 'xml.png', ++//UNCOMMENTIFES 'text/x-csrc' => 'source-c.png', ++//UNCOMMENTIFES 'text/x-chdr' => 'source-h.png', ++//UNCOMMENTIFES 'text/x-java' => 'source-java.png', ++//UNCOMMENTIFES 'application/x-javascript' => 'script-js.png'); + + + /** +@@ -272,14 +282,14 @@ + * The 'location' entry should point to the 'wvHtml' program, NOT the + * 'wvWare' program. + */ +-$mime_drivers['horde']['msword']['location'] = '/usr/bin/wvHtml'; +-$mime_drivers['horde']['msword']['inline'] = false; +-$mime_drivers['horde']['msword']['handles'] = array( +- 'application/msword', +- 'application/rtf', +- 'text/rtf'); +-$mime_drivers['horde']['msword']['icons'] = array( +- 'default' => 'msword.png'); ++//UNCOMMENTIFWV$mime_drivers['horde']['msword']['location'] = '%%LOCALBASE%%/bin/wvHtml'; ++//UNCOMMENTIFWV$mime_drivers['horde']['msword']['inline'] = false; ++//UNCOMMENTIFWV$mime_drivers['horde']['msword']['handles'] = array( ++//UNCOMMENTIFWV 'application/msword', ++//UNCOMMENTIFWV 'application/rtf', ++//UNCOMMENTIFWV 'text/rtf'); ++//UNCOMMENTIFWV$mime_drivers['horde']['msword']['icons'] = array( ++//UNCOMMENTIFWV 'default' => 'msword.png'); + + + /** +@@ -287,14 +297,14 @@ + * This driver requires xlhtml to be installed. + * xlhtml homepage: http://chicago.sourceforge.net/xlhtml/ + */ +-$mime_drivers['horde']['msexcel']['location'] = '/usr/local/bin/xlhtml'; +-$mime_drivers['horde']['msexcel']['inline'] = false; +-$mime_drivers['horde']['msexcel']['handles'] = array( +- 'application/vnd.ms-excel', +- 'application/msexcel', +- 'application/x-msexcel'); +-$mime_drivers['horde']['msexcel']['icons'] = array( +- 'default' => 'msexcel.png'); ++//UNCOMMENTIFXL$mime_drivers['horde']['msexcel']['location'] = '%%LOCALBASE%%/bin/xlhtml'; ++//UNCOMMENTIFXL$mime_drivers['horde']['msexcel']['inline'] = false; ++//UNCOMMENTIFXL$mime_drivers['horde']['msexcel']['handles'] = array( ++//UNCOMMENTIFXL 'application/vnd.ms-excel', ++//UNCOMMENTIFXL 'application/msexcel', ++//UNCOMMENTIFXL 'application/x-msexcel'); ++//UNCOMMENTIFXL$mime_drivers['horde']['msexcel']['icons'] = array( ++//UNCOMMENTIFXL 'default' => 'msexcel.png'); + + + /** +@@ -302,13 +312,13 @@ + * This driver requires ppthtml, included with xlhtml, to be installed. + * xlhtml homepage: http://chicago.sourceforge.net/xlhtml/ + */ +-$mime_drivers['horde']['mspowerpoint']['location'] = '/usr/local/bin/ppthtml'; +-$mime_drivers['horde']['mspowerpoint']['inline'] = false; +-$mime_drivers['horde']['mspowerpoint']['handles'] = array( +- 'application/vnd.ms-powerpoint', +- 'application/mspowerpoint'); +-$mime_drivers['horde']['mspowerpoint']['icons'] = array( +- 'default' => 'mspowerpoint.png'); ++//UNCOMMENTIFXL$mime_drivers['horde']['mspowerpoint']['location'] = '%%LOCALBASE%%/bin/ppthtml'; ++//UNCOMMENTIFXL$mime_drivers['horde']['mspowerpoint']['inline'] = false; ++//UNCOMMENTIFXL$mime_drivers['horde']['mspowerpoint']['handles'] = array( ++//UNCOMMENTIFXL 'application/vnd.ms-powerpoint', ++//UNCOMMENTIFXL 'application/mspowerpoint'); ++//UNCOMMENTIFXL$mime_drivers['horde']['mspowerpoint']['icons'] = array( ++//UNCOMMENTIFXL 'default' => 'mspowerpoint.png'); + + + /** +@@ -324,24 +334,24 @@ + /** + * RPM driver settings + */ +-$mime_drivers['horde']['rpm']['location'] = '/usr/bin/rpm'; +-$mime_drivers['horde']['rpm']['inline'] = false; +-$mime_drivers['horde']['rpm']['handles'] = array( +- 'application/x-rpm'); +-$mime_drivers['horde']['rpm']['icons'] = array( +- 'default' => 'rpm.png'); ++//UNCOMMENTIFRPM$mime_drivers['horde']['rpm']['location'] = '%%LOCALBASE%%/bin/rpm'; ++//UNCOMMENTIFRPM$mime_drivers['horde']['rpm']['inline'] = false; ++//UNCOMMENTIFRPM$mime_drivers['horde']['rpm']['handles'] = array( ++//UNCOMMENTIFRPM 'application/x-rpm'); ++//UNCOMMENTIFRPM$mime_drivers['horde']['rpm']['icons'] = array( ++//UNCOMMENTIFRPM 'default' => 'rpm.png'); + + + /** + * Debian package driver settings + */ +-$mime_drivers['horde']['deb']['location'] = '/usr/bin/dpkg'; +-$mime_drivers['horde']['deb']['inline'] = false; +-$mime_drivers['horde']['deb']['handles'] = array( +- 'application/x-deb', +- 'application/x-debian-package'); +-$mime_drivers['horde']['deb']['icons'] = array( +- 'default' => 'deb.png'); ++//UNCOMMENTIFDEB$mime_drivers['horde']['deb']['location'] = '%%LOCALBASE%%/bin/dpkg'; ++//UNCOMMENTIFDEB$mime_drivers['horde']['deb']['inline'] = false; ++//UNCOMMENTIFDEB$mime_drivers['horde']['deb']['handles'] = array( ++//UNCOMMENTIFDEB 'application/x-deb', ++//UNCOMMENTIFDEB 'application/x-debian-package'); ++//UNCOMMENTIFDEB$mime_drivers['horde']['deb']['icons'] = array( ++//UNCOMMENTIFDEB 'default' => 'deb.png'); + + + /** diff --git a/www/horde/files/patch-po_translation.php b/www/horde/files/patch-po_translation.php new file mode 100644 index 000000000000..045891903631 --- /dev/null +++ b/www/horde/files/patch-po_translation.php @@ -0,0 +1,8 @@ +--- po/translation.php.orig Tue Jan 21 16:05:36 2003 ++++ po/translation.php Wed Jan 29 23:00:27 2003 +@@ -1,4 +1,4 @@ +-#!/usr/bin/php -q ++#!/usr/local/bin/php -q + <?php + /** + * Translation helper application for the Horde framework. diff --git a/www/horde/files/patch-scripts_sql_README b/www/horde/files/patch-scripts_sql_README new file mode 100644 index 000000000000..6403c0f8e849 --- /dev/null +++ b/www/horde/files/patch-scripts_sql_README @@ -0,0 +1,11 @@ +--- scripts/sql/README.orig Sat Sep 25 21:55:35 2004 ++++ scripts/sql/README Mon Nov 22 13:19:52 2004 +@@ -77,7 +77,7 @@ + PostgreSQL + ~~~~~~~~~~ + +-# su - postgres (or whatever your database runs as... usually postgres) ++# su - pgsql (or whatever your database runs as... usually pgsql) + $ psql -d template1 -f create.pgsql.sql + + This script will create a "horde" database and a "horde" user. You diff --git a/www/horde/files/pkg-message.in b/www/horde/files/pkg-message.in new file mode 100644 index 000000000000..b910ccbe6f2b --- /dev/null +++ b/www/horde/files/pkg-message.in @@ -0,0 +1,36 @@ +************************************************************************ +Horde has been installed in %%HORDEDIR%% with your blank +configuration files. + +If you want Horde to access a database, you have to run the +appropriate scripts located in %%HORDEDIR%%/scripts/sql. +It is recommended that you change the password of the 'hordemgr' +user used to connect to the horde database. +Horde is setup by default to access MySQL. + +WARNING! if you are upgrading from Horde v. 2.2.x, you have to alter your +******** database schemas. Please read the doc UPGRADING. + +You can now access Horde without a password at <http://localhost/horde/>, +and you will be logged in as an administrator. You should first configure +a real authentication backend. Click on "Setup" in the "Administration" +menu and configure Horde. Start in the "Authentication" tab. +See the doc in %%DOCSDIR%% for details. +(tip: if you plan to install IMP, just keep "Automatic authentication as +a certain user", add your login to be treated as administrator, and once +IMP will be installed, switch to "Let a Horde application handle auth"). +Select a log driver; if you keep 'file', do not forget to add a line +in /etc/newsyslog.conf. +Then select and configure a preferences driver. + +Your %%APACHE_CONF%% has been updated, +you have to restart Apache. + +When everything is OK, you should be able to access Horde from +<http://localhost/horde/>. +(If <http://localhost/horde/> does not run, but + <http://localhost/horde/index.php> is OK, then you have + to define index.php as a DirectoryIndex in %%APACHE_CONF%%.) + +There is a testing script at <http://localhost/horde/test.php>. +************************************************************************ diff --git a/www/horde/pkg-deinstall b/www/horde/pkg-deinstall new file mode 100644 index 000000000000..fcecd184cd25 --- /dev/null +++ b/www/horde/pkg-deinstall @@ -0,0 +1,43 @@ +#!/bin/sh +# +# $FreeBSD$ +# +# Try to restore httpd.conf when deinstalling Horde + +if [ x$2 != xDEINSTALL ]; then + exit +fi + +if [ -d ${PKG_PREFIX}/etc/apache ] ; then +APACHEDIR=${PKG_PREFIX}/etc/apache +elif [ -d ${PKG_PREFIX}/etc/apache2 ] ; then +APACHEDIR=${PKG_PREFIX}/etc/apache2 +fi + +if [ -f ${APACHEDIR}/httpd.conf.beforeHorde ] ; then + echo "Restoring httpd.conf..." + cp ${APACHEDIR}/httpd.conf ${APACHEDIR}/httpd.conf.deinstHorde + sed -i.tmp -e "s:Include ${PKG_PREFIX}/etc/horde:# Include ${PKG_PREFIX}/etc/horde:g" \ + ${APACHEDIR}/httpd.conf + rm ${APACHEDIR}/httpd.conf.tmp +fi + +# Backup Horde config files, if needed. + +if [ -z "${PACKAGE_BUILDING}" ]; then + for cf in `ls ${PKG_PREFIX}/www/horde/config/*php`; do + diff -bBqw $cf $cf.dist >/dev/null 2>&1 + case $? in + 0) # original config file, will be deleted by pkg-plist + ;; + 1) # config file has been updated, must be backuped + cp -p $cf $cf.previous + echo "===> Backing-up..." + echo "---> $cf has been saved ***" + echo "---> as $cf.previous ***" + ;; + *) # not found? + ;; + esac + done +fi diff --git a/www/horde/pkg-descr b/www/horde/pkg-descr new file mode 100644 index 000000000000..5a86429fa7e6 --- /dev/null +++ b/www/horde/pkg-descr @@ -0,0 +1,6 @@ +Horde is a framework used by several applications written in PHP. + +Horde is used by these ports: mail/imp, mail/turba, devel/chora, +deskutils/kronolith, deskutils/nag, mail/ingo and deskutils/mnemo. + +WWW: http://www.horde.org/ diff --git a/www/horde/pkg-plist b/www/horde/pkg-plist new file mode 100644 index 000000000000..08ae948b35f4 --- /dev/null +++ b/www/horde/pkg-plist @@ -0,0 +1,1584 @@ +etc/horde/httpd.conf.horde +%%HORDESBIN%%/horde_set_perms.sh +%%PORTDOCS%%%%DOCSDIR%%/CHANGES +%%PORTDOCS%%%%DOCSDIR%%/CODING_STANDARDS +%%PORTDOCS%%%%DOCSDIR%%/CONTRIBUTING +%%PORTDOCS%%%%DOCSDIR%%/COPYING +%%PORTDOCS%%%%DOCSDIR%%/CREDITS +%%PORTDOCS%%%%DOCSDIR%%/HACKING +%%PORTDOCS%%%%DOCSDIR%%/INSTALL +%%PORTDOCS%%%%DOCSDIR%%/PERFORMANCE +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/RELEASE +%%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES +%%PORTDOCS%%%%DOCSDIR%%/SECURITY +%%PORTDOCS%%%%DOCSDIR%%/TODO +%%PORTDOCS%%%%DOCSDIR%%/TRANSLATIONS +%%PORTDOCS%%%%DOCSDIR%%/UPGRADING +%%HORDEDIR%%/admin/cmdshell.php +%%HORDEDIR%%/admin/datatree.php +%%HORDEDIR%%/admin/groups.php +%%HORDEDIR%%/admin/index.php +%%HORDEDIR%%/admin/locale/en_US/help.xml +%%HORDEDIR%%/admin/locale/fi_FI/help.xml +%%HORDEDIR%%/admin/perms/addchild.php +%%HORDEDIR%%/admin/perms/delete.php +%%HORDEDIR%%/admin/perms/edit.php +%%HORDEDIR%%/admin/perms/index.php +%%HORDEDIR%%/admin/phpshell.php +%%HORDEDIR%%/admin/setup/config.php +%%HORDEDIR%%/admin/setup/diff.php +%%HORDEDIR%%/admin/setup/index.php +%%HORDEDIR%%/admin/setup/scripts.php +%%HORDEDIR%%/admin/sqlshell.php +%%HORDEDIR%%/admin/templates.php +%%HORDEDIR%%/admin/user.php +%%HORDEDIR%%/config/.htaccess +%%HORDEDIR%%/config/conf.php +%%HORDEDIR%%/config/conf.php.dist +%%HORDEDIR%%/config/conf.xml +%%HORDEDIR%%/config/hooks.php.dist +%%HORDEDIR%%/config/mime_drivers.php +%%HORDEDIR%%/config/mime_drivers.php.dist +%%HORDEDIR%%/config/motd.php +%%HORDEDIR%%/config/motd.php.dist +%%HORDEDIR%%/config/nls.php +%%HORDEDIR%%/config/nls.php.dist +%%HORDEDIR%%/config/prefs.php +%%HORDEDIR%%/config/prefs.php.dist +%%HORDEDIR%%/config/registry.php +%%HORDEDIR%%/config/registry.php.dist +%%HORDEDIR%%/index.php +%%HORDEDIR%%/js/alphaImageLoader.php +%%HORDEDIR%%/js/enter_key_trap.js +%%HORDEDIR%%/js/form_assign.js +%%HORDEDIR%%/js/form_helpers.js +%%HORDEDIR%%/js/hideable.js +%%HORDEDIR%%/js/httpclient.js +%%HORDEDIR%%/js/image.js +%%HORDEDIR%%/js/open_colorpicker.js +%%HORDEDIR%%/js/popup.js +%%HORDEDIR%%/js/sorter.js +%%HORDEDIR%%/js/tooltip.js +%%HORDEDIR%%/lib/.htaccess +%%HORDEDIR%%/lib/Block/color.php +%%HORDEDIR%%/lib/Block/fortune.php +%%HORDEDIR%%/lib/Block/google.php +%%HORDEDIR%%/lib/Block/iframe.php +%%HORDEDIR%%/lib/Block/metar.php +%%HORDEDIR%%/lib/Block/moon.php +%%HORDEDIR%%/lib/Block/sunrise.php +%%HORDEDIR%%/lib/Block/time.php +%%HORDEDIR%%/lib/Block/weatherdotcom.php +%%HORDEDIR%%/lib/File/PDF.php +%%HORDEDIR%%/lib/File/PDF/fonts/courier.php +%%HORDEDIR%%/lib/File/PDF/fonts/helvetica.php +%%HORDEDIR%%/lib/File/PDF/fonts/helveticab.php +%%HORDEDIR%%/lib/File/PDF/fonts/helveticabi.php +%%HORDEDIR%%/lib/File/PDF/fonts/helveticai.php +%%HORDEDIR%%/lib/File/PDF/fonts/symbol.php +%%HORDEDIR%%/lib/File/PDF/fonts/times.php +%%HORDEDIR%%/lib/File/PDF/fonts/timesb.php +%%HORDEDIR%%/lib/File/PDF/fonts/timesbi.php +%%HORDEDIR%%/lib/File/PDF/fonts/timesi.php +%%HORDEDIR%%/lib/File/PDF/fonts/zapfdingbats.php +%%HORDEDIR%%/lib/Horde.php +%%HORDEDIR%%/lib/Horde/Array.php +%%HORDEDIR%%/lib/Horde/Auth.php +%%HORDEDIR%%/lib/Horde/Auth/Signup.php +%%HORDEDIR%%/lib/Horde/Auth/application.php +%%HORDEDIR%%/lib/Horde/Auth/auto.php +%%HORDEDIR%%/lib/Horde/Auth/composite.php +%%HORDEDIR%%/lib/Horde/Auth/customsql.php +%%HORDEDIR%%/lib/Horde/Auth/cyrsql.php +%%HORDEDIR%%/lib/Horde/Auth/cyrus.php +%%HORDEDIR%%/lib/Horde/Auth/ftp.php +%%HORDEDIR%%/lib/Horde/Auth/http.php +%%HORDEDIR%%/lib/Horde/Auth/imap.php +%%HORDEDIR%%/lib/Horde/Auth/imsp.php +%%HORDEDIR%%/lib/Horde/Auth/ipbasic.php +%%HORDEDIR%%/lib/Horde/Auth/ipmap.php +%%HORDEDIR%%/lib/Horde/Auth/kolab.php +%%HORDEDIR%%/lib/Horde/Auth/krb5.php +%%HORDEDIR%%/lib/Horde/Auth/ldap.php +%%HORDEDIR%%/lib/Horde/Auth/login.php +%%HORDEDIR%%/lib/Horde/Auth/mcal.php +%%HORDEDIR%%/lib/Horde/Auth/pam.php +%%HORDEDIR%%/lib/Horde/Auth/passwd.php +%%HORDEDIR%%/lib/Horde/Auth/radius.php +%%HORDEDIR%%/lib/Horde/Auth/sasl.php +%%HORDEDIR%%/lib/Horde/Auth/smb.php +%%HORDEDIR%%/lib/Horde/Auth/sql.php +%%HORDEDIR%%/lib/Horde/Auth/yahoo.php +%%HORDEDIR%%/lib/Horde/Block.php +%%HORDEDIR%%/lib/Horde/Block/Collection.php +%%HORDEDIR%%/lib/Horde/Block/Layout.php +%%HORDEDIR%%/lib/Horde/Block/UI.php +%%HORDEDIR%%/lib/Horde/Browser.php +%%HORDEDIR%%/lib/Horde/Browser/imode.php +%%HORDEDIR%%/lib/Horde/CLI.php +%%HORDEDIR%%/lib/Horde/Cache.php +%%HORDEDIR%%/lib/Horde/Cache/file.php +%%HORDEDIR%%/lib/Horde/Cache/zps4.php +%%HORDEDIR%%/lib/Horde/Cipher.php +%%HORDEDIR%%/lib/Horde/Cipher/BlockMode.php +%%HORDEDIR%%/lib/Horde/Cipher/BlockMode/cbc.php +%%HORDEDIR%%/lib/Horde/Cipher/BlockMode/cfb64.php +%%HORDEDIR%%/lib/Horde/Cipher/BlockMode/ecb.php +%%HORDEDIR%%/lib/Horde/Cipher/BlockMode/ofb64.php +%%HORDEDIR%%/lib/Horde/Cipher/blowfish.php +%%HORDEDIR%%/lib/Horde/Cipher/cast128.php +%%HORDEDIR%%/lib/Horde/Cipher/des.php +%%HORDEDIR%%/lib/Horde/Cipher/rc2.php +%%HORDEDIR%%/lib/Horde/Cipher/rc4.php +%%HORDEDIR%%/lib/Horde/Compress.php +%%HORDEDIR%%/lib/Horde/Compress/dbx.php +%%HORDEDIR%%/lib/Horde/Compress/gzip.php +%%HORDEDIR%%/lib/Horde/Compress/tar.php +%%HORDEDIR%%/lib/Horde/Compress/tnef.php +%%HORDEDIR%%/lib/Horde/Compress/zip.php +%%HORDEDIR%%/lib/Horde/Config.php +%%HORDEDIR%%/lib/Horde/Crypt.php +%%HORDEDIR%%/lib/Horde/Crypt/pgp.php +%%HORDEDIR%%/lib/Horde/Crypt/smime.php +%%HORDEDIR%%/lib/Horde/Data.php +%%HORDEDIR%%/lib/Horde/Data/csv.php +%%HORDEDIR%%/lib/Horde/Data/icalendar.php +%%HORDEDIR%%/lib/Horde/Data/imc.php +%%HORDEDIR%%/lib/Horde/Data/outlookcsv.php +%%HORDEDIR%%/lib/Horde/Data/palm.php +%%HORDEDIR%%/lib/Horde/Data/pdb.php +%%HORDEDIR%%/lib/Horde/Data/tsv.php +%%HORDEDIR%%/lib/Horde/Data/vcard.php +%%HORDEDIR%%/lib/Horde/Data/vnote.php +%%HORDEDIR%%/lib/Horde/Data/vtodo.php +%%HORDEDIR%%/lib/Horde/DataTree.php +%%HORDEDIR%%/lib/Horde/DataTree/null.php +%%HORDEDIR%%/lib/Horde/DataTree/sql.php +%%HORDEDIR%%/lib/Horde/Date.php +%%HORDEDIR%%/lib/Horde/Editor.php +%%HORDEDIR%%/lib/Horde/Editor/htmlarea.php +%%HORDEDIR%%/lib/Horde/Form.php +%%HORDEDIR%%/lib/Horde/Form/Action.php +%%HORDEDIR%%/lib/Horde/Form/Action/conditional_enable.php +%%HORDEDIR%%/lib/Horde/Form/Action/conditional_setvalue.php +%%HORDEDIR%%/lib/Horde/Form/Action/reload.php +%%HORDEDIR%%/lib/Horde/Form/Action/submit.php +%%HORDEDIR%%/lib/Horde/Form/Action/sum_fields.php +%%HORDEDIR%%/lib/Horde/Form/Action/updatefield.php +%%HORDEDIR%%/lib/Horde/Form/Renderer.php +%%HORDEDIR%%/lib/Horde/Graph.php +%%HORDEDIR%%/lib/Horde/Graph/Chart/pie.php +%%HORDEDIR%%/lib/Horde/Graph/Chart/pie3d.php +%%HORDEDIR%%/lib/Horde/Graph/Plot/bar.php +%%HORDEDIR%%/lib/Horde/Graph/Plot/bargrouped.php +%%HORDEDIR%%/lib/Horde/Graph/Plot/barstacked.php +%%HORDEDIR%%/lib/Horde/Graph/Plot/line.php +%%HORDEDIR%%/lib/Horde/Graph/Plot/scatter.php +%%HORDEDIR%%/lib/Horde/Group.php +%%HORDEDIR%%/lib/Horde/Group/hooks.php +%%HORDEDIR%%/lib/Horde/Help.php +%%HORDEDIR%%/lib/Horde/History.php +%%HORDEDIR%%/lib/Horde/IMAP/ACL.php +%%HORDEDIR%%/lib/Horde/IMAP/ACL/rfc2086.php +%%HORDEDIR%%/lib/Horde/IMAP/Admin.php +%%HORDEDIR%%/lib/Horde/IMAP/Cache.php +%%HORDEDIR%%/lib/Horde/IMAP/Search.php +%%HORDEDIR%%/lib/Horde/IMAP/Sort.php +%%HORDEDIR%%/lib/Horde/IMAP/Thread.php +%%HORDEDIR%%/lib/Horde/IMAP/Tree.php +%%HORDEDIR%%/lib/Horde/Identity.php +%%HORDEDIR%%/lib/Horde/Image.php +%%HORDEDIR%%/lib/Horde/Image/gd.php +%%HORDEDIR%%/lib/Horde/Image/im.php +%%HORDEDIR%%/lib/Horde/Image/png.php +%%HORDEDIR%%/lib/Horde/Image/rgb.php +%%HORDEDIR%%/lib/Horde/Image/svg.php +%%HORDEDIR%%/lib/Horde/Image/swf.php +%%HORDEDIR%%/lib/Horde/Kolab.php +%%HORDEDIR%%/lib/Horde/LDAP.php +%%HORDEDIR%%/lib/Horde/MIME.php +%%HORDEDIR%%/lib/Horde/MIME/Contents.php +%%HORDEDIR%%/lib/Horde/MIME/Headers.php +%%HORDEDIR%%/lib/Horde/MIME/MDN.php +%%HORDEDIR%%/lib/Horde/MIME/Magic.php +%%HORDEDIR%%/lib/Horde/MIME/Message.php +%%HORDEDIR%%/lib/Horde/MIME/Part.php +%%HORDEDIR%%/lib/Horde/MIME/Structure.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/css.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/deb.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/default.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/enriched.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/enscript.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/html.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/icalendar.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/images.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/msexcel.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/mspowerpoint.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/msword.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/common.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/global_document.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/main_html.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/palm.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/style_header.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/style_inlined.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/style_mapping.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/table.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/table_cells.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/table_columns.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/table_rows.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/pdf.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/php.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/plain.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/rar.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/report.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/rfc822.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/richtext.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/rpm.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/security.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/simple.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/source.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/srchighlite.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/tgz.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/tnef.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/vcard.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/webcpp.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/zip.php +%%HORDEDIR%%/lib/Horde/MIME/mime.magic.php +%%HORDEDIR%%/lib/Horde/MIME/mime.mapping.php +%%HORDEDIR%%/lib/Horde/Maintenance.php +%%HORDEDIR%%/lib/Horde/Menu.php +%%HORDEDIR%%/lib/Horde/Mobile.php +%%HORDEDIR%%/lib/Horde/Mobile/Renderer.php +%%HORDEDIR%%/lib/Horde/Mobile/Renderer/html.php +%%HORDEDIR%%/lib/Horde/Mobile/Renderer/wml.php +%%HORDEDIR%%/lib/Horde/NLS.php +%%HORDEDIR%%/lib/Horde/NLS/GeoIP.php +%%HORDEDIR%%/lib/Horde/NLS/carsigns.php +%%HORDEDIR%%/lib/Horde/NLS/coordinates.php +%%HORDEDIR%%/lib/Horde/NLS/countries.php +%%HORDEDIR%%/lib/Horde/NLS/tld.php +%%HORDEDIR%%/lib/Horde/Notification.php +%%HORDEDIR%%/lib/Horde/Notification/Event.php +%%HORDEDIR%%/lib/Horde/Notification/Listener.php +%%HORDEDIR%%/lib/Horde/Notification/Listener/javascript.php +%%HORDEDIR%%/lib/Horde/Notification/Listener/mobile.php +%%HORDEDIR%%/lib/Horde/Notification/Listener/status.php +%%HORDEDIR%%/lib/Horde/Perms.php +%%HORDEDIR%%/lib/Horde/Perms/UI.php +%%HORDEDIR%%/lib/Horde/Perms/datatree.php +%%HORDEDIR%%/lib/Horde/Prefs.php +%%HORDEDIR%%/lib/Horde/Prefs/CategoryManager.php +%%HORDEDIR%%/lib/Horde/Prefs/UI.php +%%HORDEDIR%%/lib/Horde/Prefs/imsp.php +%%HORDEDIR%%/lib/Horde/Prefs/kolab.php +%%HORDEDIR%%/lib/Horde/Prefs/ldap.php +%%HORDEDIR%%/lib/Horde/Prefs/session.php +%%HORDEDIR%%/lib/Horde/Prefs/sql.php +%%HORDEDIR%%/lib/Horde/RPC.php +%%HORDEDIR%%/lib/Horde/RPC/soap.php +%%HORDEDIR%%/lib/Horde/RPC/syncml.php +%%HORDEDIR%%/lib/Horde/RPC/syncml_wbxml.php +%%HORDEDIR%%/lib/Horde/RPC/webdav.php +%%HORDEDIR%%/lib/Horde/RPC/xmlrpc.php +%%HORDEDIR%%/lib/Horde/Registry.php +%%HORDEDIR%%/lib/Horde/Relationship/Manager.php +%%HORDEDIR%%/lib/Horde/SQL.php +%%HORDEDIR%%/lib/Horde/SQL/Attributes.php +%%HORDEDIR%%/lib/Horde/SQL/Keywords.php +%%HORDEDIR%%/lib/Horde/Scheduler.php +%%HORDEDIR%%/lib/Horde/Scheduler/cron.php +%%HORDEDIR%%/lib/Horde/Search.php +%%HORDEDIR%%/lib/Horde/Search/google.php +%%HORDEDIR%%/lib/Horde/Secret.php +%%HORDEDIR%%/lib/Horde/Serialize.php +%%HORDEDIR%%/lib/Horde/SessionHandler.php +%%HORDEDIR%%/lib/Horde/SessionHandler/dbm.php +%%HORDEDIR%%/lib/Horde/SessionHandler/mysql.php +%%HORDEDIR%%/lib/Horde/SessionHandler/oci8.php +%%HORDEDIR%%/lib/Horde/SessionHandler/pgsql.php +%%HORDEDIR%%/lib/Horde/SessionHandler/sapdb.php +%%HORDEDIR%%/lib/Horde/SessionHandler/sql.php +%%HORDEDIR%%/lib/Horde/SessionObjects.php +%%HORDEDIR%%/lib/Horde/Share.php +%%HORDEDIR%%/lib/Horde/String.php +%%HORDEDIR%%/lib/Horde/SyncML.php +%%HORDEDIR%%/lib/Horde/SyncML/Command.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Alert.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Final.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Get.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Map.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Put.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Replace.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Results.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Status.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Sync.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Sync/Add.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Sync/ContentSyncElement.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Sync/Delete.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Sync/Replace.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Sync/SyncElement.php +%%HORDEDIR%%/lib/Horde/SyncML/State.php +%%HORDEDIR%%/lib/Horde/SyncML/Sync.php +%%HORDEDIR%%/lib/Horde/SyncML/Sync/OneWayFromClientSync.php +%%HORDEDIR%%/lib/Horde/SyncML/Sync/OneWayFromServerSync.php +%%HORDEDIR%%/lib/Horde/SyncML/Sync/RefreshFromClientSync.php +%%HORDEDIR%%/lib/Horde/SyncML/Sync/RefreshFromServerSync.php +%%HORDEDIR%%/lib/Horde/SyncML/Sync/SlowSync.php +%%HORDEDIR%%/lib/Horde/SyncML/Sync/TwoWaySync.php +%%HORDEDIR%%/lib/Horde/Template.php +%%HORDEDIR%%/lib/Horde/Text.php +%%HORDEDIR%%/lib/Horde/Text/Filter.php +%%HORDEDIR%%/lib/Horde/Text/Filter/bbcode.php +%%HORDEDIR%%/lib/Horde/Text/Filter/cleanascii.php +%%HORDEDIR%%/lib/Horde/Text/Filter/dimsignature.php +%%HORDEDIR%%/lib/Horde/Text/Filter/emails.php +%%HORDEDIR%%/lib/Horde/Text/Filter/emoticons.php +%%HORDEDIR%%/lib/Horde/Text/Filter/environment.php +%%HORDEDIR%%/lib/Horde/Text/Filter/highlightquotes.php +%%HORDEDIR%%/lib/Horde/Text/Filter/html2text.php +%%HORDEDIR%%/lib/Horde/Text/Filter/linkurls.php +%%HORDEDIR%%/lib/Horde/Text/Filter/rst.php +%%HORDEDIR%%/lib/Horde/Text/Filter/simplemarkup.php +%%HORDEDIR%%/lib/Horde/Text/Filter/space2html.php +%%HORDEDIR%%/lib/Horde/Text/Filter/tabs2spaces.php +%%HORDEDIR%%/lib/Horde/Text/Filter/text2html.php +%%HORDEDIR%%/lib/Horde/Text/Filter/words.php +%%HORDEDIR%%/lib/Horde/Timer.php +%%HORDEDIR%%/lib/Horde/Token.php +%%HORDEDIR%%/lib/Horde/Token/file.php +%%HORDEDIR%%/lib/Horde/Token/sql.php +%%HORDEDIR%%/lib/Horde/Tree.php +%%HORDEDIR%%/lib/Horde/Tree/html.php +%%HORDEDIR%%/lib/Horde/Tree/javascript.php +%%HORDEDIR%%/lib/Horde/UI/Language.php +%%HORDEDIR%%/lib/Horde/UI/Pager.php +%%HORDEDIR%%/lib/Horde/UI/Table.php +%%HORDEDIR%%/lib/Horde/UI/Tabs.php +%%HORDEDIR%%/lib/Horde/UI/VarRenderer.php +%%HORDEDIR%%/lib/Horde/UI/VarRenderer/html.php +%%HORDEDIR%%/lib/Horde/UI/Widget.php +%%HORDEDIR%%/lib/Horde/Util.php +%%HORDEDIR%%/lib/Horde/VC.php +%%HORDEDIR%%/lib/Horde/VC/cvs.php +%%HORDEDIR%%/lib/Horde/VC/rcs.php +%%HORDEDIR%%/lib/Horde/VC/svn.php +%%HORDEDIR%%/lib/Horde/Variables.php +%%HORDEDIR%%/lib/Horde/iCalendar.php +%%HORDEDIR%%/lib/Horde/iCalendar/valarm.php +%%HORDEDIR%%/lib/Horde/iCalendar/vcard.php +%%HORDEDIR%%/lib/Horde/iCalendar/vevent.php +%%HORDEDIR%%/lib/Horde/iCalendar/vfreebusy.php +%%HORDEDIR%%/lib/Horde/iCalendar/vjournal.php +%%HORDEDIR%%/lib/Horde/iCalendar/vnote.php +%%HORDEDIR%%/lib/Horde/iCalendar/vtimezone.php +%%HORDEDIR%%/lib/Horde/iCalendar/vtodo.php +%%HORDEDIR%%/lib/Net/IMSP.php +%%HORDEDIR%%/lib/Net/IMSP/Auth.php +%%HORDEDIR%%/lib/Net/IMSP/Auth/cram_md5.php +%%HORDEDIR%%/lib/Net/IMSP/Auth/plaintext.php +%%HORDEDIR%%/lib/Net/IMSP/Book.php +%%HORDEDIR%%/lib/Net/IMSP/Options.php +%%HORDEDIR%%/lib/Net/IMSP/Utils.php +%%HORDEDIR%%/lib/Net/SMS.php +%%HORDEDIR%%/lib/Net/SMS/clickatell_http.php +%%HORDEDIR%%/lib/Net/SMS/sms2email_http.php +%%HORDEDIR%%/lib/Net/SMS/vodafoneitaly_smtp.php +%%HORDEDIR%%/lib/Test.php +%%HORDEDIR%%/lib/Text/Diff.php +%%HORDEDIR%%/lib/Text/Diff/Renderer.php +%%HORDEDIR%%/lib/Text/Diff/Renderer/inline.php +%%HORDEDIR%%/lib/Text/Diff/Renderer/unified.php +%%HORDEDIR%%/lib/Text/Diff3.php +%%HORDEDIR%%/lib/Text/Flowed.php +%%HORDEDIR%%/lib/Text/reST.php +%%HORDEDIR%%/lib/Text/reST/Formatter.php +%%HORDEDIR%%/lib/Text/reST/Formatter/html.php +%%HORDEDIR%%/lib/Text/reST/Parser.php +%%HORDEDIR%%/lib/VFS.php +%%HORDEDIR%%/lib/VFS/Browser.php +%%HORDEDIR%%/lib/VFS/GC.php +%%HORDEDIR%%/lib/VFS/ISOWriter.php +%%HORDEDIR%%/lib/VFS/ISOWriter/RealInputStrategy.php +%%HORDEDIR%%/lib/VFS/ISOWriter/RealInputStrategy/copy.php +%%HORDEDIR%%/lib/VFS/ISOWriter/RealInputStrategy/direct.php +%%HORDEDIR%%/lib/VFS/ISOWriter/RealOutputStrategy.php +%%HORDEDIR%%/lib/VFS/ISOWriter/RealOutputStrategy/copy.php +%%HORDEDIR%%/lib/VFS/ISOWriter/RealOutputStrategy/direct.php +%%HORDEDIR%%/lib/VFS/ISOWriter/mkisofs.php +%%HORDEDIR%%/lib/VFS/ListItem.php +%%HORDEDIR%%/lib/VFS/Object.php +%%HORDEDIR%%/lib/VFS/file.php +%%HORDEDIR%%/lib/VFS/ftp.php +%%HORDEDIR%%/lib/VFS/musql.php +%%HORDEDIR%%/lib/VFS/sql.php +%%HORDEDIR%%/lib/VFS/sql_file.php +%%HORDEDIR%%/lib/XML/RAX.php +%%HORDEDIR%%/lib/XML/SVG.php +%%HORDEDIR%%/lib/XML/WBXML.php +%%HORDEDIR%%/lib/XML/WBXML/ContentHandler.php +%%HORDEDIR%%/lib/XML/WBXML/DTD.php +%%HORDEDIR%%/lib/XML/WBXML/DTD/SyncML.php +%%HORDEDIR%%/lib/XML/WBXML/DTD/SyncMLDevInf.php +%%HORDEDIR%%/lib/XML/WBXML/DTD/SyncMLMetInf.php +%%HORDEDIR%%/lib/XML/WBXML/DTDManager.php +%%HORDEDIR%%/lib/XML/WBXML/Decoder.php +%%HORDEDIR%%/lib/XML/WBXML/Encoder.php +%%HORDEDIR%%/lib/api.php +%%HORDEDIR%%/lib/base.php +%%HORDEDIR%%/lib/core.php +%%HORDEDIR%%/lib/prefs.php +%%HORDEDIR%%/lib/version.php +%%HORDEDIR%%/locale/.htaccess +%%HORDEDIR%%/locale/ar_SY/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/bg_BG/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/bg_BG/help.xml +%%HORDEDIR%%/locale/ca_ES/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/cs_CZ/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/cs_CZ/help.xml +%%HORDEDIR%%/locale/da_DK/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/da_DK/help.xml +%%HORDEDIR%%/locale/de_DE/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/de_DE/help.xml +%%HORDEDIR%%/locale/el_GR/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/el_GR/help.xml +%%HORDEDIR%%/locale/en_US/help.xml +%%HORDEDIR%%/locale/es_ES/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/es_ES/help.xml +%%HORDEDIR%%/locale/et_EE/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/et_EE/help.xml +%%HORDEDIR%%/locale/fa_IR/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/fi_FI/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/fi_FI/help.xml +%%HORDEDIR%%/locale/fr_FR/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/fr_FR/help.xml +%%HORDEDIR%%/locale/gl_ES/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/hu_HU/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/hu_HU/help.xml +%%HORDEDIR%%/locale/id_ID/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/it_IT/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/it_IT/help.xml +%%HORDEDIR%%/locale/ja_JP/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/ja_JP/help.xml +%%HORDEDIR%%/locale/ko_KR/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/ko_KR/help.xml +%%HORDEDIR%%/locale/lt_LT/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/lt_LT/help.xml +%%HORDEDIR%%/locale/lv_LV/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/mk_MK/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/nb_NO/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/nb_NO/help.xml +%%HORDEDIR%%/locale/nl_NL/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/nl_NL/help.xml +%%HORDEDIR%%/locale/nn_NO/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/nn_NO/help.xml +%%HORDEDIR%%/locale/pl_PL/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/pl_PL/help.xml +%%HORDEDIR%%/locale/pt_BR/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/pt_BR/help.xml +%%HORDEDIR%%/locale/pt_PT/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/pt_PT/help.xml +%%HORDEDIR%%/locale/ro_RO/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/ru_RU/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/ru_RU/help.xml +%%HORDEDIR%%/locale/sk_SK/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/sk_SK/help.xml +%%HORDEDIR%%/locale/sl_SI/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/sl_SI/help.xml +%%HORDEDIR%%/locale/sv_SE/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/sv_SE/help.xml +%%HORDEDIR%%/locale/tr_TR/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/uk_UA/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/uk_UA/help.xml +%%HORDEDIR%%/locale/zh_CN/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/zh_CN/help.xml +%%HORDEDIR%%/locale/zh_TW/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/zh_TW/help.xml +%%HORDEDIR%%/login.php +%%HORDEDIR%%/po/.htaccess +%%HORDEDIR%%/po/README +%%HORDEDIR%%/po/ar_SY.po +%%HORDEDIR%%/po/bg_BG.po +%%HORDEDIR%%/po/ca_ES.po +%%HORDEDIR%%/po/cs_CZ.po +%%HORDEDIR%%/po/da_DK.po +%%HORDEDIR%%/po/de_DE.po +%%HORDEDIR%%/po/el_GR.po +%%HORDEDIR%%/po/es_ES.po +%%HORDEDIR%%/po/et_EE.po +%%HORDEDIR%%/po/fa_IR.po +%%HORDEDIR%%/po/fi_FI.po +%%HORDEDIR%%/po/fr_FR.po +%%HORDEDIR%%/po/gl_ES.po +%%HORDEDIR%%/po/horde.pot +%%HORDEDIR%%/po/hu_HU.po +%%HORDEDIR%%/po/id_ID.po +%%HORDEDIR%%/po/it_IT.po +%%HORDEDIR%%/po/ja_JP.po +%%HORDEDIR%%/po/ko_KR.po +%%HORDEDIR%%/po/lt_LT.po +%%HORDEDIR%%/po/lv_LV.po +%%HORDEDIR%%/po/mk_MK.po +%%HORDEDIR%%/po/nb_NO.po +%%HORDEDIR%%/po/nl_NL.po +%%HORDEDIR%%/po/nn_NO.po +%%HORDEDIR%%/po/pl_PL.po +%%HORDEDIR%%/po/pt_BR.po +%%HORDEDIR%%/po/pt_PT.po +%%HORDEDIR%%/po/ro_RO.po +%%HORDEDIR%%/po/ru_RU.po +%%HORDEDIR%%/po/sk_SK.po +%%HORDEDIR%%/po/sl_SI.po +%%HORDEDIR%%/po/sv_SE.po +%%HORDEDIR%%/po/tr_TR.po +%%HORDEDIR%%/po/translation.php +%%HORDEDIR%%/po/uk_UA.po +%%HORDEDIR%%/po/zh_CN.po +%%HORDEDIR%%/po/zh_TW.po +%%HORDEDIR%%/rpc.php +%%HORDEDIR%%/scripts/.htaccess +%%HORDEDIR%%/scripts/SCRIPTS +%%HORDEDIR%%/scripts/crond +%%HORDEDIR%%/scripts/get_login.php +%%HORDEDIR%%/scripts/http_login_refer.php +%%HORDEDIR%%/scripts/ldap/horde.schema +%%HORDEDIR%%/scripts/migrate_user_categories.php +%%HORDEDIR%%/scripts/remove_prefs.php +%%HORDEDIR%%/scripts/set_perms.sh +%%HORDEDIR%%/scripts/setup.php +%%HORDEDIR%%/scripts/sql/README +%%HORDEDIR%%/scripts/sql/README.OCI8 +%%HORDEDIR%%/scripts/sql/create.mysql.sql +%%HORDEDIR%%/scripts/sql/create.oci8.sql +%%HORDEDIR%%/scripts/sql/create.pgsql.sql +%%HORDEDIR%%/scripts/sql/create.sybase.sql +%%HORDEDIR%%/scripts/sql/horde_datatree.mysql.sql +%%HORDEDIR%%/scripts/sql/horde_datatree.sql +%%HORDEDIR%%/scripts/sql/horde_log.sql +%%HORDEDIR%%/scripts/sql/horde_muvfs.sql +%%HORDEDIR%%/scripts/sql/horde_prefs.sql +%%HORDEDIR%%/scripts/sql/horde_sessionhandler.oci8.sql +%%HORDEDIR%%/scripts/sql/horde_sessionhandler.pgsql.sql +%%HORDEDIR%%/scripts/sql/horde_sessionhandler.sapdb.sql +%%HORDEDIR%%/scripts/sql/horde_sessionhandler.sql +%%HORDEDIR%%/scripts/sql/horde_tokens.sql +%%HORDEDIR%%/scripts/sql/horde_users.sql +%%HORDEDIR%%/scripts/sql/horde_vfs.oci8.sql +%%HORDEDIR%%/scripts/sql/horde_vfs.pgsql.sql +%%HORDEDIR%%/scripts/sql/horde_vfs.sql +%%HORDEDIR%%/scripts/sql/script.initial_horde_user.sql +%%HORDEDIR%%/scripts/temp-cleanup.cron +%%HORDEDIR%%/scripts/themes_check.php +%%HORDEDIR%%/scripts/upgrades/2.2_to_3.0.mysql.sql +%%HORDEDIR%%/services/cacheview.php +%%HORDEDIR%%/services/download/index.php +%%HORDEDIR%%/services/editor/htmlarea/dialog.js +%%HORDEDIR%%/services/editor/htmlarea/htmlarea.css +%%HORDEDIR%%/services/editor/htmlarea/htmlarea.js +%%HORDEDIR%%/services/editor/htmlarea/images/ed_about.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_align_center.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_align_justify.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_align_left.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_align_right.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_blank.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_charmap.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_color_bg.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_color_fg.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_copy.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_custom.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_cut.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_delete.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_format_bold.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_format_italic.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_format_strike.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_format_sub.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_format_sup.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_format_underline.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_help.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_hr.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_html.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_image.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_indent_less.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_indent_more.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_killword.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_left_to_right.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_link.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_list_bullet.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_list_num.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_paste.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_redo.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_right_to_left.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_rmformat.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_save.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_show_border.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_splitcel.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_undo.gif +%%HORDEDIR%%/services/editor/htmlarea/images/fullscreen_maximize.gif +%%HORDEDIR%%/services/editor/htmlarea/images/fullscreen_minimize.gif +%%HORDEDIR%%/services/editor/htmlarea/images/insert_table.gif +%%HORDEDIR%%/services/editor/htmlarea/lang/en.js +%%HORDEDIR%%/services/editor/htmlarea/plugins/AnselImage/ansel-image.js +%%HORDEDIR%%/services/editor/htmlarea/plugins/AnselImage/insert_image.php +%%HORDEDIR%%/services/editor/htmlarea/plugins/AnselImage/lang/en.js +%%HORDEDIR%%/services/editor/htmlarea/plugins/AnselImage/showimage.html +%%HORDEDIR%%/services/editor/htmlarea/plugins/ContextMenu/context-menu.js +%%HORDEDIR%%/services/editor/htmlarea/plugins/ContextMenu/lang/en.js +%%HORDEDIR%%/services/editor/htmlarea/plugins/ContextMenu/menu.css +%%HORDEDIR%%/services/editor/htmlarea/plugins/ListType/lang/en.js +%%HORDEDIR%%/services/editor/htmlarea/plugins/ListType/list-type.js +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-delete.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-insert-after.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-insert-before.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-merge.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-prop.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-split.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-delete.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-insert-after.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-insert-before.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-split.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-delete.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-insert-above.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-insert-under.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-prop.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-split.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/table-prop.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/lang/en.js +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/table-operations.js +%%HORDEDIR%%/services/editor/htmlarea/popupdiv.js +%%HORDEDIR%%/services/editor/htmlarea/popups/about.html +%%HORDEDIR%%/services/editor/htmlarea/popups/blank.html +%%HORDEDIR%%/services/editor/htmlarea/popups/fullscreen.html +%%HORDEDIR%%/services/editor/htmlarea/popups/insert_image.html +%%HORDEDIR%%/services/editor/htmlarea/popups/insert_table.html +%%HORDEDIR%%/services/editor/htmlarea/popups/link.html +%%HORDEDIR%%/services/editor/htmlarea/popups/popup.js +%%HORDEDIR%%/services/editor/htmlarea/popups/select_color.html +%%HORDEDIR%%/services/editor/htmlarea/popupwin.js +%%HORDEDIR%%/services/go.php +%%HORDEDIR%%/services/help/index.php +%%HORDEDIR%%/services/images/colorpicker.php +%%HORDEDIR%%/services/images/pixel.php +%%HORDEDIR%%/services/images/view.php +%%HORDEDIR%%/services/javascript.php +%%HORDEDIR%%/services/keyboard.php +%%HORDEDIR%%/services/language.php +%%HORDEDIR%%/services/maintenance.php +%%HORDEDIR%%/services/obrowser/index.php +%%HORDEDIR%%/services/portal/edit.php +%%HORDEDIR%%/services/portal/index.php +%%HORDEDIR%%/services/portal/mobile.php +%%HORDEDIR%%/services/portal/rpcsum.php +%%HORDEDIR%%/services/portal/sidebar.php +%%HORDEDIR%%/services/prefs.php +%%HORDEDIR%%/services/problem.php +%%HORDEDIR%%/services/resetpassword.php +%%HORDEDIR%%/services/shares/edit.php +%%HORDEDIR%%/signup.php +%%HORDEDIR%%/templates/.htaccess +%%HORDEDIR%%/templates/admin/common-header.inc +%%HORDEDIR%%/templates/admin/groups/addchild.inc +%%HORDEDIR%%/templates/admin/groups/delete.inc +%%HORDEDIR%%/templates/admin/groups/edit.inc +%%HORDEDIR%%/templates/admin/setup/config.html +%%HORDEDIR%%/templates/admin/setup/diff.html +%%HORDEDIR%%/templates/admin/setup/index.html +%%HORDEDIR%%/templates/admin/user/add.inc +%%HORDEDIR%%/templates/admin/user/approve.inc +%%HORDEDIR%%/templates/admin/user/clear.inc +%%HORDEDIR%%/templates/admin/user/list.inc +%%HORDEDIR%%/templates/admin/user/noadd.inc +%%HORDEDIR%%/templates/admin/user/nolist.inc +%%HORDEDIR%%/templates/admin/user/remove.inc +%%HORDEDIR%%/templates/admin/user/removequeued.inc +%%HORDEDIR%%/templates/admin/user/update.inc +%%HORDEDIR%%/templates/categorytree/rowend.inc +%%HORDEDIR%%/templates/categorytree/rowstart.inc +%%HORDEDIR%%/templates/categorytree/tablefoot.inc +%%HORDEDIR%%/templates/categorytree/tablehead.inc +%%HORDEDIR%%/templates/common-footer.inc +%%HORDEDIR%%/templates/common-header.inc +%%HORDEDIR%%/templates/contents/open_view_win.js +%%HORDEDIR%%/templates/data/csvinfo.inc +%%HORDEDIR%%/templates/data/csvmap.inc +%%HORDEDIR%%/templates/data/date.inc +%%HORDEDIR%%/templates/data/datemap.inc +%%HORDEDIR%%/templates/data/datetime.inc +%%HORDEDIR%%/templates/data/time.inc +%%HORDEDIR%%/templates/data/tsvinfo.inc +%%HORDEDIR%%/templates/help/about.inc +%%HORDEDIR%%/templates/help/index.inc +%%HORDEDIR%%/templates/help/menu.inc +%%HORDEDIR%%/templates/index/frames_index.inc +%%HORDEDIR%%/templates/javascript/form_sections.js +%%HORDEDIR%%/templates/javascript/htmlarea.js +%%HORDEDIR%%/templates/javascript/htmlarea_anselimage_lang.js +%%HORDEDIR%%/templates/javascript/htmlarea_context_lang.js +%%HORDEDIR%%/templates/javascript/htmlarea_lang.js +%%HORDEDIR%%/templates/javascript/htmlarea_listtype_lang.js +%%HORDEDIR%%/templates/javascript/htmlarea_table_lang.js +%%HORDEDIR%%/templates/javascript/keybindings.js +%%HORDEDIR%%/templates/javascript/open_calendar.js +%%HORDEDIR%%/templates/javascript/open_google_win.js +%%HORDEDIR%%/templates/javascript/open_help_win.js +%%HORDEDIR%%/templates/javascript/open_html_helper.js +%%HORDEDIR%%/templates/javascript/print.js +%%HORDEDIR%%/templates/javascript/quoteBlocks.js +%%HORDEDIR%%/templates/javascript/tree.js +%%HORDEDIR%%/templates/login/login.inc +%%HORDEDIR%%/templates/login/mobile.inc +%%HORDEDIR%%/templates/maintenance/agreement_bottom.inc +%%HORDEDIR%%/templates/maintenance/agreement_middle.inc +%%HORDEDIR%%/templates/maintenance/agreement_top.inc +%%HORDEDIR%%/templates/maintenance/confirm_bottom.inc +%%HORDEDIR%%/templates/maintenance/confirm_middle.inc +%%HORDEDIR%%/templates/maintenance/confirm_top.inc +%%HORDEDIR%%/templates/maintenance/javascript.inc +%%HORDEDIR%%/templates/maintenance/maintenance_bottom.inc +%%HORDEDIR%%/templates/maintenance/maintenance_top.inc +%%HORDEDIR%%/templates/maintenance/notice_bottom.inc +%%HORDEDIR%%/templates/maintenance/notice_middle.inc +%%HORDEDIR%%/templates/maintenance/notice_top.inc +%%HORDEDIR%%/templates/menu/menu.inc +%%HORDEDIR%%/templates/portal/add.inc +%%HORDEDIR%%/templates/portal/block.inc +%%HORDEDIR%%/templates/portal/edit.inc +%%HORDEDIR%%/templates/portal/empty.inc +%%HORDEDIR%%/templates/portal/footer.inc +%%HORDEDIR%%/templates/portal/header.inc +%%HORDEDIR%%/templates/portal/layout.inc +%%HORDEDIR%%/templates/portal/menu.inc +%%HORDEDIR%%/templates/portal/sidebar.inc +%%HORDEDIR%%/templates/prefs/app.inc +%%HORDEDIR%%/templates/prefs/begin.inc +%%HORDEDIR%%/templates/prefs/categorymanagement.inc +%%HORDEDIR%%/templates/prefs/checkbox.inc +%%HORDEDIR%%/templates/prefs/deleteidentity.inc +%%HORDEDIR%%/templates/prefs/end.inc +%%HORDEDIR%%/templates/prefs/enum.inc +%%HORDEDIR%%/templates/prefs/identityselect.inc +%%HORDEDIR%%/templates/prefs/link.inc +%%HORDEDIR%%/templates/prefs/multienum.inc +%%HORDEDIR%%/templates/prefs/number.inc +%%HORDEDIR%%/templates/prefs/overview.inc +%%HORDEDIR%%/templates/prefs/password.inc +%%HORDEDIR%%/templates/prefs/select.inc +%%HORDEDIR%%/templates/prefs/text.inc +%%HORDEDIR%%/templates/prefs/textarea.inc +%%HORDEDIR%%/templates/problem/problem.inc +%%HORDEDIR%%/templates/rpcsum/rpcsum.inc +%%HORDEDIR%%/templates/shares/edit.inc +%%HORDEDIR%%/templates/test/extensions.inc +%%HORDEDIR%%/templates/test/footer.inc +%%HORDEDIR%%/templates/test/header.inc +%%HORDEDIR%%/templates/test/php_version.inc +%%HORDEDIR%%/templates/test/version.inc +%%HORDEDIR%%/test.php +%%HORDEDIR%%/themes/NeXTgrey/info.php +%%HORDEDIR%%/themes/NeXTgrey/screen.css +%%HORDEDIR%%/themes/azur/info.php +%%HORDEDIR%%/themes/azur/screen.css +%%HORDEDIR%%/themes/barbie/info.php +%%HORDEDIR%%/themes/barbie/screen.css +%%HORDEDIR%%/themes/bluemoon/info.php +%%HORDEDIR%%/themes/bluemoon/screen.css +%%HORDEDIR%%/themes/bluewhite/info.php +%%HORDEDIR%%/themes/bluewhite/screen.css +%%HORDEDIR%%/themes/brown/info.php +%%HORDEDIR%%/themes/brown/screen.css +%%HORDEDIR%%/themes/burntorange/info.php +%%HORDEDIR%%/themes/burntorange/screen.css +%%HORDEDIR%%/themes/camouflage/graphics/menu.png +%%HORDEDIR%%/themes/camouflage/info.php +%%HORDEDIR%%/themes/camouflage/screen.css +%%HORDEDIR%%/themes/cornflower/info.php +%%HORDEDIR%%/themes/cornflower/screen.css +%%HORDEDIR%%/themes/gennevilliers/info.php +%%HORDEDIR%%/themes/gennevilliers/screen.css +%%HORDEDIR%%/themes/green/info.php +%%HORDEDIR%%/themes/green/screen.css +%%HORDEDIR%%/themes/grey/info.php +%%HORDEDIR%%/themes/grey/screen.css +%%HORDEDIR%%/themes/graphics/administration.png +%%HORDEDIR%%/themes/graphics/alerts/error.png +%%HORDEDIR%%/themes/graphics/alerts/message.png +%%HORDEDIR%%/themes/graphics/alerts/success.png +%%HORDEDIR%%/themes/graphics/alerts/warning.png +%%HORDEDIR%%/themes/graphics/az.png +%%HORDEDIR%%/themes/graphics/blank.gif +%%HORDEDIR%%/themes/graphics/block/add.png +%%HORDEDIR%%/themes/graphics/block/down.png +%%HORDEDIR%%/themes/graphics/block/large_down.png +%%HORDEDIR%%/themes/graphics/block/large_left.png +%%HORDEDIR%%/themes/graphics/block/large_right.png +%%HORDEDIR%%/themes/graphics/block/large_up.png +%%HORDEDIR%%/themes/graphics/block/left.png +%%HORDEDIR%%/themes/graphics/block/moon/firstquarter.png +%%HORDEDIR%%/themes/graphics/block/moon/fullmoon.png +%%HORDEDIR%%/themes/graphics/block/moon/lastquarter.png +%%HORDEDIR%%/themes/graphics/block/moon/newmoon.png +%%HORDEDIR%%/themes/graphics/block/right.png +%%HORDEDIR%%/themes/graphics/block/sunrise/sunrise.png +%%HORDEDIR%%/themes/graphics/block/sunrise/sunset.png +%%HORDEDIR%%/themes/graphics/block/up.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/0.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/1.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/10.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/11.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/12.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/13.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/14.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/15.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/16.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/17.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/18.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/19.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/2.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/20.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/21.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/22.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/23.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/24.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/25.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/26.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/27.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/28.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/29.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/3.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/30.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/31.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/32.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/33.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/34.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/35.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/36.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/37.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/38.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/39.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/4.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/40.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/41.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/42.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/43.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/44.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/45.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/46.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/47.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/5.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/6.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/7.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/8.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/9.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/na.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/0.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/1.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/10.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/11.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/12.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/13.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/14.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/15.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/16.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/17.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/18.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/19.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/2.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/20.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/21.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/22.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/23.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/24.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/25.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/26.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/27.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/28.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/29.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/3.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/30.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/31.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/32.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/33.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/34.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/35.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/36.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/37.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/38.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/39.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/4.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/40.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/41.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/42.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/43.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/44.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/45.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/46.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/47.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/5.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/6.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/7.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/8.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/9.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/TWClogo_32px.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/na.png +%%HORDEDIR%%/themes/graphics/calendar.png +%%HORDEDIR%%/themes/graphics/close.png +%%HORDEDIR%%/themes/graphics/colorpicker.png +%%HORDEDIR%%/themes/graphics/colorscale.png +%%HORDEDIR%%/themes/graphics/config.png +%%HORDEDIR%%/themes/graphics/data.png +%%HORDEDIR%%/themes/graphics/delete-small.png +%%HORDEDIR%%/themes/graphics/delete.png +%%HORDEDIR%%/themes/graphics/devel.png +%%HORDEDIR%%/themes/graphics/download.png +%%HORDEDIR%%/themes/graphics/edit.png +%%HORDEDIR%%/themes/graphics/edit-small.png +%%HORDEDIR%%/themes/graphics/emoticons/angel.png +%%HORDEDIR%%/themes/graphics/emoticons/angelwink.png +%%HORDEDIR%%/themes/graphics/emoticons/angry.png +%%HORDEDIR%%/themes/graphics/emoticons/annoyed.png +%%HORDEDIR%%/themes/graphics/emoticons/asleep.png +%%HORDEDIR%%/themes/graphics/emoticons/bigfrown.png +%%HORDEDIR%%/themes/graphics/emoticons/biggrin.png +%%HORDEDIR%%/themes/graphics/emoticons/blush.png +%%HORDEDIR%%/themes/graphics/emoticons/clown.png +%%HORDEDIR%%/themes/graphics/emoticons/confused.png +%%HORDEDIR%%/themes/graphics/emoticons/cool.png +%%HORDEDIR%%/themes/graphics/emoticons/coolgrin.png +%%HORDEDIR%%/themes/graphics/emoticons/cooltongue.png +%%HORDEDIR%%/themes/graphics/emoticons/dazed.png +%%HORDEDIR%%/themes/graphics/emoticons/devil.png +%%HORDEDIR%%/themes/graphics/emoticons/deviltongue.png +%%HORDEDIR%%/themes/graphics/emoticons/disappointed.png +%%HORDEDIR%%/themes/graphics/emoticons/embarrassed.png +%%HORDEDIR%%/themes/graphics/emoticons/enraged.png +%%HORDEDIR%%/themes/graphics/emoticons/frown.png +%%HORDEDIR%%/themes/graphics/emoticons/frustrated.png +%%HORDEDIR%%/themes/graphics/emoticons/grin.png +%%HORDEDIR%%/themes/graphics/emoticons/hangover.png +%%HORDEDIR%%/themes/graphics/emoticons/hippie.png +%%HORDEDIR%%/themes/graphics/emoticons/hippiegrin.png +%%HORDEDIR%%/themes/graphics/emoticons/hippietongue.png +%%HORDEDIR%%/themes/graphics/emoticons/hurt.png +%%HORDEDIR%%/themes/graphics/emoticons/indifferent.png +%%HORDEDIR%%/themes/graphics/emoticons/love.png +%%HORDEDIR%%/themes/graphics/emoticons/mad.png +%%HORDEDIR%%/themes/graphics/emoticons/mrt.png +%%HORDEDIR%%/themes/graphics/emoticons/punk.png +%%HORDEDIR%%/themes/graphics/emoticons/punkmohawk.png +%%HORDEDIR%%/themes/graphics/emoticons/punktongue.png +%%HORDEDIR%%/themes/graphics/emoticons/raspberry.png +%%HORDEDIR%%/themes/graphics/emoticons/sad.png +%%HORDEDIR%%/themes/graphics/emoticons/shout.png +%%HORDEDIR%%/themes/graphics/emoticons/smile.png +%%HORDEDIR%%/themes/graphics/emoticons/tired.png +%%HORDEDIR%%/themes/graphics/emoticons/tongueout.png +%%HORDEDIR%%/themes/graphics/emoticons/vampire.png +%%HORDEDIR%%/themes/graphics/emoticons/wink.png +%%HORDEDIR%%/themes/graphics/emoticons/winkgrin.png +%%HORDEDIR%%/themes/graphics/emoticons/winktongue.png +%%HORDEDIR%%/themes/graphics/emoticons/winktongueout.png +%%HORDEDIR%%/themes/graphics/emoticons/worried.png +%%HORDEDIR%%/themes/graphics/favicon.ico +%%HORDEDIR%%/themes/graphics/flags/af.png +%%HORDEDIR%%/themes/graphics/flags/al.png +%%HORDEDIR%%/themes/graphics/flags/am.png +%%HORDEDIR%%/themes/graphics/flags/an.png +%%HORDEDIR%%/themes/graphics/flags/ao.png +%%HORDEDIR%%/themes/graphics/flags/ar.png +%%HORDEDIR%%/themes/graphics/flags/at.png +%%HORDEDIR%%/themes/graphics/flags/au.png +%%HORDEDIR%%/themes/graphics/flags/aw.png +%%HORDEDIR%%/themes/graphics/flags/az.png +%%HORDEDIR%%/themes/graphics/flags/ba.png +%%HORDEDIR%%/themes/graphics/flags/bb.png +%%HORDEDIR%%/themes/graphics/flags/bd.png +%%HORDEDIR%%/themes/graphics/flags/be.png +%%HORDEDIR%%/themes/graphics/flags/bf.png +%%HORDEDIR%%/themes/graphics/flags/bg.png +%%HORDEDIR%%/themes/graphics/flags/bh.png +%%HORDEDIR%%/themes/graphics/flags/bi.png +%%HORDEDIR%%/themes/graphics/flags/bj.png +%%HORDEDIR%%/themes/graphics/flags/bm.png +%%HORDEDIR%%/themes/graphics/flags/bn.png +%%HORDEDIR%%/themes/graphics/flags/bo.png +%%HORDEDIR%%/themes/graphics/flags/br.png +%%HORDEDIR%%/themes/graphics/flags/bs.png +%%HORDEDIR%%/themes/graphics/flags/bt.png +%%HORDEDIR%%/themes/graphics/flags/bw.png +%%HORDEDIR%%/themes/graphics/flags/by.png +%%HORDEDIR%%/themes/graphics/flags/bz.png +%%HORDEDIR%%/themes/graphics/flags/ca.png +%%HORDEDIR%%/themes/graphics/flags/cf.png +%%HORDEDIR%%/themes/graphics/flags/cg.png +%%HORDEDIR%%/themes/graphics/flags/ch.png +%%HORDEDIR%%/themes/graphics/flags/ci.png +%%HORDEDIR%%/themes/graphics/flags/ck.png +%%HORDEDIR%%/themes/graphics/flags/cl.png +%%HORDEDIR%%/themes/graphics/flags/cm.png +%%HORDEDIR%%/themes/graphics/flags/cn.png +%%HORDEDIR%%/themes/graphics/flags/co.png +%%HORDEDIR%%/themes/graphics/flags/cr.png +%%HORDEDIR%%/themes/graphics/flags/cu.png +%%HORDEDIR%%/themes/graphics/flags/cv.png +%%HORDEDIR%%/themes/graphics/flags/cy.png +%%HORDEDIR%%/themes/graphics/flags/cz.png +%%HORDEDIR%%/themes/graphics/flags/de.png +%%HORDEDIR%%/themes/graphics/flags/dk.png +%%HORDEDIR%%/themes/graphics/flags/dz.png +%%HORDEDIR%%/themes/graphics/flags/ec.png +%%HORDEDIR%%/themes/graphics/flags/ee.png +%%HORDEDIR%%/themes/graphics/flags/eg.png +%%HORDEDIR%%/themes/graphics/flags/er.png +%%HORDEDIR%%/themes/graphics/flags/es.png +%%HORDEDIR%%/themes/graphics/flags/et.png +%%HORDEDIR%%/themes/graphics/flags/fi.png +%%HORDEDIR%%/themes/graphics/flags/fj.png +%%HORDEDIR%%/themes/graphics/flags/fo.png +%%HORDEDIR%%/themes/graphics/flags/fr.png +%%HORDEDIR%%/themes/graphics/flags/ga.png +%%HORDEDIR%%/themes/graphics/flags/ge.png +%%HORDEDIR%%/themes/graphics/flags/gi.png +%%HORDEDIR%%/themes/graphics/flags/gl.png +%%HORDEDIR%%/themes/graphics/flags/gp.png +%%HORDEDIR%%/themes/graphics/flags/gr.png +%%HORDEDIR%%/themes/graphics/flags/gt.png +%%HORDEDIR%%/themes/graphics/flags/gu.png +%%HORDEDIR%%/themes/graphics/flags/gy.png +%%HORDEDIR%%/themes/graphics/flags/hk.png +%%HORDEDIR%%/themes/graphics/flags/hr.png +%%HORDEDIR%%/themes/graphics/flags/ht.png +%%HORDEDIR%%/themes/graphics/flags/hu.png +%%HORDEDIR%%/themes/graphics/flags/id.png +%%HORDEDIR%%/themes/graphics/flags/ie.png +%%HORDEDIR%%/themes/graphics/flags/il.png +%%HORDEDIR%%/themes/graphics/flags/in.png +%%HORDEDIR%%/themes/graphics/flags/iq.png +%%HORDEDIR%%/themes/graphics/flags/ir.png +%%HORDEDIR%%/themes/graphics/flags/is.png +%%HORDEDIR%%/themes/graphics/flags/it.png +%%HORDEDIR%%/themes/graphics/flags/jm.png +%%HORDEDIR%%/themes/graphics/flags/jo.png +%%HORDEDIR%%/themes/graphics/flags/jp.png +%%HORDEDIR%%/themes/graphics/flags/ke.png +%%HORDEDIR%%/themes/graphics/flags/kg.png +%%HORDEDIR%%/themes/graphics/flags/kh.png +%%HORDEDIR%%/themes/graphics/flags/ki.png +%%HORDEDIR%%/themes/graphics/flags/kp.png +%%HORDEDIR%%/themes/graphics/flags/kr.png +%%HORDEDIR%%/themes/graphics/flags/ky.png +%%HORDEDIR%%/themes/graphics/flags/kz.png +%%HORDEDIR%%/themes/graphics/flags/lb.png +%%HORDEDIR%%/themes/graphics/flags/lc.png +%%HORDEDIR%%/themes/graphics/flags/lk.png +%%HORDEDIR%%/themes/graphics/flags/lt.png +%%HORDEDIR%%/themes/graphics/flags/lu.png +%%HORDEDIR%%/themes/graphics/flags/lv.png +%%HORDEDIR%%/themes/graphics/flags/ly.png +%%HORDEDIR%%/themes/graphics/flags/ma.png +%%HORDEDIR%%/themes/graphics/flags/mc.png +%%HORDEDIR%%/themes/graphics/flags/md.png +%%HORDEDIR%%/themes/graphics/flags/mg.png +%%HORDEDIR%%/themes/graphics/flags/mn.png +%%HORDEDIR%%/themes/graphics/flags/mo.png +%%HORDEDIR%%/themes/graphics/flags/mp.png +%%HORDEDIR%%/themes/graphics/flags/ms.png +%%HORDEDIR%%/themes/graphics/flags/mt.png +%%HORDEDIR%%/themes/graphics/flags/mx.png +%%HORDEDIR%%/themes/graphics/flags/my.png +%%HORDEDIR%%/themes/graphics/flags/mz.png +%%HORDEDIR%%/themes/graphics/flags/na.png +%%HORDEDIR%%/themes/graphics/flags/nc.png +%%HORDEDIR%%/themes/graphics/flags/nf.png +%%HORDEDIR%%/themes/graphics/flags/nl.png +%%HORDEDIR%%/themes/graphics/flags/no.png +%%HORDEDIR%%/themes/graphics/flags/np.png +%%HORDEDIR%%/themes/graphics/flags/nr.png +%%HORDEDIR%%/themes/graphics/flags/nz.png +%%HORDEDIR%%/themes/graphics/flags/om.png +%%HORDEDIR%%/themes/graphics/flags/pa.png +%%HORDEDIR%%/themes/graphics/flags/pe.png +%%HORDEDIR%%/themes/graphics/flags/pf.png +%%HORDEDIR%%/themes/graphics/flags/ph.png +%%HORDEDIR%%/themes/graphics/flags/pk.png +%%HORDEDIR%%/themes/graphics/flags/pl.png +%%HORDEDIR%%/themes/graphics/flags/pm.png +%%HORDEDIR%%/themes/graphics/flags/pr.png +%%HORDEDIR%%/themes/graphics/flags/pt.png +%%HORDEDIR%%/themes/graphics/flags/py.png +%%HORDEDIR%%/themes/graphics/flags/qa.png +%%HORDEDIR%%/themes/graphics/flags/ro.png +%%HORDEDIR%%/themes/graphics/flags/ru.png +%%HORDEDIR%%/themes/graphics/flags/sa.png +%%HORDEDIR%%/themes/graphics/flags/sb.png +%%HORDEDIR%%/themes/graphics/flags/sd.png +%%HORDEDIR%%/themes/graphics/flags/se.png +%%HORDEDIR%%/themes/graphics/flags/sg.png +%%HORDEDIR%%/themes/graphics/flags/si.png +%%HORDEDIR%%/themes/graphics/flags/sk.png +%%HORDEDIR%%/themes/graphics/flags/sl.png +%%HORDEDIR%%/themes/graphics/flags/so.png +%%HORDEDIR%%/themes/graphics/flags/sr.png +%%HORDEDIR%%/themes/graphics/flags/sy.png +%%HORDEDIR%%/themes/graphics/flags/tc.png +%%HORDEDIR%%/themes/graphics/flags/tg.png +%%HORDEDIR%%/themes/graphics/flags/th.png +%%HORDEDIR%%/themes/graphics/flags/tn.png +%%HORDEDIR%%/themes/graphics/flags/to.png +%%HORDEDIR%%/themes/graphics/flags/tp.png +%%HORDEDIR%%/themes/graphics/flags/tr.png +%%HORDEDIR%%/themes/graphics/flags/tt.png +%%HORDEDIR%%/themes/graphics/flags/tv.png +%%HORDEDIR%%/themes/graphics/flags/tw.png +%%HORDEDIR%%/themes/graphics/flags/tz.png +%%HORDEDIR%%/themes/graphics/flags/ua.png +%%HORDEDIR%%/themes/graphics/flags/ug.png +%%HORDEDIR%%/themes/graphics/flags/uk.png +%%HORDEDIR%%/themes/graphics/flags/us.png +%%HORDEDIR%%/themes/graphics/flags/uy.png +%%HORDEDIR%%/themes/graphics/flags/va.png +%%HORDEDIR%%/themes/graphics/flags/ve.png +%%HORDEDIR%%/themes/graphics/flags/vg.png +%%HORDEDIR%%/themes/graphics/flags/vi.png +%%HORDEDIR%%/themes/graphics/flags/vn.png +%%HORDEDIR%%/themes/graphics/flags/ws.png +%%HORDEDIR%%/themes/graphics/flags/ye.png +%%HORDEDIR%%/themes/graphics/flags/yu.png +%%HORDEDIR%%/themes/graphics/flags/za.png +%%HORDEDIR%%/themes/graphics/flags/zw.png +%%HORDEDIR%%/themes/graphics/google.png +%%HORDEDIR%%/themes/graphics/group.png +%%HORDEDIR%%/themes/graphics/help.png +%%HORDEDIR%%/themes/graphics/help_index.png +%%HORDEDIR%%/themes/graphics/hide_panel.png +%%HORDEDIR%%/themes/graphics/horde-power1.png +%%HORDEDIR%%/themes/graphics/horde-power2.png +%%HORDEDIR%%/themes/graphics/horde-power3.png +%%HORDEDIR%%/themes/graphics/horde.png +%%HORDEDIR%%/themes/graphics/image/flip.png +%%HORDEDIR%%/themes/graphics/image/grayscale.png +%%HORDEDIR%%/themes/graphics/image/mirror.png +%%HORDEDIR%%/themes/graphics/image/ratio.png +%%HORDEDIR%%/themes/graphics/image/rotate-180.png +%%HORDEDIR%%/themes/graphics/image/rotate-270.png +%%HORDEDIR%%/themes/graphics/image/rotate-90.png +%%HORDEDIR%%/themes/graphics/info.png +%%HORDEDIR%%/themes/graphics/info_icon.png +%%HORDEDIR%%/themes/graphics/keyboard.png +%%HORDEDIR%%/themes/graphics/layout.png +%%HORDEDIR%%/themes/graphics/lhand.png +%%HORDEDIR%%/themes/graphics/locked.png +%%HORDEDIR%%/themes/graphics/login.png +%%HORDEDIR%%/themes/graphics/logout.png +%%HORDEDIR%%/themes/graphics/mail.png +%%HORDEDIR%%/themes/graphics/map.png +%%HORDEDIR%%/themes/graphics/map_eu.png +%%HORDEDIR%%/themes/graphics/mime/audio.png +%%HORDEDIR%%/themes/graphics/mime/binary.png +%%HORDEDIR%%/themes/graphics/mime/compressed.png +%%HORDEDIR%%/themes/graphics/mime/csv.png +%%HORDEDIR%%/themes/graphics/mime/deb.png +%%HORDEDIR%%/themes/graphics/mime/encryption.png +%%HORDEDIR%%/themes/graphics/mime/executable.png +%%HORDEDIR%%/themes/graphics/mime/html.png +%%HORDEDIR%%/themes/graphics/mime/icalendar.png +%%HORDEDIR%%/themes/graphics/mime/image.png +%%HORDEDIR%%/themes/graphics/mime/inf.png +%%HORDEDIR%%/themes/graphics/mime/mail.png +%%HORDEDIR%%/themes/graphics/mime/makefile.png +%%HORDEDIR%%/themes/graphics/mime/msexcel.png +%%HORDEDIR%%/themes/graphics/mime/msi.png +%%HORDEDIR%%/themes/graphics/mime/msp.png +%%HORDEDIR%%/themes/graphics/mime/mspowerpoint.png +%%HORDEDIR%%/themes/graphics/mime/msword.png +%%HORDEDIR%%/themes/graphics/mime/ooo_calc.png +%%HORDEDIR%%/themes/graphics/mime/ooo_draw.png +%%HORDEDIR%%/themes/graphics/mime/ooo_impress.png +%%HORDEDIR%%/themes/graphics/mime/ooo_math.png +%%HORDEDIR%%/themes/graphics/mime/ooo_writer.png +%%HORDEDIR%%/themes/graphics/mime/pdf.png +%%HORDEDIR%%/themes/graphics/mime/php.png +%%HORDEDIR%%/themes/graphics/mime/quicktime.png +%%HORDEDIR%%/themes/graphics/mime/readme.png +%%HORDEDIR%%/themes/graphics/mime/realaudio.png +%%HORDEDIR%%/themes/graphics/mime/rpm.png +%%HORDEDIR%%/themes/graphics/mime/script-asa.png +%%HORDEDIR%%/themes/graphics/mime/script-asp.png +%%HORDEDIR%%/themes/graphics/mime/script-js.png +%%HORDEDIR%%/themes/graphics/mime/setup.png +%%HORDEDIR%%/themes/graphics/mime/signed.png +%%HORDEDIR%%/themes/graphics/mime/source-c.png +%%HORDEDIR%%/themes/graphics/mime/source-cpp.png +%%HORDEDIR%%/themes/graphics/mime/source-h.png +%%HORDEDIR%%/themes/graphics/mime/source-java.png +%%HORDEDIR%%/themes/graphics/mime/source-python.png +%%HORDEDIR%%/themes/graphics/mime/text.png +%%HORDEDIR%%/themes/graphics/mime/unknown.png +%%HORDEDIR%%/themes/graphics/mime/vcard.png +%%HORDEDIR%%/themes/graphics/mime/video.png +%%HORDEDIR%%/themes/graphics/mime/xcode.png +%%HORDEDIR%%/themes/graphics/mime/xml.png +%%HORDEDIR%%/themes/graphics/mobile/bottom.jpg +%%HORDEDIR%%/themes/graphics/mobile/display.jpg +%%HORDEDIR%%/themes/graphics/mobile/left.jpg +%%HORDEDIR%%/themes/graphics/mobile/right.jpg +%%HORDEDIR%%/themes/graphics/mobile/top.jpg +%%HORDEDIR%%/themes/graphics/myaccount.png +%%HORDEDIR%%/themes/graphics/nav/bottom-grey.png +%%HORDEDIR%%/themes/graphics/nav/bottom.png +%%HORDEDIR%%/themes/graphics/nav/down-grey.png +%%HORDEDIR%%/themes/graphics/nav/down.png +%%HORDEDIR%%/themes/graphics/nav/first-grey.png +%%HORDEDIR%%/themes/graphics/nav/first.png +%%HORDEDIR%%/themes/graphics/nav/last-grey.png +%%HORDEDIR%%/themes/graphics/nav/last.png +%%HORDEDIR%%/themes/graphics/nav/left-grey.png +%%HORDEDIR%%/themes/graphics/nav/left.png +%%HORDEDIR%%/themes/graphics/nav/right-grey.png +%%HORDEDIR%%/themes/graphics/nav/right.png +%%HORDEDIR%%/themes/graphics/nav/top-grey.png +%%HORDEDIR%%/themes/graphics/nav/top.png +%%HORDEDIR%%/themes/graphics/nav/up-grey.png +%%HORDEDIR%%/themes/graphics/nav/up.png +%%HORDEDIR%%/themes/graphics/office.png +%%HORDEDIR%%/themes/graphics/organizing.png +%%HORDEDIR%%/themes/graphics/perms.png +%%HORDEDIR%%/themes/graphics/prefs.png +%%HORDEDIR%%/themes/graphics/print.png +%%HORDEDIR%%/themes/graphics/problem.png +%%HORDEDIR%%/themes/graphics/reload.png +%%HORDEDIR%%/themes/graphics/required.png +%%HORDEDIR%%/themes/graphics/rhand.png +%%HORDEDIR%%/themes/graphics/save.png +%%HORDEDIR%%/themes/graphics/search.png +%%HORDEDIR%%/themes/graphics/shadow.gif +%%HORDEDIR%%/themes/graphics/shadow.png +%%HORDEDIR%%/themes/graphics/shell.png +%%HORDEDIR%%/themes/graphics/show_panel.png +%%HORDEDIR%%/themes/graphics/sql.png +%%HORDEDIR%%/themes/graphics/tree/blank.png +%%HORDEDIR%%/themes/graphics/tree/folder.png +%%HORDEDIR%%/themes/graphics/tree/folderopen.png +%%HORDEDIR%%/themes/graphics/tree/join.png +%%HORDEDIR%%/themes/graphics/tree/joinbottom-down.png +%%HORDEDIR%%/themes/graphics/tree/joinbottom.png +%%HORDEDIR%%/themes/graphics/tree/leaf.png +%%HORDEDIR%%/themes/graphics/tree/line.png +%%HORDEDIR%%/themes/graphics/tree/minus.png +%%HORDEDIR%%/themes/graphics/tree/minusbottom.png +%%HORDEDIR%%/themes/graphics/tree/minusonly.png +%%HORDEDIR%%/themes/graphics/tree/minustop.png +%%HORDEDIR%%/themes/graphics/tree/nullonly.png +%%HORDEDIR%%/themes/graphics/tree/plus.png +%%HORDEDIR%%/themes/graphics/tree/plusbottom.png +%%HORDEDIR%%/themes/graphics/tree/plusonly.png +%%HORDEDIR%%/themes/graphics/tree/plustop.png +%%HORDEDIR%%/themes/graphics/tree/rev-join.png +%%HORDEDIR%%/themes/graphics/tree/rev-minusonly.png +%%HORDEDIR%%/themes/graphics/tree/rev-joinbottom-down.png +%%HORDEDIR%%/themes/graphics/tree/rev-plusonly.png +%%HORDEDIR%%/themes/graphics/tree/rev-line.png +%%HORDEDIR%%/themes/graphics/tree/rev-minusbottom.png +%%HORDEDIR%%/themes/graphics/tree/rev-plus.png +%%HORDEDIR%%/themes/graphics/tree/rev-plusbottom.png +%%HORDEDIR%%/themes/graphics/tree/rev-leaf.png +%%HORDEDIR%%/themes/graphics/tree/rev-joinbottom.png +%%HORDEDIR%%/themes/graphics/tree/rev-nullonly.png +%%HORDEDIR%%/themes/graphics/tree/rev-minus.png +%%HORDEDIR%%/themes/graphics/tree/rev-plustop.png +%%HORDEDIR%%/themes/graphics/tree/rev-minustop.png +%%HORDEDIR%%/themes/graphics/unlocked.png +%%HORDEDIR%%/themes/graphics/user.png +%%HORDEDIR%%/themes/graphics/website.png +%%HORDEDIR%%/themes/graphics/za.png +%%HORDEDIR%%/themes/ie5mac.css +%%HORDEDIR%%/themes/kolab/graphics/bg.png +%%HORDEDIR%%/themes/kolab/graphics/kolab.png +%%HORDEDIR%%/themes/kolab/graphics/kolablogo.png +%%HORDEDIR%%/themes/kolab/info.php +%%HORDEDIR%%/themes/kolab/screen.css +%%HORDEDIR%%/themes/lavander/info.php +%%HORDEDIR%%/themes/lavander/screen.css +%%HORDEDIR%%/themes/lightblue/graphics/menu.png +%%HORDEDIR%%/themes/lightblue/info.php +%%HORDEDIR%%/themes/lightblue/screen.css +%%HORDEDIR%%/themes/luc/info.php +%%HORDEDIR%%/themes/luc/screen.css +%%HORDEDIR%%/themes/lucblue/info.php +%%HORDEDIR%%/themes/lucblue/screen.css +%%HORDEDIR%%/themes/mobile/screen.css +%%HORDEDIR%%/themes/mozilla/graphics/header.png +%%HORDEDIR%%/themes/mozilla/graphics/menu-active.png +%%HORDEDIR%%/themes/mozilla/graphics/menu.png +%%HORDEDIR%%/themes/mozilla/info.php +%%HORDEDIR%%/themes/mozilla/screen.css +%%HORDEDIR%%/themes/postnuke/info.php +%%HORDEDIR%%/themes/postnuke/screen.css +%%HORDEDIR%%/themes/print/screen.css +%%HORDEDIR%%/themes/purple/info.php +%%HORDEDIR%%/themes/purple/screen.css +%%HORDEDIR%%/themes/screen.css +%%HORDEDIR%%/themes/simplex/graphics/background.png +%%HORDEDIR%%/themes/simplex/info.php +%%HORDEDIR%%/themes/simplex/screen.css +%%HORDEDIR%%/util/barcode.php +%%HORDEDIR%%/util/google_example.php +%%HORDEDIR%%/util/icon_browser.php +%%HORDEDIR%%/util/regex_test.php +@dirrm %%HORDEDIR%%/util +@dirrm %%HORDEDIR%%/themes/simplex/graphics +@dirrm %%HORDEDIR%%/themes/simplex +@dirrm %%HORDEDIR%%/themes/purple +@dirrm %%HORDEDIR%%/themes/print +@dirrm %%HORDEDIR%%/themes/postnuke +@dirrm %%HORDEDIR%%/themes/mozilla/graphics +@dirrm %%HORDEDIR%%/themes/mozilla +@dirrm %%HORDEDIR%%/themes/mobile +@dirrm %%HORDEDIR%%/themes/lucblue +@dirrm %%HORDEDIR%%/themes/luc +@dirrm %%HORDEDIR%%/themes/lightblue/graphics +@dirrm %%HORDEDIR%%/themes/lightblue +@dirrm %%HORDEDIR%%/themes/lavander +@dirrm %%HORDEDIR%%/themes/kolab/graphics +@dirrm %%HORDEDIR%%/themes/kolab +@dirrm %%HORDEDIR%%/themes/graphics/tree +@dirrm %%HORDEDIR%%/themes/graphics/nav +@dirrm %%HORDEDIR%%/themes/graphics/mobile +@dirrm %%HORDEDIR%%/themes/graphics/mime +@dirrm %%HORDEDIR%%/themes/graphics/image +@dirrm %%HORDEDIR%%/themes/graphics/flags +@dirrm %%HORDEDIR%%/themes/graphics/emoticons +@dirrm %%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32 +@dirrm %%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23 +@dirrm %%HORDEDIR%%/themes/graphics/block/weatherdotcom +@dirrm %%HORDEDIR%%/themes/graphics/block/sunrise +@dirrm %%HORDEDIR%%/themes/graphics/block/moon +@dirrm %%HORDEDIR%%/themes/graphics/block +@dirrm %%HORDEDIR%%/themes/graphics/alerts +@dirrm %%HORDEDIR%%/themes/graphics +@dirrm %%HORDEDIR%%/themes/grey +@dirrm %%HORDEDIR%%/themes/green +@dirrm %%HORDEDIR%%/themes/gennevilliers +@dirrm %%HORDEDIR%%/themes/cornflower +@dirrm %%HORDEDIR%%/themes/camouflage/graphics +@dirrm %%HORDEDIR%%/themes/camouflage +@dirrm %%HORDEDIR%%/themes/burntorange +@dirrm %%HORDEDIR%%/themes/brown +@dirrm %%HORDEDIR%%/themes/bluewhite +@dirrm %%HORDEDIR%%/themes/bluemoon +@dirrm %%HORDEDIR%%/themes/barbie +@dirrm %%HORDEDIR%%/themes/azur +@dirrm %%HORDEDIR%%/themes/NeXTgrey +@dirrm %%HORDEDIR%%/themes +@dirrm %%HORDEDIR%%/templates/test +@dirrm %%HORDEDIR%%/templates/shares +@dirrm %%HORDEDIR%%/templates/rpcsum +@dirrm %%HORDEDIR%%/templates/problem +@dirrm %%HORDEDIR%%/templates/prefs +@dirrm %%HORDEDIR%%/templates/portal +@dirrm %%HORDEDIR%%/templates/menu +@dirrm %%HORDEDIR%%/templates/maintenance +@dirrm %%HORDEDIR%%/templates/login +@dirrm %%HORDEDIR%%/templates/javascript +@dirrm %%HORDEDIR%%/templates/index +@dirrm %%HORDEDIR%%/templates/help +@dirrm %%HORDEDIR%%/templates/data +@dirrm %%HORDEDIR%%/templates/contents +@dirrm %%HORDEDIR%%/templates/categorytree +@dirrm %%HORDEDIR%%/templates/admin/user +@dirrm %%HORDEDIR%%/templates/admin/setup +@dirrm %%HORDEDIR%%/templates/admin/groups +@dirrm %%HORDEDIR%%/templates/admin +@dirrm %%HORDEDIR%%/templates +@dirrm %%HORDEDIR%%/services/shares +@dirrm %%HORDEDIR%%/services/portal +@dirrm %%HORDEDIR%%/services/obrowser +@dirrm %%HORDEDIR%%/services/images +@dirrm %%HORDEDIR%%/services/help +@dirrm %%HORDEDIR%%/services/editor/htmlarea/popups +@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/lang +@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img +@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations +@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/ListType/lang +@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/ListType +@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/ContextMenu/lang +@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/ContextMenu +@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/AnselImage/lang +@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/AnselImage +@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins +@dirrm %%HORDEDIR%%/services/editor/htmlarea/lang +@dirrm %%HORDEDIR%%/services/editor/htmlarea/images +@dirrm %%HORDEDIR%%/services/editor/htmlarea +@dirrm %%HORDEDIR%%/services/editor +@dirrm %%HORDEDIR%%/services/download +@dirrm %%HORDEDIR%%/services +@dirrm %%HORDEDIR%%/scripts/upgrades +@dirrm %%HORDEDIR%%/scripts/sql +@dirrm %%HORDEDIR%%/scripts/ldap +@dirrm %%HORDEDIR%%/scripts +@dirrm %%HORDEDIR%%/po +@dirrm %%HORDEDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/zh_TW +@dirrm %%HORDEDIR%%/locale/zh_CN/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/zh_CN +@dirrm %%HORDEDIR%%/locale/uk_UA/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/uk_UA +@dirrm %%HORDEDIR%%/locale/tr_TR/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/tr_TR +@dirrm %%HORDEDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/sv_SE +@dirrm %%HORDEDIR%%/locale/sl_SI/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/sl_SI +@dirrm %%HORDEDIR%%/locale/sk_SK/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/sk_SK +@dirrm %%HORDEDIR%%/locale/ru_RU/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/ru_RU +@dirrm %%HORDEDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/ro_RO +@dirrm %%HORDEDIR%%/locale/pt_PT/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/pt_PT +@dirrm %%HORDEDIR%%/locale/pt_BR/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/pt_BR +@dirrm %%HORDEDIR%%/locale/pl_PL/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/pl_PL +@dirrm %%HORDEDIR%%/locale/nn_NO/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/nn_NO +@dirrm %%HORDEDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/nl_NL +@dirrm %%HORDEDIR%%/locale/nb_NO/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/nb_NO +@dirrm %%HORDEDIR%%/locale/mk_MK/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/mk_MK +@dirrm %%HORDEDIR%%/locale/lv_LV/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/lv_LV +@dirrm %%HORDEDIR%%/locale/lt_LT/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/lt_LT +@dirrm %%HORDEDIR%%/locale/ko_KR/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/ko_KR +@dirrm %%HORDEDIR%%/locale/ja_JP/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/ja_JP +@dirrm %%HORDEDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/it_IT +@dirrm %%HORDEDIR%%/locale/id_ID/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/id_ID +@dirrm %%HORDEDIR%%/locale/hu_HU/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/hu_HU +@dirrm %%HORDEDIR%%/locale/gl_ES/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/gl_ES +@dirrm %%HORDEDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/fr_FR +@dirrm %%HORDEDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/fi_FI +@dirrm %%HORDEDIR%%/locale/fa_IR/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/fa_IR +@dirrm %%HORDEDIR%%/locale/et_EE/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/et_EE +@dirrm %%HORDEDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/es_ES +@dirrm %%HORDEDIR%%/locale/en_US +@dirrm %%HORDEDIR%%/locale/el_GR/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/el_GR +@dirrm %%HORDEDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/de_DE +@dirrm %%HORDEDIR%%/locale/da_DK/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/da_DK +@dirrm %%HORDEDIR%%/locale/cs_CZ/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/cs_CZ +@dirrm %%HORDEDIR%%/locale/ca_ES/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/ca_ES +@dirrm %%HORDEDIR%%/locale/bg_BG/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/bg_BG +@dirrm %%HORDEDIR%%/locale/ar_SY/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/ar_SY +@dirrm %%HORDEDIR%%/locale +@dirrm %%HORDEDIR%%/lib/XML/tests +@dirrm %%HORDEDIR%%/lib/XML/docs/examples +@dirrm %%HORDEDIR%%/lib/XML/docs +@dirrm %%HORDEDIR%%/lib/XML/WBXML/DTD +@dirrm %%HORDEDIR%%/lib/XML/WBXML +@dirrm %%HORDEDIR%%/lib/XML +@dirrm %%HORDEDIR%%/lib/VFS/tests +@dirrm %%HORDEDIR%%/lib/VFS/ISOWriter/RealOutputStrategy +@dirrm %%HORDEDIR%%/lib/VFS/ISOWriter/RealInputStrategy +@dirrm %%HORDEDIR%%/lib/VFS/ISOWriter +@dirrm %%HORDEDIR%%/lib/VFS +@dirrm %%HORDEDIR%%/lib/Text/tests +@dirrm %%HORDEDIR%%/lib/Text/reST/Formatter +@dirrm %%HORDEDIR%%/lib/Text/reST +@dirrm %%HORDEDIR%%/lib/Text/docs/examples +@dirrm %%HORDEDIR%%/lib/Text/docs +@dirrm %%HORDEDIR%%/lib/Text/Diff/Renderer +@dirrm %%HORDEDIR%%/lib/Text/Diff +@dirrm %%HORDEDIR%%/lib/Text +@dirrm %%HORDEDIR%%/lib/Net/SMS +@dirrm %%HORDEDIR%%/lib/Net/IMSP/Auth +@dirrm %%HORDEDIR%%/lib/Net/IMSP +@dirrm %%HORDEDIR%%/lib/Net +@dirrm %%HORDEDIR%%/lib/Horde/tests +@dirrm %%HORDEDIR%%/lib/Horde/iCalendar +@dirrm %%HORDEDIR%%/lib/Horde/docs +@dirrm %%HORDEDIR%%/lib/Horde/VC +@dirrm %%HORDEDIR%%/lib/Horde/UI/VarRenderer +@dirrm %%HORDEDIR%%/lib/Horde/UI +@dirrm %%HORDEDIR%%/lib/Horde/Tree +@dirrm %%HORDEDIR%%/lib/Horde/Token +@dirrm %%HORDEDIR%%/lib/Horde/Text/tests +@dirrm %%HORDEDIR%%/lib/Horde/Text/Filter +@dirrm %%HORDEDIR%%/lib/Horde/Text +@dirrm %%HORDEDIR%%/lib/Horde/SyncML/Sync +@dirrm %%HORDEDIR%%/lib/Horde/SyncML/Command/Sync +@dirrm %%HORDEDIR%%/lib/Horde/SyncML/Command +@dirrm %%HORDEDIR%%/lib/Horde/SyncML +@dirrm %%HORDEDIR%%/lib/Horde/SessionHandler +@dirrm %%HORDEDIR%%/lib/Horde/Search +@dirrm %%HORDEDIR%%/lib/Horde/Scheduler +@dirrm %%HORDEDIR%%/lib/Horde/SQL +@dirrm %%HORDEDIR%%/lib/Horde/Relationship +@dirrm %%HORDEDIR%%/lib/Horde/RPC +@dirrm %%HORDEDIR%%/lib/Horde/Prefs +@dirrm %%HORDEDIR%%/lib/Horde/Perms +@dirrm %%HORDEDIR%%/lib/Horde/Notification/Listener +@dirrm %%HORDEDIR%%/lib/Horde/Notification +@dirrm %%HORDEDIR%%/lib/Horde/NLS +@dirrm %%HORDEDIR%%/lib/Horde/Mobile/Renderer +@dirrm %%HORDEDIR%%/lib/Horde/Mobile +@dirrm %%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo +@dirrm %%HORDEDIR%%/lib/Horde/MIME/Viewer +@dirrm %%HORDEDIR%%/lib/Horde/MIME +@dirrm %%HORDEDIR%%/lib/Horde/Image +@dirrm %%HORDEDIR%%/lib/Horde/IMAP/ACL +@dirrm %%HORDEDIR%%/lib/Horde/IMAP +@dirrm %%HORDEDIR%%/lib/Horde/Group +@dirrm %%HORDEDIR%%/lib/Horde/Graph/Plot +@dirrm %%HORDEDIR%%/lib/Horde/Graph/Chart +@dirrm %%HORDEDIR%%/lib/Horde/Graph +@dirrm %%HORDEDIR%%/lib/Horde/Form/Action +@dirrm %%HORDEDIR%%/lib/Horde/Form +@dirrm %%HORDEDIR%%/lib/Horde/Editor +@dirrm %%HORDEDIR%%/lib/Horde/DataTree +@dirrm %%HORDEDIR%%/lib/Horde/Data +@dirrm %%HORDEDIR%%/lib/Horde/Crypt +@dirrm %%HORDEDIR%%/lib/Horde/Compress +@dirrm %%HORDEDIR%%/lib/Horde/Cipher/BlockMode +@dirrm %%HORDEDIR%%/lib/Horde/Cipher +@dirrm %%HORDEDIR%%/lib/Horde/Cache +@dirrm %%HORDEDIR%%/lib/Horde/Browser +@dirrm %%HORDEDIR%%/lib/Horde/Block +@dirrm %%HORDEDIR%%/lib/Horde/Auth +@dirrm %%HORDEDIR%%/lib/Horde +@dirrm %%HORDEDIR%%/lib/File/PDF/fonts +@dirrm %%HORDEDIR%%/lib/File/PDF +@dirrm %%HORDEDIR%%/lib/File +@dirrm %%HORDEDIR%%/lib/Block +@dirrm %%HORDEDIR%%/lib +@dirrm %%HORDEDIR%%/js +@unexec rmdir %D/%%HORDEDIR%%/config 2>/dev/null || true +@dirrm %%HORDEDIR%%/admin/setup +@dirrm %%HORDEDIR%%/admin/perms +@dirrm %%HORDEDIR%%/admin/locale/fi_FI +@dirrm %%HORDEDIR%%/admin/locale/en_US +@dirrm %%HORDEDIR%%/admin/locale +@dirrm %%HORDEDIR%%/admin +@unexec rmdir %D/%%HORDEDIR%% 2>/dev/null || true +%%PORTDOCS%%@dirrm %%DOCSDIR%% +@unexec rmdir %D/etc/horde 2>/dev/null || true diff --git a/www/horde4-base/Makefile b/www/horde4-base/Makefile new file mode 100644 index 000000000000..af93b6b1ebbc --- /dev/null +++ b/www/horde4-base/Makefile @@ -0,0 +1,343 @@ +# Ports collection makefile for: horde2 +# Date created: Sun Oct 07, 2001 +# Whom: Thierry Thomas (<thierry@thomas.as>) +# +# $FreeBSD$ +# + +PORTNAME= horde +PORTVERSION= 3.0 +CATEGORIES= www +MASTER_SITES= ftp://ftp.horde.org/pub/horde/ \ + ftp://ftp.planetmirror.com/pub/horde/horde/ \ + ftp://ftp.au.horde.org/pub/horde/horde/ \ + ftp://ftp.be.horde.org/horde/ \ + ftp://ftp.es.horde.org/pub/horde/ \ + ftp://ftp.it.horde.org/pub/mirror/horde.org/horde/ \ + ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/horde/ \ + ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/horde/ \ + http://ftp.horde.org/pub/horde/ +.if defined(WITH_PHP5) +PKGNAMESUFFIX= -php5 +.endif + +MAINTAINER= thierry@FreeBSD.org +COMMENT= A common code-base used by Horde applications, written in PHP + +#---------------------------------------------------------------------------- +# You may define these options: +# +# - WITH_APACHE2: if you run Apache2. +# +# - WITH_PHP5: if you run PHP5 (you could use www/horde-php5). +# +# - WITHOUT_SUPPORTED_DB: if you run a database not in the ports tree. +# +# - WITHOUT_MYSQL: this port is built with MySQL by default +# but you might choose any other database +# supported by PHP (e.g. WITH_POSTGRESQL). +# +# - WITHOUT_IMAP: this port uses IMAP as a default authentication +# backend; use this knob if for +# example you only need Chora. +# +# - WITHOUT_LDAP: if you do not need OpenLDAP. +# +# - WITHOUT_FTP: if you do not need the VFS FTP driver. +# +# - WITHOUT_MCAL: if you don't plan to install Kronolith. +# +# - WITH_IMSP: use IMSP as a preferences backend. +# +# - WITHOUT_FILEINFO: use native code to perform MIME magic lookups. +# +# - WITHOUT_GD: don't perform manipulations on image data with gd. +# +# - WITHOUT_ZLIB: don't compress pages and don't handle zip or gz data. +# +# - WITH_MAGICK: use ImageMagick to perform these image manipulations. +# +# - WITHOUT_ICONV: remove support for UTF-8 character sets. +# - WITHOUT_MBSTRING: +# +# - WITHOUT_WV if your users never receive MS-Word docs; +# +# - WITHOUT_XL if your users never receive MS-Excel sheets +# (or .ppt presentations); +# +# - WITHOUT_GEOIP don't activate MaxMind GeoIP Hostname to Country lookup. +# +# - WITHOUT_SW don't use the weather.com block on the portal page. +# +# - WITHOUT_WEBCPP: don't highlight sources with webcpp. +# +# - WITH_SRCHIGH: highlight sources with source-highlight. +# +# - WITH_ENSCRIPT: highlight sources with enscript. +# +# - WITH_RPM: handle RPM packages. +# +# - WITH_DEB: handle Debian packages. +# +#---------------------------------------------------------------------------- + +RUN_DEPENDS+= ${PEARDIR}/Date.php:${PORTSDIR}/devel/pear-Date \ + ${PEARDIR}/Log.php:${PORTSDIR}/sysutils/pear-Log \ + ${PEARDIR}/Mail/mime.php:${PORTSDIR}/mail/pear-Mail_Mime \ + ${PEARDIR}/DB.php:${PORTSDIR}/databases/pear-DB \ + ${PEARDIR}/File.php:${PORTSDIR}/sysutils/pear-File \ + ${PEARDIR}/Net/SMTP.php:${PORTSDIR}/net/pear-Net_SMTP + +CONFLICTS= horde-2.* + +NO_BUILD= yes +USE_PHP= ctype gettext session +WANT_PHP_MOD= yes +USE_REINPLACE= yes +PKGMESSAGE= ${WRKDIR}/pkg-message + +.if !defined(WITHOUT_FILEINFO) +USE_PHP+= fileinfo +.endif +.if !defined(WITHOUT_FTP) +USE_PHP+= ftp +.endif +.if !defined(WITHOUT_GD) +USE_PHP+= gd +.endif +.if !defined(WITHOUT_ICONV) +USE_PHP+= iconv +.endif +.if !defined(WITHOUT_IMAP) +USE_PHP+= imap +.endif +.if !defined(WITHOUT_LDAP) +USE_PHP+= ldap +.endif +.if !defined(WITHOUT_MBSTRING) +USE_PHP+= mbstring +.endif +.if !defined(NOCRYPT) +USE_PHP+= mcrypt +.endif +.if !defined(WITHOUT_SUPPORTED_DB) +. if !defined(WITHOUT_MYSQL) +USE_PHP+= mysql +. endif +. if defined(WITH_POSTGRESQL) +USE_PHP+= pgsql +. endif +.endif +.if !defined(WITHOUT_ZLIB) +USE_PHP+= zlib +.endif +.if defined(WITH_MAGICK) +RUN_DEPENDS+= convert:${PORTSDIR}/graphics/ImageMagick +.endif +.if defined(WITH_IMSP) +RUN_DEPENDS+= imspd:${PORTSDIR}/databases/cyrus-imspd +.endif + +.if !defined(WITHOUT_X11) +. if !defined(WITHOUT_WV) +RUN_DEPENDS+= ${LOCALBASE}/bin/wvHtml:${PORTSDIR}/textproc/wv +. endif +. if !defined(WITHOUT_XL) +RUN_DEPENDS+= ${LOCALBASE}/bin/xlhtml:${PORTSDIR}/textproc/xlhtml +. endif +.endif + +.if !defined(WITHOUT_WEBCPP) +RUN_DEPENDS+= webcpp:${PORTSDIR}/textproc/webcpp +.endif + +.if exists(${LOCALBASE}/bin/source-highlight) +WITH_SRCHIGH= yes +.endif +.if defined(WITH_SRCHIGH) +RUN_DEPENDS+= source-highlight:${PORTSDIR}/textproc/source-highlight +.endif + +.if exists(${LOCALBASE}/bin/enscript) +WITH_ENSCRIPT= yes +.endif +.if defined(WITH_ENSCRIPT) +. if defined(A4) +RUN_DEPENDS+= enscript:${PORTSDIR}/print/enscript-a4 +. elif defined(DJ) +RUN_DEPENDS+= enscript:${PORTSDIR}/print/enscript-letterdj +. else +RUN_DEPENDS+= enscript:${PORTSDIR}/print/enscript-letter +. endif +.endif + +.if exists(${LOCALBASE}/bin/rpm) +WITH_RPM= yes +.endif +.if defined(WITH_RPM) +RUN_DEPENDS+= rpm:${PORTSDIR}/archivers/rpm4 +.endif + +.if exists(${LOCALBASE}/bin/dpkg) +WITH_DEB= yes +.endif +.if defined(WITH_DEB) +RUN_DEPENDS+= dpkg:${PORTSDIR}/archivers/dpkg +.endif + +.if !defined(WITHOUT_SW) +RUN_DEPENDS+= ${PEARDIR}/Services/Weather.php:${PORTSDIR}/misc/pear-Services_Weather +.endif + +.if !defined(WITHOUT_GEOIP) +RUN_DEPENDS+= ${LOCALBASE}/share/GeoIP/GeoIP.dat:${PORTSDIR}/net/GeoIP +.endif + +REINPLACE_ARGS= -i.beforeHorde +DOCS= COPYING README docs/CHANGES docs/CODING_STANDARDS \ + docs/CONTRIBUTING docs/CREDITS docs/HACKING docs/INSTALL \ + docs/PERFORMANCE docs/RELEASE docs/RELEASE_NOTES docs/SECURITY \ + docs/TODO docs/TRANSLATIONS docs/UPGRADING +CONFFILE= conf.php mime_drivers.php motd.php nls.php prefs.php registry.php +SUB_DIRS= admin config js lib locale po scripts services templates themes util + +LHORDEDIR?= www/horde +LHORDESBIN?= sbin + +PLIST_SUB= HORDEDIR=${LHORDEDIR} HORDESBIN=${LHORDESBIN} + +HORDEDIR= ${PREFIX}/${LHORDEDIR} +HORDESBIN= ${PREFIX}/${LHORDESBIN} +CONFDIR= ${HORDEDIR}/config + +APACHE_CONF= ${APACHE_CNFDIR}/httpd.conf +PEARDIR?= ${LOCALBASE}/share/pear +.if defined(WITH_APACHE2) +APACHE_CNFDIR= ${LOCALBASE}/etc/apache2 +.else +APACHE_CNFDIR= ${LOCALBASE}/etc/apache +.endif +HORDE_INC= ${PREFIX}/etc/horde +LOG_FILE?= /var/log/horde.log + +.if defined(WITH_PHP5) +USE_PHP+= dom +.else +USE_PHP+= domxml +. if !defined(WITHOUT_MCAL) +USE_PHP+= mcal +. endif +.endif + +.include <bsd.port.pre.mk> # Required to test PHP_VER + +pre-configure: + @${RM} ${WRKSRC}/po/translation.php.orig \ + ${WRKSRC}/config/conf.xml.orig \ + ${WRKSRC}/scripts/sql/README.orig \ + ${WRKSRC}/config/mime_drivers.php.dist.orig + @${SED} -e "s:/home/httpd/html/horde:${HORDEDIR}:" \ + -e "s:php_value auto_prepend_file:# php_value auto_prepend_file:" \ + -e "s:/home/httpd/phplib:${PEARDIR}:" \ + ${FILESDIR}/httpd.conf.horde > ${WRKDIR}/httpd.conf.horde +.if ${PHP_VER} == 5 + @${REINPLACE_CMD} -e "s:mod_php4.c:mod_php5.c:" ${WRKDIR}/httpd.conf.horde +.endif + @${REINPLACE_CMD} -e "s:%%LOCALBASE%%:${LOCALBASE}:" ${WRKSRC}/config/mime_drivers.php.dist +.if !defined(WITHOUT_X11) +. if !defined(WITHOUT_WV) + @${REINPLACE_CMD} -e "s://UNCOMMENTIFWV::" ${WRKSRC}/config/mime_drivers.php.dist +. endif +. if !defined(WITHOUT_XL) + @${REINPLACE_CMD} -e "s://UNCOMMENTIFXL::" ${WRKSRC}/config/mime_drivers.php.dist +. endif +.endif +.if !defined(WITHOUT_WEBCPP) + @${REINPLACE_CMD} -e "s://UNCOMMENTIFWCPP::" ${WRKSRC}/config/mime_drivers.php.dist +.endif +.if defined(WITH_SRCHIGH) + @${REINPLACE_CMD} -e "s://UNCOMMENTIFSRCHIGH::" ${WRKSRC}/config/mime_drivers.php.dist +.endif +.if defined(WITH_ENSCRIPT) + @${REINPLACE_CMD} -e "s://UNCOMMENTIFES::" ${WRKSRC}/config/mime_drivers.php.dist +.endif +.if defined(WITH_RPM) + @${REINPLACE_CMD} -e "s://UNCOMMENTIFRPM::" ${WRKSRC}/config/mime_drivers.php.dist +.endif +.if defined(WITH_DEB) + @${REINPLACE_CMD} -e "s://UNCOMMENTIFDEB::" ${WRKSRC}/config/mime_drivers.php.dist +.endif +.if !defined(WITHOUT_GEOIP) + @${REINPLACE_CMD} -e "s:GeoIP lookup will not be performed.\"/>:GeoIP lookup will not be performed.\">${LOCALBASE}/share/GeoIP/GeoIP.dat</configstring>:" \ + ${WRKSRC}/config/conf.xml +.endif + @${REINPLACE_CMD} -e "s:/tmp/horde.log:${LOG_FILE}:" ${WRKSRC}/config/conf.xml + @${REINPLACE_CMD} -e "s:/etc/mpasswd:${LOCALBASE}/etc/mpasswd:g" \ + ${WRKSRC}/lib/Horde/Auth/mcal.php + @${REINPLACE_CMD} -e "s:/usr/local/apache/htdocs:${PREFIX}/www:g" \ + ${WRKSRC}/docs/INSTALL + @${RM} ${WRKSRC}/lib/Horde/Auth/mcal.php.beforeHorde \ + ${WRKSRC}/config/conf.xml.beforeHorde \ + ${WRKSRC}/config/mime_drivers.php.dist.beforeHorde \ + ${WRKSRC}/docs/INSTALL.beforeHorde + +pre-install: +.if !defined(WITHOUT_SUPPORTED_DB) + @if ! php -m | ${GREP} -q -e "mysql" ; then \ + if ! php -m | ${GREP} -q -e "pgsql" ; then \ + if ! php -m | ${GREP} -q -e "sybase" ; then \ + ${ECHO_MSG} "" ; \ + ${ECHO_MSG} "Please configure PHP with a database support." ; \ + ${ECHO_MSG} "MySQL, PostgreSQL and Sybase (CTLIB or DBLIB)" ; \ + ${ECHO_MSG} "can be used with PHP AND Horde." ; \ + ${ECHO_MSG} "" ; \ + ${ECHO_MSG} "(If everything will run on this machine, do not" ; \ + ${ECHO_MSG} " forget to install the database server-side!)" ; \ + ${ECHO_MSG} "" ; \ + ${FALSE} ; \ + fi ; \ + fi ; \ + fi +.endif + +do-install: + @${MKDIR} ${HORDEDIR} +.for REP in ${SUB_DIRS} + @${CP} -Rp ${WRKSRC}/${REP} ${HORDEDIR} +.endfor + @${CP} -p ${WRKSRC}/*.php ${HORDEDIR} +.for FILE in ${CONFFILE} + @if [ ! -f ${CONFDIR}/${FILE} ]; then \ + ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ + fi +.endfor + @${CP} ${WRKSRC}/scripts/set_perms.sh ${HORDESBIN}/horde_set_perms.sh + @${CHMOD} u+x ${HORDESBIN}/horde_set_perms.sh + @${MKDIR} ${HORDE_INC} + @${INSTALL_DATA} ${WRKDIR}/httpd.conf.horde ${HORDE_INC} + @(if [ -f ${APACHE_CONF} ] ; then \ + ${ECHO_MSG} "===> Updating ${APACHE_CONF}..." ; \ + ${ECHO_CMD} "# Horde's include directory" >> ${APACHE_CONF} ; \ + ${ECHO_CMD} "Include ${HORDE_INC}" >> ${APACHE_CONF} ; \ + fi) + @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${HORDEDIR} + @${CHMOD} -R o-rwx ${CONFDIR} + @${TOUCH} ${LOG_FILE} + @${CHOWN} ${WWWOWN}:${WWWGRP} ${LOG_FILE} +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} +.for FILE in ${DOCS} + @${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR} +.endfor + @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." +.endif + +post-install: + @${SED} -e "s:%%HORDEDIR%%:${HORDEDIR}:g;s:%%APACHE_CONF%%:${APACHE_CONF}:g" \ + -e "s:%%HORDESBIN%%:${HORDESBIN}:;s:%%DOCSDIR%%:${DOCSDIR}:" \ + ${FILESDIR}/pkg-message.in > ${PKGMESSAGE} + @${ECHO_MSG} + @${CAT} ${PKGMESSAGE} + @${ECHO_MSG} + +.include <bsd.port.post.mk> diff --git a/www/horde4-base/distinfo b/www/horde4-base/distinfo new file mode 100644 index 000000000000..ff1486286d73 --- /dev/null +++ b/www/horde4-base/distinfo @@ -0,0 +1,2 @@ +MD5 (horde-3.0.tar.gz) = afe2a76062169cf5cd2cc5a3001fcc6a +SIZE (horde-3.0.tar.gz) = 3113591 diff --git a/www/horde4-base/files/httpd.conf.horde b/www/horde4-base/files/httpd.conf.horde new file mode 100644 index 000000000000..0bd4b621c52b --- /dev/null +++ b/www/horde4-base/files/httpd.conf.horde @@ -0,0 +1,57 @@ +# This is included in Apache's httpd.conf for Horde + +<Directory /home/httpd/html/horde> + Options Indexes FollowSymLinks + AllowOverride None + order allow,deny + allow from all + <IfModule mod_php4.c> + php_value include_path '/home/httpd/phplib:.' + php_flag register_globals On + php_flag magic_quotes_gpc Off + php_flag track_vars On + php_value memory_limit 16M + </IfModule> +</Directory> + +<IfModule mod_alias.c> + Alias /horde/ "/home/httpd/html/horde/" +</IfModule> +# +# For security, don't serve pages from the Horde configuration and library +# directories. +# +#<Directory "/home/httpd/html/horde/admin"> +# Order deny,allow +# Deny from all +#</Directory> +<Directory "/home/httpd/html/horde/config"> + Order deny,allow + Deny from all +</Directory> +<Directory "/home/httpd/html/horde/lib"> + Order deny,allow + Deny from all +</Directory> +<Directory "/home/httpd/html/horde/locale"> + Order deny,allow + Deny from all +</Directory> +<Directory "/home/httpd/html/horde/po"> + Order deny,allow + Deny from all +</Directory> +<Directory "/home/httpd/html/horde/scripts"> + Order deny,allow + Deny from all +</Directory> +<Directory "/home/httpd/html/horde/templates"> + Order deny,allow + Deny from all +</Directory> +<Directory "/home/httpd/html/horde/util"> + Order deny,allow + Deny from all +</Directory> +# End of Horde configuration ================ + diff --git a/www/horde4-base/files/patch-config_conf.xml b/www/horde4-base/files/patch-config_conf.xml new file mode 100644 index 000000000000..56f6f6a346f7 --- /dev/null +++ b/www/horde4-base/files/patch-config_conf.xml @@ -0,0 +1,20 @@ +--- config/conf.xml.orig Fri Nov 5 10:54:09 2004 ++++ config/conf.xml Sat Nov 27 23:20:31 2004 +@@ -276,7 +276,7 @@ + + <case name="login" desc="Login (su) authentication"> + <configsection name="params"> +- <configstring name="location" desc="Location of the su binary">/bin/su</configstring> ++ <configstring name="location" desc="Location of the su binary">/usr/bin/su</configstring> + </configsection> + </case> + +@@ -932,7 +932,7 @@ + <configsection name="params"> + <configstring name="sendmail_path" required="false" desc="The location + of the sendmail binary on the filesystem +- [/usr/sbin/sendmail]">/usr/lib/sendmail</configstring> ++ [/usr/sbin/sendmail]">/usr/sbin/sendmail</configstring> + <configstring name="sendmail_args" required="false" desc="Any extra + parameters to pass to the sendmail or sendmail wrapper + binary">-oi</configstring> diff --git a/www/horde4-base/files/patch-config_mime_drivers.php.dist b/www/horde4-base/files/patch-config_mime_drivers.php.dist new file mode 100644 index 000000000000..b0417103aace --- /dev/null +++ b/www/horde4-base/files/patch-config_mime_drivers.php.dist @@ -0,0 +1,250 @@ +--- config/mime_drivers.php.dist.orig Fri Nov 19 03:40:31 2004 ++++ config/mime_drivers.php.dist Thu Nov 25 21:58:43 2004 +@@ -37,10 +37,20 @@ + * zip Zip files + */ + $mime_drivers_map['horde']['registered'] = array( +- 'css', 'deb', 'enriched', 'enscript', 'html', 'images', 'msword', 'msexcel', +- 'mspowerpoint', 'ooo', 'pdf', 'php', 'plain', 'rar', 'report', +- 'richtext', 'rpm', 'security', 'simple', 'srchighlite', 'tgz', 'tnef', +- 'vcard', 'webcpp', 'zip'); ++ 'css' ++//UNCOMMENTIFDEB , 'deb' ++ , 'enriched' ++//UNCOMMENTIFES , 'enscript' ++ , 'html', 'images' ++//UNCOMMENTIFWV , 'msword' ++//UNCOMMENTIFXL , 'msexcel', 'mspowerpoint' ++ , 'ooo', 'pdf', 'php', 'plain', 'rar', 'report', 'richtext' ++//UNCOMMENTIFRPM , 'rpm' ++ , 'security', 'simple' ++//UNCOMMENTIFSRCHIGH , 'srchighlite' ++ , 'tgz', 'tnef', 'vcard' ++//UNCOMMENTIFWCPP , 'webcpp' ++ , 'zip'); + + + /** +@@ -161,66 +171,66 @@ + * Web C Plus Plus driver settings + * http://webcpp.sourceforge.net/ + */ +-$mime_drivers['horde']['webcpp']['location'] = 'C:\Program Files\Jeffrey Bakker\webcpp\webcpp.exe'; +-$mime_drivers['horde']['webcpp']['inline'] = true; +-$mime_drivers['horde']['webcpp']['handles'] = array( +- 'text/xml', 'text/sgml', 'application/xml', +- 'application/x-sh', 'application/x-javascript', 'application/x-tcl', +- 'x-extension/asm', 'application/x-asp', 'x-extension/bas', +- 'x-extension/cs', 'text/x-csrc', 'x-extension/rc', +- 'text/x-c++src', 'text/x-c++src', 'text/x-c++src', +- 'text/x-chdr', 'x-extension/bat', 'text/x-fortran', +- 'x-extension/f77', 'x-extension/f90', 'x-extension/for', +- 'x-extension/ftn', 'text/x-java', 'application/x-javascript', +- 'text/sgml', 'text/xml', 'text/x-pascal', +- 'application/x-cgi', 'application/x-perl', 'application/x-python', +- 'text/x-sql', 'text/x-tcl', +- 'application/x-shellscript', 'x-extension/vhd', 'x-extension/vhdl'); +-$mime_drivers['horde']['webcpp']['icons'] = array( +- 'default' => 'text.png', +- 'text/xml' => 'xml.png', +- 'text/x-csrc' => 'source-c.png', +- 'text/x-chdr' => 'source-h.png', +- 'text/x-java' => 'source-java.png', +- 'application/x-javascript' => 'script-js.png'); ++//UNCOMMENTIFWCPP$mime_drivers['horde']['webcpp']['location'] = '%%LOCALBASE%%/bin/webcpp'; ++//UNCOMMENTIFWCPP$mime_drivers['horde']['webcpp']['inline'] = true; ++//UNCOMMENTIFWCPP$mime_drivers['horde']['webcpp']['handles'] = array( ++//UNCOMMENTIFWCPP 'text/xml', 'text/sgml', 'application/xml', ++//UNCOMMENTIFWCPP 'application/x-sh', 'application/x-javascript', 'application/x-tcl', ++//UNCOMMENTIFWCPP 'x-extension/asm', 'application/x-asp', 'x-extension/bas', ++//UNCOMMENTIFWCPP 'x-extension/cs', 'text/x-csrc', 'x-extension/rc', ++//UNCOMMENTIFWCPP 'text/x-c++src', 'text/x-c++src', 'text/x-c++src', ++//UNCOMMENTIFWCPP 'text/x-chdr', 'x-extension/bat', 'text/x-fortran', ++//UNCOMMENTIFWCPP 'x-extension/f77', 'x-extension/f90', 'x-extension/for', ++//UNCOMMENTIFWCPP 'x-extension/ftn', 'text/x-java', 'application/x-javascript', ++//UNCOMMENTIFWCPP 'text/sgml', 'text/xml', 'text/x-pascal', ++//UNCOMMENTIFWCPP 'application/x-cgi', 'application/x-perl', 'application/x-python', ++//UNCOMMENTIFWCPP 'text/x-sql', 'text/x-tcl', ++//UNCOMMENTIFWCPP 'application/x-shellscript', 'x-extension/vhd', 'x-extension/vhdl'); ++//UNCOMMENTIFWCPP$mime_drivers['horde']['webcpp']['icons'] = array( ++//UNCOMMENTIFWCPP 'default' => 'text.png', ++//UNCOMMENTIFWCPP 'text/xml' => 'xml.png', ++//UNCOMMENTIFWCPP 'text/x-csrc' => 'source-c.png', ++//UNCOMMENTIFWCPP 'text/x-chdr' => 'source-h.png', ++//UNCOMMENTIFWCPP 'text/x-java' => 'source-java.png', ++//UNCOMMENTIFWCPP 'application/x-javascript' => 'script-js.png'); + + /** + * Source-Highlight driver settings + * http://www.gnu.org/software/src-highlite/ + */ +-$mime_drivers['horde']['srchighlite']['location'] = 'C:\Program Files\src-highlite\bin\source-highlight.exe'; +-$mime_drivers['horde']['srchighlite']['inline'] = true; +-$mime_drivers['horde']['srchighlite']['handles'] = array( +- 'text/x-csrc', 'text/x-c++src', 'text/x-java', +- 'application/x-perl', 'application/x-python', 'text/x-c++src', +- 'text/cpp'); +-$mime_drivers['horde']['srchighlite']['icons'] = array( +- 'default' => 'text.png', +- 'text/x-csrc' => 'source-c.png', +- 'text/x-c++src' => 'source-c.png', +- 'text/cpp' => 'source-c.png', +- 'text/x-java' => 'source-java.png'); ++//UNCOMMENTIFSRCHIGH$mime_drivers['horde']['srchighlite']['location'] = '%%LOCALBASE%%/bin/source-highlight'; ++//UNCOMMENTIFSRCHIGH$mime_drivers['horde']['srchighlite']['inline'] = true; ++//UNCOMMENTIFSRCHIGH$mime_drivers['horde']['srchighlite']['handles'] = array( ++//UNCOMMENTIFSRCHIGH 'text/x-csrc', 'text/x-c++src', 'text/x-java', ++//UNCOMMENTIFSRCHIGH 'application/x-perl', 'application/x-python', 'text/x-c++src', ++//UNCOMMENTIFSRCHIGH 'text/cpp'); ++//UNCOMMENTIFSRCHIGH$mime_drivers['horde']['srchighlite']['icons'] = array( ++//UNCOMMENTIFSRCHIGH 'default' => 'text.png', ++//UNCOMMENTIFSRCHIGH 'text/x-csrc' => 'source-c.png', ++//UNCOMMENTIFSRCHIGH 'text/x-c++src' => 'source-c.png', ++//UNCOMMENTIFSRCHIGH 'text/cpp' => 'source-c.png', ++//UNCOMMENTIFSRCHIGH 'text/x-java' => 'source-java.png'); + + /** + * GNU Enscript driver settings + */ +-$mime_drivers['horde']['enscript']['location'] = '/usr/bin/enscript'; +-$mime_drivers['horde']['enscript']['inline'] = true; +-$mime_drivers['horde']['enscript']['handles'] = array( +- 'application/x-shellscript', 'application/x-javascript', +- 'application/x-perl', 'application/xml', 'text/xml', +- 'text/diff', 'text/x-diff', 'text/x-patch', 'text/x-csrc', +- 'x-extension/cs', 'text/x-java', 'text/x-chdr', 'text/x-c++src', +- 'text/x-c++hdr', 'x-extension/vhd', 'x-extension/vhdl', 'text/x-sql', +- 'x-extension/vb', 'x-extension/vba', 'text/x-emacs-lisp'); +-$mime_drivers['horde']['enscript']['icons'] = array( +- 'default' => 'text.png', +- 'text/xml' => 'xml.png', +- 'application/xml' => 'xml.png', +- 'text/x-csrc' => 'source-c.png', +- 'text/x-chdr' => 'source-h.png', +- 'text/x-java' => 'source-java.png', +- 'application/x-javascript' => 'script-js.png'); ++//UNCOMMENTIFES$mime_drivers['horde']['enscript']['location'] = '%%LOCALBASE%%//bin/enscript'; ++//UNCOMMENTIFES$mime_drivers['horde']['enscript']['inline'] = true; ++//UNCOMMENTIFES$mime_drivers['horde']['enscript']['handles'] = array( ++//UNCOMMENTIFES 'application/x-shellscript', 'application/x-javascript', ++//UNCOMMENTIFES 'application/x-perl', 'application/xml', 'text/xml', ++//UNCOMMENTIFES 'text/diff', 'text/x-diff', 'text/x-patch', 'text/x-csrc', ++//UNCOMMENTIFES 'x-extension/cs', 'text/x-java', 'text/x-chdr', 'text/x-c++src', ++//UNCOMMENTIFES 'text/x-c++hdr', 'x-extension/vhd', 'x-extension/vhdl', 'text/x-sql', ++//UNCOMMENTIFES 'x-extension/vb', 'x-extension/vba', 'text/x-emacs-lisp'); ++//UNCOMMENTIFES$mime_drivers['horde']['enscript']['icons'] = array( ++//UNCOMMENTIFES 'default' => 'text.png', ++//UNCOMMENTIFES 'text/xml' => 'xml.png', ++//UNCOMMENTIFES 'application/xml' => 'xml.png', ++//UNCOMMENTIFES 'text/x-csrc' => 'source-c.png', ++//UNCOMMENTIFES 'text/x-chdr' => 'source-h.png', ++//UNCOMMENTIFES 'text/x-java' => 'source-java.png', ++//UNCOMMENTIFES 'application/x-javascript' => 'script-js.png'); + + + /** +@@ -272,14 +282,14 @@ + * The 'location' entry should point to the 'wvHtml' program, NOT the + * 'wvWare' program. + */ +-$mime_drivers['horde']['msword']['location'] = '/usr/bin/wvHtml'; +-$mime_drivers['horde']['msword']['inline'] = false; +-$mime_drivers['horde']['msword']['handles'] = array( +- 'application/msword', +- 'application/rtf', +- 'text/rtf'); +-$mime_drivers['horde']['msword']['icons'] = array( +- 'default' => 'msword.png'); ++//UNCOMMENTIFWV$mime_drivers['horde']['msword']['location'] = '%%LOCALBASE%%/bin/wvHtml'; ++//UNCOMMENTIFWV$mime_drivers['horde']['msword']['inline'] = false; ++//UNCOMMENTIFWV$mime_drivers['horde']['msword']['handles'] = array( ++//UNCOMMENTIFWV 'application/msword', ++//UNCOMMENTIFWV 'application/rtf', ++//UNCOMMENTIFWV 'text/rtf'); ++//UNCOMMENTIFWV$mime_drivers['horde']['msword']['icons'] = array( ++//UNCOMMENTIFWV 'default' => 'msword.png'); + + + /** +@@ -287,14 +297,14 @@ + * This driver requires xlhtml to be installed. + * xlhtml homepage: http://chicago.sourceforge.net/xlhtml/ + */ +-$mime_drivers['horde']['msexcel']['location'] = '/usr/local/bin/xlhtml'; +-$mime_drivers['horde']['msexcel']['inline'] = false; +-$mime_drivers['horde']['msexcel']['handles'] = array( +- 'application/vnd.ms-excel', +- 'application/msexcel', +- 'application/x-msexcel'); +-$mime_drivers['horde']['msexcel']['icons'] = array( +- 'default' => 'msexcel.png'); ++//UNCOMMENTIFXL$mime_drivers['horde']['msexcel']['location'] = '%%LOCALBASE%%/bin/xlhtml'; ++//UNCOMMENTIFXL$mime_drivers['horde']['msexcel']['inline'] = false; ++//UNCOMMENTIFXL$mime_drivers['horde']['msexcel']['handles'] = array( ++//UNCOMMENTIFXL 'application/vnd.ms-excel', ++//UNCOMMENTIFXL 'application/msexcel', ++//UNCOMMENTIFXL 'application/x-msexcel'); ++//UNCOMMENTIFXL$mime_drivers['horde']['msexcel']['icons'] = array( ++//UNCOMMENTIFXL 'default' => 'msexcel.png'); + + + /** +@@ -302,13 +312,13 @@ + * This driver requires ppthtml, included with xlhtml, to be installed. + * xlhtml homepage: http://chicago.sourceforge.net/xlhtml/ + */ +-$mime_drivers['horde']['mspowerpoint']['location'] = '/usr/local/bin/ppthtml'; +-$mime_drivers['horde']['mspowerpoint']['inline'] = false; +-$mime_drivers['horde']['mspowerpoint']['handles'] = array( +- 'application/vnd.ms-powerpoint', +- 'application/mspowerpoint'); +-$mime_drivers['horde']['mspowerpoint']['icons'] = array( +- 'default' => 'mspowerpoint.png'); ++//UNCOMMENTIFXL$mime_drivers['horde']['mspowerpoint']['location'] = '%%LOCALBASE%%/bin/ppthtml'; ++//UNCOMMENTIFXL$mime_drivers['horde']['mspowerpoint']['inline'] = false; ++//UNCOMMENTIFXL$mime_drivers['horde']['mspowerpoint']['handles'] = array( ++//UNCOMMENTIFXL 'application/vnd.ms-powerpoint', ++//UNCOMMENTIFXL 'application/mspowerpoint'); ++//UNCOMMENTIFXL$mime_drivers['horde']['mspowerpoint']['icons'] = array( ++//UNCOMMENTIFXL 'default' => 'mspowerpoint.png'); + + + /** +@@ -324,24 +334,24 @@ + /** + * RPM driver settings + */ +-$mime_drivers['horde']['rpm']['location'] = '/usr/bin/rpm'; +-$mime_drivers['horde']['rpm']['inline'] = false; +-$mime_drivers['horde']['rpm']['handles'] = array( +- 'application/x-rpm'); +-$mime_drivers['horde']['rpm']['icons'] = array( +- 'default' => 'rpm.png'); ++//UNCOMMENTIFRPM$mime_drivers['horde']['rpm']['location'] = '%%LOCALBASE%%/bin/rpm'; ++//UNCOMMENTIFRPM$mime_drivers['horde']['rpm']['inline'] = false; ++//UNCOMMENTIFRPM$mime_drivers['horde']['rpm']['handles'] = array( ++//UNCOMMENTIFRPM 'application/x-rpm'); ++//UNCOMMENTIFRPM$mime_drivers['horde']['rpm']['icons'] = array( ++//UNCOMMENTIFRPM 'default' => 'rpm.png'); + + + /** + * Debian package driver settings + */ +-$mime_drivers['horde']['deb']['location'] = '/usr/bin/dpkg'; +-$mime_drivers['horde']['deb']['inline'] = false; +-$mime_drivers['horde']['deb']['handles'] = array( +- 'application/x-deb', +- 'application/x-debian-package'); +-$mime_drivers['horde']['deb']['icons'] = array( +- 'default' => 'deb.png'); ++//UNCOMMENTIFDEB$mime_drivers['horde']['deb']['location'] = '%%LOCALBASE%%/bin/dpkg'; ++//UNCOMMENTIFDEB$mime_drivers['horde']['deb']['inline'] = false; ++//UNCOMMENTIFDEB$mime_drivers['horde']['deb']['handles'] = array( ++//UNCOMMENTIFDEB 'application/x-deb', ++//UNCOMMENTIFDEB 'application/x-debian-package'); ++//UNCOMMENTIFDEB$mime_drivers['horde']['deb']['icons'] = array( ++//UNCOMMENTIFDEB 'default' => 'deb.png'); + + + /** diff --git a/www/horde4-base/files/patch-po_translation.php b/www/horde4-base/files/patch-po_translation.php new file mode 100644 index 000000000000..045891903631 --- /dev/null +++ b/www/horde4-base/files/patch-po_translation.php @@ -0,0 +1,8 @@ +--- po/translation.php.orig Tue Jan 21 16:05:36 2003 ++++ po/translation.php Wed Jan 29 23:00:27 2003 +@@ -1,4 +1,4 @@ +-#!/usr/bin/php -q ++#!/usr/local/bin/php -q + <?php + /** + * Translation helper application for the Horde framework. diff --git a/www/horde4-base/files/patch-scripts_sql_README b/www/horde4-base/files/patch-scripts_sql_README new file mode 100644 index 000000000000..6403c0f8e849 --- /dev/null +++ b/www/horde4-base/files/patch-scripts_sql_README @@ -0,0 +1,11 @@ +--- scripts/sql/README.orig Sat Sep 25 21:55:35 2004 ++++ scripts/sql/README Mon Nov 22 13:19:52 2004 +@@ -77,7 +77,7 @@ + PostgreSQL + ~~~~~~~~~~ + +-# su - postgres (or whatever your database runs as... usually postgres) ++# su - pgsql (or whatever your database runs as... usually pgsql) + $ psql -d template1 -f create.pgsql.sql + + This script will create a "horde" database and a "horde" user. You diff --git a/www/horde4-base/files/pkg-message.in b/www/horde4-base/files/pkg-message.in new file mode 100644 index 000000000000..b910ccbe6f2b --- /dev/null +++ b/www/horde4-base/files/pkg-message.in @@ -0,0 +1,36 @@ +************************************************************************ +Horde has been installed in %%HORDEDIR%% with your blank +configuration files. + +If you want Horde to access a database, you have to run the +appropriate scripts located in %%HORDEDIR%%/scripts/sql. +It is recommended that you change the password of the 'hordemgr' +user used to connect to the horde database. +Horde is setup by default to access MySQL. + +WARNING! if you are upgrading from Horde v. 2.2.x, you have to alter your +******** database schemas. Please read the doc UPGRADING. + +You can now access Horde without a password at <http://localhost/horde/>, +and you will be logged in as an administrator. You should first configure +a real authentication backend. Click on "Setup" in the "Administration" +menu and configure Horde. Start in the "Authentication" tab. +See the doc in %%DOCSDIR%% for details. +(tip: if you plan to install IMP, just keep "Automatic authentication as +a certain user", add your login to be treated as administrator, and once +IMP will be installed, switch to "Let a Horde application handle auth"). +Select a log driver; if you keep 'file', do not forget to add a line +in /etc/newsyslog.conf. +Then select and configure a preferences driver. + +Your %%APACHE_CONF%% has been updated, +you have to restart Apache. + +When everything is OK, you should be able to access Horde from +<http://localhost/horde/>. +(If <http://localhost/horde/> does not run, but + <http://localhost/horde/index.php> is OK, then you have + to define index.php as a DirectoryIndex in %%APACHE_CONF%%.) + +There is a testing script at <http://localhost/horde/test.php>. +************************************************************************ diff --git a/www/horde4-base/pkg-deinstall b/www/horde4-base/pkg-deinstall new file mode 100644 index 000000000000..fcecd184cd25 --- /dev/null +++ b/www/horde4-base/pkg-deinstall @@ -0,0 +1,43 @@ +#!/bin/sh +# +# $FreeBSD$ +# +# Try to restore httpd.conf when deinstalling Horde + +if [ x$2 != xDEINSTALL ]; then + exit +fi + +if [ -d ${PKG_PREFIX}/etc/apache ] ; then +APACHEDIR=${PKG_PREFIX}/etc/apache +elif [ -d ${PKG_PREFIX}/etc/apache2 ] ; then +APACHEDIR=${PKG_PREFIX}/etc/apache2 +fi + +if [ -f ${APACHEDIR}/httpd.conf.beforeHorde ] ; then + echo "Restoring httpd.conf..." + cp ${APACHEDIR}/httpd.conf ${APACHEDIR}/httpd.conf.deinstHorde + sed -i.tmp -e "s:Include ${PKG_PREFIX}/etc/horde:# Include ${PKG_PREFIX}/etc/horde:g" \ + ${APACHEDIR}/httpd.conf + rm ${APACHEDIR}/httpd.conf.tmp +fi + +# Backup Horde config files, if needed. + +if [ -z "${PACKAGE_BUILDING}" ]; then + for cf in `ls ${PKG_PREFIX}/www/horde/config/*php`; do + diff -bBqw $cf $cf.dist >/dev/null 2>&1 + case $? in + 0) # original config file, will be deleted by pkg-plist + ;; + 1) # config file has been updated, must be backuped + cp -p $cf $cf.previous + echo "===> Backing-up..." + echo "---> $cf has been saved ***" + echo "---> as $cf.previous ***" + ;; + *) # not found? + ;; + esac + done +fi diff --git a/www/horde4-base/pkg-descr b/www/horde4-base/pkg-descr new file mode 100644 index 000000000000..5a86429fa7e6 --- /dev/null +++ b/www/horde4-base/pkg-descr @@ -0,0 +1,6 @@ +Horde is a framework used by several applications written in PHP. + +Horde is used by these ports: mail/imp, mail/turba, devel/chora, +deskutils/kronolith, deskutils/nag, mail/ingo and deskutils/mnemo. + +WWW: http://www.horde.org/ diff --git a/www/horde4-base/pkg-plist b/www/horde4-base/pkg-plist new file mode 100644 index 000000000000..08ae948b35f4 --- /dev/null +++ b/www/horde4-base/pkg-plist @@ -0,0 +1,1584 @@ +etc/horde/httpd.conf.horde +%%HORDESBIN%%/horde_set_perms.sh +%%PORTDOCS%%%%DOCSDIR%%/CHANGES +%%PORTDOCS%%%%DOCSDIR%%/CODING_STANDARDS +%%PORTDOCS%%%%DOCSDIR%%/CONTRIBUTING +%%PORTDOCS%%%%DOCSDIR%%/COPYING +%%PORTDOCS%%%%DOCSDIR%%/CREDITS +%%PORTDOCS%%%%DOCSDIR%%/HACKING +%%PORTDOCS%%%%DOCSDIR%%/INSTALL +%%PORTDOCS%%%%DOCSDIR%%/PERFORMANCE +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/RELEASE +%%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES +%%PORTDOCS%%%%DOCSDIR%%/SECURITY +%%PORTDOCS%%%%DOCSDIR%%/TODO +%%PORTDOCS%%%%DOCSDIR%%/TRANSLATIONS +%%PORTDOCS%%%%DOCSDIR%%/UPGRADING +%%HORDEDIR%%/admin/cmdshell.php +%%HORDEDIR%%/admin/datatree.php +%%HORDEDIR%%/admin/groups.php +%%HORDEDIR%%/admin/index.php +%%HORDEDIR%%/admin/locale/en_US/help.xml +%%HORDEDIR%%/admin/locale/fi_FI/help.xml +%%HORDEDIR%%/admin/perms/addchild.php +%%HORDEDIR%%/admin/perms/delete.php +%%HORDEDIR%%/admin/perms/edit.php +%%HORDEDIR%%/admin/perms/index.php +%%HORDEDIR%%/admin/phpshell.php +%%HORDEDIR%%/admin/setup/config.php +%%HORDEDIR%%/admin/setup/diff.php +%%HORDEDIR%%/admin/setup/index.php +%%HORDEDIR%%/admin/setup/scripts.php +%%HORDEDIR%%/admin/sqlshell.php +%%HORDEDIR%%/admin/templates.php +%%HORDEDIR%%/admin/user.php +%%HORDEDIR%%/config/.htaccess +%%HORDEDIR%%/config/conf.php +%%HORDEDIR%%/config/conf.php.dist +%%HORDEDIR%%/config/conf.xml +%%HORDEDIR%%/config/hooks.php.dist +%%HORDEDIR%%/config/mime_drivers.php +%%HORDEDIR%%/config/mime_drivers.php.dist +%%HORDEDIR%%/config/motd.php +%%HORDEDIR%%/config/motd.php.dist +%%HORDEDIR%%/config/nls.php +%%HORDEDIR%%/config/nls.php.dist +%%HORDEDIR%%/config/prefs.php +%%HORDEDIR%%/config/prefs.php.dist +%%HORDEDIR%%/config/registry.php +%%HORDEDIR%%/config/registry.php.dist +%%HORDEDIR%%/index.php +%%HORDEDIR%%/js/alphaImageLoader.php +%%HORDEDIR%%/js/enter_key_trap.js +%%HORDEDIR%%/js/form_assign.js +%%HORDEDIR%%/js/form_helpers.js +%%HORDEDIR%%/js/hideable.js +%%HORDEDIR%%/js/httpclient.js +%%HORDEDIR%%/js/image.js +%%HORDEDIR%%/js/open_colorpicker.js +%%HORDEDIR%%/js/popup.js +%%HORDEDIR%%/js/sorter.js +%%HORDEDIR%%/js/tooltip.js +%%HORDEDIR%%/lib/.htaccess +%%HORDEDIR%%/lib/Block/color.php +%%HORDEDIR%%/lib/Block/fortune.php +%%HORDEDIR%%/lib/Block/google.php +%%HORDEDIR%%/lib/Block/iframe.php +%%HORDEDIR%%/lib/Block/metar.php +%%HORDEDIR%%/lib/Block/moon.php +%%HORDEDIR%%/lib/Block/sunrise.php +%%HORDEDIR%%/lib/Block/time.php +%%HORDEDIR%%/lib/Block/weatherdotcom.php +%%HORDEDIR%%/lib/File/PDF.php +%%HORDEDIR%%/lib/File/PDF/fonts/courier.php +%%HORDEDIR%%/lib/File/PDF/fonts/helvetica.php +%%HORDEDIR%%/lib/File/PDF/fonts/helveticab.php +%%HORDEDIR%%/lib/File/PDF/fonts/helveticabi.php +%%HORDEDIR%%/lib/File/PDF/fonts/helveticai.php +%%HORDEDIR%%/lib/File/PDF/fonts/symbol.php +%%HORDEDIR%%/lib/File/PDF/fonts/times.php +%%HORDEDIR%%/lib/File/PDF/fonts/timesb.php +%%HORDEDIR%%/lib/File/PDF/fonts/timesbi.php +%%HORDEDIR%%/lib/File/PDF/fonts/timesi.php +%%HORDEDIR%%/lib/File/PDF/fonts/zapfdingbats.php +%%HORDEDIR%%/lib/Horde.php +%%HORDEDIR%%/lib/Horde/Array.php +%%HORDEDIR%%/lib/Horde/Auth.php +%%HORDEDIR%%/lib/Horde/Auth/Signup.php +%%HORDEDIR%%/lib/Horde/Auth/application.php +%%HORDEDIR%%/lib/Horde/Auth/auto.php +%%HORDEDIR%%/lib/Horde/Auth/composite.php +%%HORDEDIR%%/lib/Horde/Auth/customsql.php +%%HORDEDIR%%/lib/Horde/Auth/cyrsql.php +%%HORDEDIR%%/lib/Horde/Auth/cyrus.php +%%HORDEDIR%%/lib/Horde/Auth/ftp.php +%%HORDEDIR%%/lib/Horde/Auth/http.php +%%HORDEDIR%%/lib/Horde/Auth/imap.php +%%HORDEDIR%%/lib/Horde/Auth/imsp.php +%%HORDEDIR%%/lib/Horde/Auth/ipbasic.php +%%HORDEDIR%%/lib/Horde/Auth/ipmap.php +%%HORDEDIR%%/lib/Horde/Auth/kolab.php +%%HORDEDIR%%/lib/Horde/Auth/krb5.php +%%HORDEDIR%%/lib/Horde/Auth/ldap.php +%%HORDEDIR%%/lib/Horde/Auth/login.php +%%HORDEDIR%%/lib/Horde/Auth/mcal.php +%%HORDEDIR%%/lib/Horde/Auth/pam.php +%%HORDEDIR%%/lib/Horde/Auth/passwd.php +%%HORDEDIR%%/lib/Horde/Auth/radius.php +%%HORDEDIR%%/lib/Horde/Auth/sasl.php +%%HORDEDIR%%/lib/Horde/Auth/smb.php +%%HORDEDIR%%/lib/Horde/Auth/sql.php +%%HORDEDIR%%/lib/Horde/Auth/yahoo.php +%%HORDEDIR%%/lib/Horde/Block.php +%%HORDEDIR%%/lib/Horde/Block/Collection.php +%%HORDEDIR%%/lib/Horde/Block/Layout.php +%%HORDEDIR%%/lib/Horde/Block/UI.php +%%HORDEDIR%%/lib/Horde/Browser.php +%%HORDEDIR%%/lib/Horde/Browser/imode.php +%%HORDEDIR%%/lib/Horde/CLI.php +%%HORDEDIR%%/lib/Horde/Cache.php +%%HORDEDIR%%/lib/Horde/Cache/file.php +%%HORDEDIR%%/lib/Horde/Cache/zps4.php +%%HORDEDIR%%/lib/Horde/Cipher.php +%%HORDEDIR%%/lib/Horde/Cipher/BlockMode.php +%%HORDEDIR%%/lib/Horde/Cipher/BlockMode/cbc.php +%%HORDEDIR%%/lib/Horde/Cipher/BlockMode/cfb64.php +%%HORDEDIR%%/lib/Horde/Cipher/BlockMode/ecb.php +%%HORDEDIR%%/lib/Horde/Cipher/BlockMode/ofb64.php +%%HORDEDIR%%/lib/Horde/Cipher/blowfish.php +%%HORDEDIR%%/lib/Horde/Cipher/cast128.php +%%HORDEDIR%%/lib/Horde/Cipher/des.php +%%HORDEDIR%%/lib/Horde/Cipher/rc2.php +%%HORDEDIR%%/lib/Horde/Cipher/rc4.php +%%HORDEDIR%%/lib/Horde/Compress.php +%%HORDEDIR%%/lib/Horde/Compress/dbx.php +%%HORDEDIR%%/lib/Horde/Compress/gzip.php +%%HORDEDIR%%/lib/Horde/Compress/tar.php +%%HORDEDIR%%/lib/Horde/Compress/tnef.php +%%HORDEDIR%%/lib/Horde/Compress/zip.php +%%HORDEDIR%%/lib/Horde/Config.php +%%HORDEDIR%%/lib/Horde/Crypt.php +%%HORDEDIR%%/lib/Horde/Crypt/pgp.php +%%HORDEDIR%%/lib/Horde/Crypt/smime.php +%%HORDEDIR%%/lib/Horde/Data.php +%%HORDEDIR%%/lib/Horde/Data/csv.php +%%HORDEDIR%%/lib/Horde/Data/icalendar.php +%%HORDEDIR%%/lib/Horde/Data/imc.php +%%HORDEDIR%%/lib/Horde/Data/outlookcsv.php +%%HORDEDIR%%/lib/Horde/Data/palm.php +%%HORDEDIR%%/lib/Horde/Data/pdb.php +%%HORDEDIR%%/lib/Horde/Data/tsv.php +%%HORDEDIR%%/lib/Horde/Data/vcard.php +%%HORDEDIR%%/lib/Horde/Data/vnote.php +%%HORDEDIR%%/lib/Horde/Data/vtodo.php +%%HORDEDIR%%/lib/Horde/DataTree.php +%%HORDEDIR%%/lib/Horde/DataTree/null.php +%%HORDEDIR%%/lib/Horde/DataTree/sql.php +%%HORDEDIR%%/lib/Horde/Date.php +%%HORDEDIR%%/lib/Horde/Editor.php +%%HORDEDIR%%/lib/Horde/Editor/htmlarea.php +%%HORDEDIR%%/lib/Horde/Form.php +%%HORDEDIR%%/lib/Horde/Form/Action.php +%%HORDEDIR%%/lib/Horde/Form/Action/conditional_enable.php +%%HORDEDIR%%/lib/Horde/Form/Action/conditional_setvalue.php +%%HORDEDIR%%/lib/Horde/Form/Action/reload.php +%%HORDEDIR%%/lib/Horde/Form/Action/submit.php +%%HORDEDIR%%/lib/Horde/Form/Action/sum_fields.php +%%HORDEDIR%%/lib/Horde/Form/Action/updatefield.php +%%HORDEDIR%%/lib/Horde/Form/Renderer.php +%%HORDEDIR%%/lib/Horde/Graph.php +%%HORDEDIR%%/lib/Horde/Graph/Chart/pie.php +%%HORDEDIR%%/lib/Horde/Graph/Chart/pie3d.php +%%HORDEDIR%%/lib/Horde/Graph/Plot/bar.php +%%HORDEDIR%%/lib/Horde/Graph/Plot/bargrouped.php +%%HORDEDIR%%/lib/Horde/Graph/Plot/barstacked.php +%%HORDEDIR%%/lib/Horde/Graph/Plot/line.php +%%HORDEDIR%%/lib/Horde/Graph/Plot/scatter.php +%%HORDEDIR%%/lib/Horde/Group.php +%%HORDEDIR%%/lib/Horde/Group/hooks.php +%%HORDEDIR%%/lib/Horde/Help.php +%%HORDEDIR%%/lib/Horde/History.php +%%HORDEDIR%%/lib/Horde/IMAP/ACL.php +%%HORDEDIR%%/lib/Horde/IMAP/ACL/rfc2086.php +%%HORDEDIR%%/lib/Horde/IMAP/Admin.php +%%HORDEDIR%%/lib/Horde/IMAP/Cache.php +%%HORDEDIR%%/lib/Horde/IMAP/Search.php +%%HORDEDIR%%/lib/Horde/IMAP/Sort.php +%%HORDEDIR%%/lib/Horde/IMAP/Thread.php +%%HORDEDIR%%/lib/Horde/IMAP/Tree.php +%%HORDEDIR%%/lib/Horde/Identity.php +%%HORDEDIR%%/lib/Horde/Image.php +%%HORDEDIR%%/lib/Horde/Image/gd.php +%%HORDEDIR%%/lib/Horde/Image/im.php +%%HORDEDIR%%/lib/Horde/Image/png.php +%%HORDEDIR%%/lib/Horde/Image/rgb.php +%%HORDEDIR%%/lib/Horde/Image/svg.php +%%HORDEDIR%%/lib/Horde/Image/swf.php +%%HORDEDIR%%/lib/Horde/Kolab.php +%%HORDEDIR%%/lib/Horde/LDAP.php +%%HORDEDIR%%/lib/Horde/MIME.php +%%HORDEDIR%%/lib/Horde/MIME/Contents.php +%%HORDEDIR%%/lib/Horde/MIME/Headers.php +%%HORDEDIR%%/lib/Horde/MIME/MDN.php +%%HORDEDIR%%/lib/Horde/MIME/Magic.php +%%HORDEDIR%%/lib/Horde/MIME/Message.php +%%HORDEDIR%%/lib/Horde/MIME/Part.php +%%HORDEDIR%%/lib/Horde/MIME/Structure.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/css.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/deb.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/default.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/enriched.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/enscript.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/html.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/icalendar.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/images.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/msexcel.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/mspowerpoint.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/msword.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/common.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/global_document.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/main_html.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/palm.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/style_header.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/style_inlined.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/style_mapping.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/table.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/table_cells.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/table_columns.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/table_rows.xsl +%%HORDEDIR%%/lib/Horde/MIME/Viewer/pdf.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/php.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/plain.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/rar.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/report.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/rfc822.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/richtext.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/rpm.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/security.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/simple.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/source.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/srchighlite.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/tgz.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/tnef.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/vcard.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/webcpp.php +%%HORDEDIR%%/lib/Horde/MIME/Viewer/zip.php +%%HORDEDIR%%/lib/Horde/MIME/mime.magic.php +%%HORDEDIR%%/lib/Horde/MIME/mime.mapping.php +%%HORDEDIR%%/lib/Horde/Maintenance.php +%%HORDEDIR%%/lib/Horde/Menu.php +%%HORDEDIR%%/lib/Horde/Mobile.php +%%HORDEDIR%%/lib/Horde/Mobile/Renderer.php +%%HORDEDIR%%/lib/Horde/Mobile/Renderer/html.php +%%HORDEDIR%%/lib/Horde/Mobile/Renderer/wml.php +%%HORDEDIR%%/lib/Horde/NLS.php +%%HORDEDIR%%/lib/Horde/NLS/GeoIP.php +%%HORDEDIR%%/lib/Horde/NLS/carsigns.php +%%HORDEDIR%%/lib/Horde/NLS/coordinates.php +%%HORDEDIR%%/lib/Horde/NLS/countries.php +%%HORDEDIR%%/lib/Horde/NLS/tld.php +%%HORDEDIR%%/lib/Horde/Notification.php +%%HORDEDIR%%/lib/Horde/Notification/Event.php +%%HORDEDIR%%/lib/Horde/Notification/Listener.php +%%HORDEDIR%%/lib/Horde/Notification/Listener/javascript.php +%%HORDEDIR%%/lib/Horde/Notification/Listener/mobile.php +%%HORDEDIR%%/lib/Horde/Notification/Listener/status.php +%%HORDEDIR%%/lib/Horde/Perms.php +%%HORDEDIR%%/lib/Horde/Perms/UI.php +%%HORDEDIR%%/lib/Horde/Perms/datatree.php +%%HORDEDIR%%/lib/Horde/Prefs.php +%%HORDEDIR%%/lib/Horde/Prefs/CategoryManager.php +%%HORDEDIR%%/lib/Horde/Prefs/UI.php +%%HORDEDIR%%/lib/Horde/Prefs/imsp.php +%%HORDEDIR%%/lib/Horde/Prefs/kolab.php +%%HORDEDIR%%/lib/Horde/Prefs/ldap.php +%%HORDEDIR%%/lib/Horde/Prefs/session.php +%%HORDEDIR%%/lib/Horde/Prefs/sql.php +%%HORDEDIR%%/lib/Horde/RPC.php +%%HORDEDIR%%/lib/Horde/RPC/soap.php +%%HORDEDIR%%/lib/Horde/RPC/syncml.php +%%HORDEDIR%%/lib/Horde/RPC/syncml_wbxml.php +%%HORDEDIR%%/lib/Horde/RPC/webdav.php +%%HORDEDIR%%/lib/Horde/RPC/xmlrpc.php +%%HORDEDIR%%/lib/Horde/Registry.php +%%HORDEDIR%%/lib/Horde/Relationship/Manager.php +%%HORDEDIR%%/lib/Horde/SQL.php +%%HORDEDIR%%/lib/Horde/SQL/Attributes.php +%%HORDEDIR%%/lib/Horde/SQL/Keywords.php +%%HORDEDIR%%/lib/Horde/Scheduler.php +%%HORDEDIR%%/lib/Horde/Scheduler/cron.php +%%HORDEDIR%%/lib/Horde/Search.php +%%HORDEDIR%%/lib/Horde/Search/google.php +%%HORDEDIR%%/lib/Horde/Secret.php +%%HORDEDIR%%/lib/Horde/Serialize.php +%%HORDEDIR%%/lib/Horde/SessionHandler.php +%%HORDEDIR%%/lib/Horde/SessionHandler/dbm.php +%%HORDEDIR%%/lib/Horde/SessionHandler/mysql.php +%%HORDEDIR%%/lib/Horde/SessionHandler/oci8.php +%%HORDEDIR%%/lib/Horde/SessionHandler/pgsql.php +%%HORDEDIR%%/lib/Horde/SessionHandler/sapdb.php +%%HORDEDIR%%/lib/Horde/SessionHandler/sql.php +%%HORDEDIR%%/lib/Horde/SessionObjects.php +%%HORDEDIR%%/lib/Horde/Share.php +%%HORDEDIR%%/lib/Horde/String.php +%%HORDEDIR%%/lib/Horde/SyncML.php +%%HORDEDIR%%/lib/Horde/SyncML/Command.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Alert.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Final.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Get.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Map.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Put.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Replace.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Results.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Status.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Sync.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Sync/Add.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Sync/ContentSyncElement.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Sync/Delete.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Sync/Replace.php +%%HORDEDIR%%/lib/Horde/SyncML/Command/Sync/SyncElement.php +%%HORDEDIR%%/lib/Horde/SyncML/State.php +%%HORDEDIR%%/lib/Horde/SyncML/Sync.php +%%HORDEDIR%%/lib/Horde/SyncML/Sync/OneWayFromClientSync.php +%%HORDEDIR%%/lib/Horde/SyncML/Sync/OneWayFromServerSync.php +%%HORDEDIR%%/lib/Horde/SyncML/Sync/RefreshFromClientSync.php +%%HORDEDIR%%/lib/Horde/SyncML/Sync/RefreshFromServerSync.php +%%HORDEDIR%%/lib/Horde/SyncML/Sync/SlowSync.php +%%HORDEDIR%%/lib/Horde/SyncML/Sync/TwoWaySync.php +%%HORDEDIR%%/lib/Horde/Template.php +%%HORDEDIR%%/lib/Horde/Text.php +%%HORDEDIR%%/lib/Horde/Text/Filter.php +%%HORDEDIR%%/lib/Horde/Text/Filter/bbcode.php +%%HORDEDIR%%/lib/Horde/Text/Filter/cleanascii.php +%%HORDEDIR%%/lib/Horde/Text/Filter/dimsignature.php +%%HORDEDIR%%/lib/Horde/Text/Filter/emails.php +%%HORDEDIR%%/lib/Horde/Text/Filter/emoticons.php +%%HORDEDIR%%/lib/Horde/Text/Filter/environment.php +%%HORDEDIR%%/lib/Horde/Text/Filter/highlightquotes.php +%%HORDEDIR%%/lib/Horde/Text/Filter/html2text.php +%%HORDEDIR%%/lib/Horde/Text/Filter/linkurls.php +%%HORDEDIR%%/lib/Horde/Text/Filter/rst.php +%%HORDEDIR%%/lib/Horde/Text/Filter/simplemarkup.php +%%HORDEDIR%%/lib/Horde/Text/Filter/space2html.php +%%HORDEDIR%%/lib/Horde/Text/Filter/tabs2spaces.php +%%HORDEDIR%%/lib/Horde/Text/Filter/text2html.php +%%HORDEDIR%%/lib/Horde/Text/Filter/words.php +%%HORDEDIR%%/lib/Horde/Timer.php +%%HORDEDIR%%/lib/Horde/Token.php +%%HORDEDIR%%/lib/Horde/Token/file.php +%%HORDEDIR%%/lib/Horde/Token/sql.php +%%HORDEDIR%%/lib/Horde/Tree.php +%%HORDEDIR%%/lib/Horde/Tree/html.php +%%HORDEDIR%%/lib/Horde/Tree/javascript.php +%%HORDEDIR%%/lib/Horde/UI/Language.php +%%HORDEDIR%%/lib/Horde/UI/Pager.php +%%HORDEDIR%%/lib/Horde/UI/Table.php +%%HORDEDIR%%/lib/Horde/UI/Tabs.php +%%HORDEDIR%%/lib/Horde/UI/VarRenderer.php +%%HORDEDIR%%/lib/Horde/UI/VarRenderer/html.php +%%HORDEDIR%%/lib/Horde/UI/Widget.php +%%HORDEDIR%%/lib/Horde/Util.php +%%HORDEDIR%%/lib/Horde/VC.php +%%HORDEDIR%%/lib/Horde/VC/cvs.php +%%HORDEDIR%%/lib/Horde/VC/rcs.php +%%HORDEDIR%%/lib/Horde/VC/svn.php +%%HORDEDIR%%/lib/Horde/Variables.php +%%HORDEDIR%%/lib/Horde/iCalendar.php +%%HORDEDIR%%/lib/Horde/iCalendar/valarm.php +%%HORDEDIR%%/lib/Horde/iCalendar/vcard.php +%%HORDEDIR%%/lib/Horde/iCalendar/vevent.php +%%HORDEDIR%%/lib/Horde/iCalendar/vfreebusy.php +%%HORDEDIR%%/lib/Horde/iCalendar/vjournal.php +%%HORDEDIR%%/lib/Horde/iCalendar/vnote.php +%%HORDEDIR%%/lib/Horde/iCalendar/vtimezone.php +%%HORDEDIR%%/lib/Horde/iCalendar/vtodo.php +%%HORDEDIR%%/lib/Net/IMSP.php +%%HORDEDIR%%/lib/Net/IMSP/Auth.php +%%HORDEDIR%%/lib/Net/IMSP/Auth/cram_md5.php +%%HORDEDIR%%/lib/Net/IMSP/Auth/plaintext.php +%%HORDEDIR%%/lib/Net/IMSP/Book.php +%%HORDEDIR%%/lib/Net/IMSP/Options.php +%%HORDEDIR%%/lib/Net/IMSP/Utils.php +%%HORDEDIR%%/lib/Net/SMS.php +%%HORDEDIR%%/lib/Net/SMS/clickatell_http.php +%%HORDEDIR%%/lib/Net/SMS/sms2email_http.php +%%HORDEDIR%%/lib/Net/SMS/vodafoneitaly_smtp.php +%%HORDEDIR%%/lib/Test.php +%%HORDEDIR%%/lib/Text/Diff.php +%%HORDEDIR%%/lib/Text/Diff/Renderer.php +%%HORDEDIR%%/lib/Text/Diff/Renderer/inline.php +%%HORDEDIR%%/lib/Text/Diff/Renderer/unified.php +%%HORDEDIR%%/lib/Text/Diff3.php +%%HORDEDIR%%/lib/Text/Flowed.php +%%HORDEDIR%%/lib/Text/reST.php +%%HORDEDIR%%/lib/Text/reST/Formatter.php +%%HORDEDIR%%/lib/Text/reST/Formatter/html.php +%%HORDEDIR%%/lib/Text/reST/Parser.php +%%HORDEDIR%%/lib/VFS.php +%%HORDEDIR%%/lib/VFS/Browser.php +%%HORDEDIR%%/lib/VFS/GC.php +%%HORDEDIR%%/lib/VFS/ISOWriter.php +%%HORDEDIR%%/lib/VFS/ISOWriter/RealInputStrategy.php +%%HORDEDIR%%/lib/VFS/ISOWriter/RealInputStrategy/copy.php +%%HORDEDIR%%/lib/VFS/ISOWriter/RealInputStrategy/direct.php +%%HORDEDIR%%/lib/VFS/ISOWriter/RealOutputStrategy.php +%%HORDEDIR%%/lib/VFS/ISOWriter/RealOutputStrategy/copy.php +%%HORDEDIR%%/lib/VFS/ISOWriter/RealOutputStrategy/direct.php +%%HORDEDIR%%/lib/VFS/ISOWriter/mkisofs.php +%%HORDEDIR%%/lib/VFS/ListItem.php +%%HORDEDIR%%/lib/VFS/Object.php +%%HORDEDIR%%/lib/VFS/file.php +%%HORDEDIR%%/lib/VFS/ftp.php +%%HORDEDIR%%/lib/VFS/musql.php +%%HORDEDIR%%/lib/VFS/sql.php +%%HORDEDIR%%/lib/VFS/sql_file.php +%%HORDEDIR%%/lib/XML/RAX.php +%%HORDEDIR%%/lib/XML/SVG.php +%%HORDEDIR%%/lib/XML/WBXML.php +%%HORDEDIR%%/lib/XML/WBXML/ContentHandler.php +%%HORDEDIR%%/lib/XML/WBXML/DTD.php +%%HORDEDIR%%/lib/XML/WBXML/DTD/SyncML.php +%%HORDEDIR%%/lib/XML/WBXML/DTD/SyncMLDevInf.php +%%HORDEDIR%%/lib/XML/WBXML/DTD/SyncMLMetInf.php +%%HORDEDIR%%/lib/XML/WBXML/DTDManager.php +%%HORDEDIR%%/lib/XML/WBXML/Decoder.php +%%HORDEDIR%%/lib/XML/WBXML/Encoder.php +%%HORDEDIR%%/lib/api.php +%%HORDEDIR%%/lib/base.php +%%HORDEDIR%%/lib/core.php +%%HORDEDIR%%/lib/prefs.php +%%HORDEDIR%%/lib/version.php +%%HORDEDIR%%/locale/.htaccess +%%HORDEDIR%%/locale/ar_SY/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/bg_BG/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/bg_BG/help.xml +%%HORDEDIR%%/locale/ca_ES/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/cs_CZ/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/cs_CZ/help.xml +%%HORDEDIR%%/locale/da_DK/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/da_DK/help.xml +%%HORDEDIR%%/locale/de_DE/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/de_DE/help.xml +%%HORDEDIR%%/locale/el_GR/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/el_GR/help.xml +%%HORDEDIR%%/locale/en_US/help.xml +%%HORDEDIR%%/locale/es_ES/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/es_ES/help.xml +%%HORDEDIR%%/locale/et_EE/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/et_EE/help.xml +%%HORDEDIR%%/locale/fa_IR/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/fi_FI/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/fi_FI/help.xml +%%HORDEDIR%%/locale/fr_FR/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/fr_FR/help.xml +%%HORDEDIR%%/locale/gl_ES/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/hu_HU/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/hu_HU/help.xml +%%HORDEDIR%%/locale/id_ID/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/it_IT/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/it_IT/help.xml +%%HORDEDIR%%/locale/ja_JP/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/ja_JP/help.xml +%%HORDEDIR%%/locale/ko_KR/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/ko_KR/help.xml +%%HORDEDIR%%/locale/lt_LT/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/lt_LT/help.xml +%%HORDEDIR%%/locale/lv_LV/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/mk_MK/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/nb_NO/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/nb_NO/help.xml +%%HORDEDIR%%/locale/nl_NL/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/nl_NL/help.xml +%%HORDEDIR%%/locale/nn_NO/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/nn_NO/help.xml +%%HORDEDIR%%/locale/pl_PL/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/pl_PL/help.xml +%%HORDEDIR%%/locale/pt_BR/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/pt_BR/help.xml +%%HORDEDIR%%/locale/pt_PT/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/pt_PT/help.xml +%%HORDEDIR%%/locale/ro_RO/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/ru_RU/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/ru_RU/help.xml +%%HORDEDIR%%/locale/sk_SK/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/sk_SK/help.xml +%%HORDEDIR%%/locale/sl_SI/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/sl_SI/help.xml +%%HORDEDIR%%/locale/sv_SE/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/sv_SE/help.xml +%%HORDEDIR%%/locale/tr_TR/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/uk_UA/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/uk_UA/help.xml +%%HORDEDIR%%/locale/zh_CN/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/zh_CN/help.xml +%%HORDEDIR%%/locale/zh_TW/LC_MESSAGES/horde.mo +%%HORDEDIR%%/locale/zh_TW/help.xml +%%HORDEDIR%%/login.php +%%HORDEDIR%%/po/.htaccess +%%HORDEDIR%%/po/README +%%HORDEDIR%%/po/ar_SY.po +%%HORDEDIR%%/po/bg_BG.po +%%HORDEDIR%%/po/ca_ES.po +%%HORDEDIR%%/po/cs_CZ.po +%%HORDEDIR%%/po/da_DK.po +%%HORDEDIR%%/po/de_DE.po +%%HORDEDIR%%/po/el_GR.po +%%HORDEDIR%%/po/es_ES.po +%%HORDEDIR%%/po/et_EE.po +%%HORDEDIR%%/po/fa_IR.po +%%HORDEDIR%%/po/fi_FI.po +%%HORDEDIR%%/po/fr_FR.po +%%HORDEDIR%%/po/gl_ES.po +%%HORDEDIR%%/po/horde.pot +%%HORDEDIR%%/po/hu_HU.po +%%HORDEDIR%%/po/id_ID.po +%%HORDEDIR%%/po/it_IT.po +%%HORDEDIR%%/po/ja_JP.po +%%HORDEDIR%%/po/ko_KR.po +%%HORDEDIR%%/po/lt_LT.po +%%HORDEDIR%%/po/lv_LV.po +%%HORDEDIR%%/po/mk_MK.po +%%HORDEDIR%%/po/nb_NO.po +%%HORDEDIR%%/po/nl_NL.po +%%HORDEDIR%%/po/nn_NO.po +%%HORDEDIR%%/po/pl_PL.po +%%HORDEDIR%%/po/pt_BR.po +%%HORDEDIR%%/po/pt_PT.po +%%HORDEDIR%%/po/ro_RO.po +%%HORDEDIR%%/po/ru_RU.po +%%HORDEDIR%%/po/sk_SK.po +%%HORDEDIR%%/po/sl_SI.po +%%HORDEDIR%%/po/sv_SE.po +%%HORDEDIR%%/po/tr_TR.po +%%HORDEDIR%%/po/translation.php +%%HORDEDIR%%/po/uk_UA.po +%%HORDEDIR%%/po/zh_CN.po +%%HORDEDIR%%/po/zh_TW.po +%%HORDEDIR%%/rpc.php +%%HORDEDIR%%/scripts/.htaccess +%%HORDEDIR%%/scripts/SCRIPTS +%%HORDEDIR%%/scripts/crond +%%HORDEDIR%%/scripts/get_login.php +%%HORDEDIR%%/scripts/http_login_refer.php +%%HORDEDIR%%/scripts/ldap/horde.schema +%%HORDEDIR%%/scripts/migrate_user_categories.php +%%HORDEDIR%%/scripts/remove_prefs.php +%%HORDEDIR%%/scripts/set_perms.sh +%%HORDEDIR%%/scripts/setup.php +%%HORDEDIR%%/scripts/sql/README +%%HORDEDIR%%/scripts/sql/README.OCI8 +%%HORDEDIR%%/scripts/sql/create.mysql.sql +%%HORDEDIR%%/scripts/sql/create.oci8.sql +%%HORDEDIR%%/scripts/sql/create.pgsql.sql +%%HORDEDIR%%/scripts/sql/create.sybase.sql +%%HORDEDIR%%/scripts/sql/horde_datatree.mysql.sql +%%HORDEDIR%%/scripts/sql/horde_datatree.sql +%%HORDEDIR%%/scripts/sql/horde_log.sql +%%HORDEDIR%%/scripts/sql/horde_muvfs.sql +%%HORDEDIR%%/scripts/sql/horde_prefs.sql +%%HORDEDIR%%/scripts/sql/horde_sessionhandler.oci8.sql +%%HORDEDIR%%/scripts/sql/horde_sessionhandler.pgsql.sql +%%HORDEDIR%%/scripts/sql/horde_sessionhandler.sapdb.sql +%%HORDEDIR%%/scripts/sql/horde_sessionhandler.sql +%%HORDEDIR%%/scripts/sql/horde_tokens.sql +%%HORDEDIR%%/scripts/sql/horde_users.sql +%%HORDEDIR%%/scripts/sql/horde_vfs.oci8.sql +%%HORDEDIR%%/scripts/sql/horde_vfs.pgsql.sql +%%HORDEDIR%%/scripts/sql/horde_vfs.sql +%%HORDEDIR%%/scripts/sql/script.initial_horde_user.sql +%%HORDEDIR%%/scripts/temp-cleanup.cron +%%HORDEDIR%%/scripts/themes_check.php +%%HORDEDIR%%/scripts/upgrades/2.2_to_3.0.mysql.sql +%%HORDEDIR%%/services/cacheview.php +%%HORDEDIR%%/services/download/index.php +%%HORDEDIR%%/services/editor/htmlarea/dialog.js +%%HORDEDIR%%/services/editor/htmlarea/htmlarea.css +%%HORDEDIR%%/services/editor/htmlarea/htmlarea.js +%%HORDEDIR%%/services/editor/htmlarea/images/ed_about.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_align_center.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_align_justify.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_align_left.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_align_right.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_blank.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_charmap.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_color_bg.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_color_fg.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_copy.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_custom.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_cut.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_delete.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_format_bold.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_format_italic.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_format_strike.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_format_sub.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_format_sup.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_format_underline.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_help.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_hr.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_html.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_image.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_indent_less.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_indent_more.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_killword.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_left_to_right.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_link.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_list_bullet.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_list_num.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_paste.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_redo.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_right_to_left.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_rmformat.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_save.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_show_border.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_splitcel.gif +%%HORDEDIR%%/services/editor/htmlarea/images/ed_undo.gif +%%HORDEDIR%%/services/editor/htmlarea/images/fullscreen_maximize.gif +%%HORDEDIR%%/services/editor/htmlarea/images/fullscreen_minimize.gif +%%HORDEDIR%%/services/editor/htmlarea/images/insert_table.gif +%%HORDEDIR%%/services/editor/htmlarea/lang/en.js +%%HORDEDIR%%/services/editor/htmlarea/plugins/AnselImage/ansel-image.js +%%HORDEDIR%%/services/editor/htmlarea/plugins/AnselImage/insert_image.php +%%HORDEDIR%%/services/editor/htmlarea/plugins/AnselImage/lang/en.js +%%HORDEDIR%%/services/editor/htmlarea/plugins/AnselImage/showimage.html +%%HORDEDIR%%/services/editor/htmlarea/plugins/ContextMenu/context-menu.js +%%HORDEDIR%%/services/editor/htmlarea/plugins/ContextMenu/lang/en.js +%%HORDEDIR%%/services/editor/htmlarea/plugins/ContextMenu/menu.css +%%HORDEDIR%%/services/editor/htmlarea/plugins/ListType/lang/en.js +%%HORDEDIR%%/services/editor/htmlarea/plugins/ListType/list-type.js +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-delete.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-insert-after.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-insert-before.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-merge.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-prop.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-split.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-delete.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-insert-after.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-insert-before.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-split.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-delete.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-insert-above.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-insert-under.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-prop.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-split.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/table-prop.gif +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/lang/en.js +%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/table-operations.js +%%HORDEDIR%%/services/editor/htmlarea/popupdiv.js +%%HORDEDIR%%/services/editor/htmlarea/popups/about.html +%%HORDEDIR%%/services/editor/htmlarea/popups/blank.html +%%HORDEDIR%%/services/editor/htmlarea/popups/fullscreen.html +%%HORDEDIR%%/services/editor/htmlarea/popups/insert_image.html +%%HORDEDIR%%/services/editor/htmlarea/popups/insert_table.html +%%HORDEDIR%%/services/editor/htmlarea/popups/link.html +%%HORDEDIR%%/services/editor/htmlarea/popups/popup.js +%%HORDEDIR%%/services/editor/htmlarea/popups/select_color.html +%%HORDEDIR%%/services/editor/htmlarea/popupwin.js +%%HORDEDIR%%/services/go.php +%%HORDEDIR%%/services/help/index.php +%%HORDEDIR%%/services/images/colorpicker.php +%%HORDEDIR%%/services/images/pixel.php +%%HORDEDIR%%/services/images/view.php +%%HORDEDIR%%/services/javascript.php +%%HORDEDIR%%/services/keyboard.php +%%HORDEDIR%%/services/language.php +%%HORDEDIR%%/services/maintenance.php +%%HORDEDIR%%/services/obrowser/index.php +%%HORDEDIR%%/services/portal/edit.php +%%HORDEDIR%%/services/portal/index.php +%%HORDEDIR%%/services/portal/mobile.php +%%HORDEDIR%%/services/portal/rpcsum.php +%%HORDEDIR%%/services/portal/sidebar.php +%%HORDEDIR%%/services/prefs.php +%%HORDEDIR%%/services/problem.php +%%HORDEDIR%%/services/resetpassword.php +%%HORDEDIR%%/services/shares/edit.php +%%HORDEDIR%%/signup.php +%%HORDEDIR%%/templates/.htaccess +%%HORDEDIR%%/templates/admin/common-header.inc +%%HORDEDIR%%/templates/admin/groups/addchild.inc +%%HORDEDIR%%/templates/admin/groups/delete.inc +%%HORDEDIR%%/templates/admin/groups/edit.inc +%%HORDEDIR%%/templates/admin/setup/config.html +%%HORDEDIR%%/templates/admin/setup/diff.html +%%HORDEDIR%%/templates/admin/setup/index.html +%%HORDEDIR%%/templates/admin/user/add.inc +%%HORDEDIR%%/templates/admin/user/approve.inc +%%HORDEDIR%%/templates/admin/user/clear.inc +%%HORDEDIR%%/templates/admin/user/list.inc +%%HORDEDIR%%/templates/admin/user/noadd.inc +%%HORDEDIR%%/templates/admin/user/nolist.inc +%%HORDEDIR%%/templates/admin/user/remove.inc +%%HORDEDIR%%/templates/admin/user/removequeued.inc +%%HORDEDIR%%/templates/admin/user/update.inc +%%HORDEDIR%%/templates/categorytree/rowend.inc +%%HORDEDIR%%/templates/categorytree/rowstart.inc +%%HORDEDIR%%/templates/categorytree/tablefoot.inc +%%HORDEDIR%%/templates/categorytree/tablehead.inc +%%HORDEDIR%%/templates/common-footer.inc +%%HORDEDIR%%/templates/common-header.inc +%%HORDEDIR%%/templates/contents/open_view_win.js +%%HORDEDIR%%/templates/data/csvinfo.inc +%%HORDEDIR%%/templates/data/csvmap.inc +%%HORDEDIR%%/templates/data/date.inc +%%HORDEDIR%%/templates/data/datemap.inc +%%HORDEDIR%%/templates/data/datetime.inc +%%HORDEDIR%%/templates/data/time.inc +%%HORDEDIR%%/templates/data/tsvinfo.inc +%%HORDEDIR%%/templates/help/about.inc +%%HORDEDIR%%/templates/help/index.inc +%%HORDEDIR%%/templates/help/menu.inc +%%HORDEDIR%%/templates/index/frames_index.inc +%%HORDEDIR%%/templates/javascript/form_sections.js +%%HORDEDIR%%/templates/javascript/htmlarea.js +%%HORDEDIR%%/templates/javascript/htmlarea_anselimage_lang.js +%%HORDEDIR%%/templates/javascript/htmlarea_context_lang.js +%%HORDEDIR%%/templates/javascript/htmlarea_lang.js +%%HORDEDIR%%/templates/javascript/htmlarea_listtype_lang.js +%%HORDEDIR%%/templates/javascript/htmlarea_table_lang.js +%%HORDEDIR%%/templates/javascript/keybindings.js +%%HORDEDIR%%/templates/javascript/open_calendar.js +%%HORDEDIR%%/templates/javascript/open_google_win.js +%%HORDEDIR%%/templates/javascript/open_help_win.js +%%HORDEDIR%%/templates/javascript/open_html_helper.js +%%HORDEDIR%%/templates/javascript/print.js +%%HORDEDIR%%/templates/javascript/quoteBlocks.js +%%HORDEDIR%%/templates/javascript/tree.js +%%HORDEDIR%%/templates/login/login.inc +%%HORDEDIR%%/templates/login/mobile.inc +%%HORDEDIR%%/templates/maintenance/agreement_bottom.inc +%%HORDEDIR%%/templates/maintenance/agreement_middle.inc +%%HORDEDIR%%/templates/maintenance/agreement_top.inc +%%HORDEDIR%%/templates/maintenance/confirm_bottom.inc +%%HORDEDIR%%/templates/maintenance/confirm_middle.inc +%%HORDEDIR%%/templates/maintenance/confirm_top.inc +%%HORDEDIR%%/templates/maintenance/javascript.inc +%%HORDEDIR%%/templates/maintenance/maintenance_bottom.inc +%%HORDEDIR%%/templates/maintenance/maintenance_top.inc +%%HORDEDIR%%/templates/maintenance/notice_bottom.inc +%%HORDEDIR%%/templates/maintenance/notice_middle.inc +%%HORDEDIR%%/templates/maintenance/notice_top.inc +%%HORDEDIR%%/templates/menu/menu.inc +%%HORDEDIR%%/templates/portal/add.inc +%%HORDEDIR%%/templates/portal/block.inc +%%HORDEDIR%%/templates/portal/edit.inc +%%HORDEDIR%%/templates/portal/empty.inc +%%HORDEDIR%%/templates/portal/footer.inc +%%HORDEDIR%%/templates/portal/header.inc +%%HORDEDIR%%/templates/portal/layout.inc +%%HORDEDIR%%/templates/portal/menu.inc +%%HORDEDIR%%/templates/portal/sidebar.inc +%%HORDEDIR%%/templates/prefs/app.inc +%%HORDEDIR%%/templates/prefs/begin.inc +%%HORDEDIR%%/templates/prefs/categorymanagement.inc +%%HORDEDIR%%/templates/prefs/checkbox.inc +%%HORDEDIR%%/templates/prefs/deleteidentity.inc +%%HORDEDIR%%/templates/prefs/end.inc +%%HORDEDIR%%/templates/prefs/enum.inc +%%HORDEDIR%%/templates/prefs/identityselect.inc +%%HORDEDIR%%/templates/prefs/link.inc +%%HORDEDIR%%/templates/prefs/multienum.inc +%%HORDEDIR%%/templates/prefs/number.inc +%%HORDEDIR%%/templates/prefs/overview.inc +%%HORDEDIR%%/templates/prefs/password.inc +%%HORDEDIR%%/templates/prefs/select.inc +%%HORDEDIR%%/templates/prefs/text.inc +%%HORDEDIR%%/templates/prefs/textarea.inc +%%HORDEDIR%%/templates/problem/problem.inc +%%HORDEDIR%%/templates/rpcsum/rpcsum.inc +%%HORDEDIR%%/templates/shares/edit.inc +%%HORDEDIR%%/templates/test/extensions.inc +%%HORDEDIR%%/templates/test/footer.inc +%%HORDEDIR%%/templates/test/header.inc +%%HORDEDIR%%/templates/test/php_version.inc +%%HORDEDIR%%/templates/test/version.inc +%%HORDEDIR%%/test.php +%%HORDEDIR%%/themes/NeXTgrey/info.php +%%HORDEDIR%%/themes/NeXTgrey/screen.css +%%HORDEDIR%%/themes/azur/info.php +%%HORDEDIR%%/themes/azur/screen.css +%%HORDEDIR%%/themes/barbie/info.php +%%HORDEDIR%%/themes/barbie/screen.css +%%HORDEDIR%%/themes/bluemoon/info.php +%%HORDEDIR%%/themes/bluemoon/screen.css +%%HORDEDIR%%/themes/bluewhite/info.php +%%HORDEDIR%%/themes/bluewhite/screen.css +%%HORDEDIR%%/themes/brown/info.php +%%HORDEDIR%%/themes/brown/screen.css +%%HORDEDIR%%/themes/burntorange/info.php +%%HORDEDIR%%/themes/burntorange/screen.css +%%HORDEDIR%%/themes/camouflage/graphics/menu.png +%%HORDEDIR%%/themes/camouflage/info.php +%%HORDEDIR%%/themes/camouflage/screen.css +%%HORDEDIR%%/themes/cornflower/info.php +%%HORDEDIR%%/themes/cornflower/screen.css +%%HORDEDIR%%/themes/gennevilliers/info.php +%%HORDEDIR%%/themes/gennevilliers/screen.css +%%HORDEDIR%%/themes/green/info.php +%%HORDEDIR%%/themes/green/screen.css +%%HORDEDIR%%/themes/grey/info.php +%%HORDEDIR%%/themes/grey/screen.css +%%HORDEDIR%%/themes/graphics/administration.png +%%HORDEDIR%%/themes/graphics/alerts/error.png +%%HORDEDIR%%/themes/graphics/alerts/message.png +%%HORDEDIR%%/themes/graphics/alerts/success.png +%%HORDEDIR%%/themes/graphics/alerts/warning.png +%%HORDEDIR%%/themes/graphics/az.png +%%HORDEDIR%%/themes/graphics/blank.gif +%%HORDEDIR%%/themes/graphics/block/add.png +%%HORDEDIR%%/themes/graphics/block/down.png +%%HORDEDIR%%/themes/graphics/block/large_down.png +%%HORDEDIR%%/themes/graphics/block/large_left.png +%%HORDEDIR%%/themes/graphics/block/large_right.png +%%HORDEDIR%%/themes/graphics/block/large_up.png +%%HORDEDIR%%/themes/graphics/block/left.png +%%HORDEDIR%%/themes/graphics/block/moon/firstquarter.png +%%HORDEDIR%%/themes/graphics/block/moon/fullmoon.png +%%HORDEDIR%%/themes/graphics/block/moon/lastquarter.png +%%HORDEDIR%%/themes/graphics/block/moon/newmoon.png +%%HORDEDIR%%/themes/graphics/block/right.png +%%HORDEDIR%%/themes/graphics/block/sunrise/sunrise.png +%%HORDEDIR%%/themes/graphics/block/sunrise/sunset.png +%%HORDEDIR%%/themes/graphics/block/up.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/0.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/1.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/10.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/11.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/12.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/13.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/14.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/15.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/16.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/17.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/18.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/19.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/2.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/20.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/21.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/22.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/23.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/24.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/25.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/26.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/27.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/28.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/29.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/3.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/30.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/31.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/32.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/33.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/34.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/35.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/36.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/37.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/38.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/39.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/4.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/40.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/41.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/42.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/43.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/44.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/45.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/46.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/47.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/5.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/6.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/7.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/8.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/9.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/na.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/0.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/1.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/10.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/11.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/12.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/13.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/14.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/15.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/16.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/17.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/18.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/19.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/2.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/20.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/21.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/22.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/23.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/24.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/25.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/26.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/27.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/28.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/29.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/3.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/30.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/31.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/32.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/33.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/34.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/35.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/36.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/37.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/38.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/39.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/4.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/40.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/41.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/42.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/43.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/44.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/45.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/46.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/47.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/5.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/6.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/7.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/8.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/9.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/TWClogo_32px.png +%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/na.png +%%HORDEDIR%%/themes/graphics/calendar.png +%%HORDEDIR%%/themes/graphics/close.png +%%HORDEDIR%%/themes/graphics/colorpicker.png +%%HORDEDIR%%/themes/graphics/colorscale.png +%%HORDEDIR%%/themes/graphics/config.png +%%HORDEDIR%%/themes/graphics/data.png +%%HORDEDIR%%/themes/graphics/delete-small.png +%%HORDEDIR%%/themes/graphics/delete.png +%%HORDEDIR%%/themes/graphics/devel.png +%%HORDEDIR%%/themes/graphics/download.png +%%HORDEDIR%%/themes/graphics/edit.png +%%HORDEDIR%%/themes/graphics/edit-small.png +%%HORDEDIR%%/themes/graphics/emoticons/angel.png +%%HORDEDIR%%/themes/graphics/emoticons/angelwink.png +%%HORDEDIR%%/themes/graphics/emoticons/angry.png +%%HORDEDIR%%/themes/graphics/emoticons/annoyed.png +%%HORDEDIR%%/themes/graphics/emoticons/asleep.png +%%HORDEDIR%%/themes/graphics/emoticons/bigfrown.png +%%HORDEDIR%%/themes/graphics/emoticons/biggrin.png +%%HORDEDIR%%/themes/graphics/emoticons/blush.png +%%HORDEDIR%%/themes/graphics/emoticons/clown.png +%%HORDEDIR%%/themes/graphics/emoticons/confused.png +%%HORDEDIR%%/themes/graphics/emoticons/cool.png +%%HORDEDIR%%/themes/graphics/emoticons/coolgrin.png +%%HORDEDIR%%/themes/graphics/emoticons/cooltongue.png +%%HORDEDIR%%/themes/graphics/emoticons/dazed.png +%%HORDEDIR%%/themes/graphics/emoticons/devil.png +%%HORDEDIR%%/themes/graphics/emoticons/deviltongue.png +%%HORDEDIR%%/themes/graphics/emoticons/disappointed.png +%%HORDEDIR%%/themes/graphics/emoticons/embarrassed.png +%%HORDEDIR%%/themes/graphics/emoticons/enraged.png +%%HORDEDIR%%/themes/graphics/emoticons/frown.png +%%HORDEDIR%%/themes/graphics/emoticons/frustrated.png +%%HORDEDIR%%/themes/graphics/emoticons/grin.png +%%HORDEDIR%%/themes/graphics/emoticons/hangover.png +%%HORDEDIR%%/themes/graphics/emoticons/hippie.png +%%HORDEDIR%%/themes/graphics/emoticons/hippiegrin.png +%%HORDEDIR%%/themes/graphics/emoticons/hippietongue.png +%%HORDEDIR%%/themes/graphics/emoticons/hurt.png +%%HORDEDIR%%/themes/graphics/emoticons/indifferent.png +%%HORDEDIR%%/themes/graphics/emoticons/love.png +%%HORDEDIR%%/themes/graphics/emoticons/mad.png +%%HORDEDIR%%/themes/graphics/emoticons/mrt.png +%%HORDEDIR%%/themes/graphics/emoticons/punk.png +%%HORDEDIR%%/themes/graphics/emoticons/punkmohawk.png +%%HORDEDIR%%/themes/graphics/emoticons/punktongue.png +%%HORDEDIR%%/themes/graphics/emoticons/raspberry.png +%%HORDEDIR%%/themes/graphics/emoticons/sad.png +%%HORDEDIR%%/themes/graphics/emoticons/shout.png +%%HORDEDIR%%/themes/graphics/emoticons/smile.png +%%HORDEDIR%%/themes/graphics/emoticons/tired.png +%%HORDEDIR%%/themes/graphics/emoticons/tongueout.png +%%HORDEDIR%%/themes/graphics/emoticons/vampire.png +%%HORDEDIR%%/themes/graphics/emoticons/wink.png +%%HORDEDIR%%/themes/graphics/emoticons/winkgrin.png +%%HORDEDIR%%/themes/graphics/emoticons/winktongue.png +%%HORDEDIR%%/themes/graphics/emoticons/winktongueout.png +%%HORDEDIR%%/themes/graphics/emoticons/worried.png +%%HORDEDIR%%/themes/graphics/favicon.ico +%%HORDEDIR%%/themes/graphics/flags/af.png +%%HORDEDIR%%/themes/graphics/flags/al.png +%%HORDEDIR%%/themes/graphics/flags/am.png +%%HORDEDIR%%/themes/graphics/flags/an.png +%%HORDEDIR%%/themes/graphics/flags/ao.png +%%HORDEDIR%%/themes/graphics/flags/ar.png +%%HORDEDIR%%/themes/graphics/flags/at.png +%%HORDEDIR%%/themes/graphics/flags/au.png +%%HORDEDIR%%/themes/graphics/flags/aw.png +%%HORDEDIR%%/themes/graphics/flags/az.png +%%HORDEDIR%%/themes/graphics/flags/ba.png +%%HORDEDIR%%/themes/graphics/flags/bb.png +%%HORDEDIR%%/themes/graphics/flags/bd.png +%%HORDEDIR%%/themes/graphics/flags/be.png +%%HORDEDIR%%/themes/graphics/flags/bf.png +%%HORDEDIR%%/themes/graphics/flags/bg.png +%%HORDEDIR%%/themes/graphics/flags/bh.png +%%HORDEDIR%%/themes/graphics/flags/bi.png +%%HORDEDIR%%/themes/graphics/flags/bj.png +%%HORDEDIR%%/themes/graphics/flags/bm.png +%%HORDEDIR%%/themes/graphics/flags/bn.png +%%HORDEDIR%%/themes/graphics/flags/bo.png +%%HORDEDIR%%/themes/graphics/flags/br.png +%%HORDEDIR%%/themes/graphics/flags/bs.png +%%HORDEDIR%%/themes/graphics/flags/bt.png +%%HORDEDIR%%/themes/graphics/flags/bw.png +%%HORDEDIR%%/themes/graphics/flags/by.png +%%HORDEDIR%%/themes/graphics/flags/bz.png +%%HORDEDIR%%/themes/graphics/flags/ca.png +%%HORDEDIR%%/themes/graphics/flags/cf.png +%%HORDEDIR%%/themes/graphics/flags/cg.png +%%HORDEDIR%%/themes/graphics/flags/ch.png +%%HORDEDIR%%/themes/graphics/flags/ci.png +%%HORDEDIR%%/themes/graphics/flags/ck.png +%%HORDEDIR%%/themes/graphics/flags/cl.png +%%HORDEDIR%%/themes/graphics/flags/cm.png +%%HORDEDIR%%/themes/graphics/flags/cn.png +%%HORDEDIR%%/themes/graphics/flags/co.png +%%HORDEDIR%%/themes/graphics/flags/cr.png +%%HORDEDIR%%/themes/graphics/flags/cu.png +%%HORDEDIR%%/themes/graphics/flags/cv.png +%%HORDEDIR%%/themes/graphics/flags/cy.png +%%HORDEDIR%%/themes/graphics/flags/cz.png +%%HORDEDIR%%/themes/graphics/flags/de.png +%%HORDEDIR%%/themes/graphics/flags/dk.png +%%HORDEDIR%%/themes/graphics/flags/dz.png +%%HORDEDIR%%/themes/graphics/flags/ec.png +%%HORDEDIR%%/themes/graphics/flags/ee.png +%%HORDEDIR%%/themes/graphics/flags/eg.png +%%HORDEDIR%%/themes/graphics/flags/er.png +%%HORDEDIR%%/themes/graphics/flags/es.png +%%HORDEDIR%%/themes/graphics/flags/et.png +%%HORDEDIR%%/themes/graphics/flags/fi.png +%%HORDEDIR%%/themes/graphics/flags/fj.png +%%HORDEDIR%%/themes/graphics/flags/fo.png +%%HORDEDIR%%/themes/graphics/flags/fr.png +%%HORDEDIR%%/themes/graphics/flags/ga.png +%%HORDEDIR%%/themes/graphics/flags/ge.png +%%HORDEDIR%%/themes/graphics/flags/gi.png +%%HORDEDIR%%/themes/graphics/flags/gl.png +%%HORDEDIR%%/themes/graphics/flags/gp.png +%%HORDEDIR%%/themes/graphics/flags/gr.png +%%HORDEDIR%%/themes/graphics/flags/gt.png +%%HORDEDIR%%/themes/graphics/flags/gu.png +%%HORDEDIR%%/themes/graphics/flags/gy.png +%%HORDEDIR%%/themes/graphics/flags/hk.png +%%HORDEDIR%%/themes/graphics/flags/hr.png +%%HORDEDIR%%/themes/graphics/flags/ht.png +%%HORDEDIR%%/themes/graphics/flags/hu.png +%%HORDEDIR%%/themes/graphics/flags/id.png +%%HORDEDIR%%/themes/graphics/flags/ie.png +%%HORDEDIR%%/themes/graphics/flags/il.png +%%HORDEDIR%%/themes/graphics/flags/in.png +%%HORDEDIR%%/themes/graphics/flags/iq.png +%%HORDEDIR%%/themes/graphics/flags/ir.png +%%HORDEDIR%%/themes/graphics/flags/is.png +%%HORDEDIR%%/themes/graphics/flags/it.png +%%HORDEDIR%%/themes/graphics/flags/jm.png +%%HORDEDIR%%/themes/graphics/flags/jo.png +%%HORDEDIR%%/themes/graphics/flags/jp.png +%%HORDEDIR%%/themes/graphics/flags/ke.png +%%HORDEDIR%%/themes/graphics/flags/kg.png +%%HORDEDIR%%/themes/graphics/flags/kh.png +%%HORDEDIR%%/themes/graphics/flags/ki.png +%%HORDEDIR%%/themes/graphics/flags/kp.png +%%HORDEDIR%%/themes/graphics/flags/kr.png +%%HORDEDIR%%/themes/graphics/flags/ky.png +%%HORDEDIR%%/themes/graphics/flags/kz.png +%%HORDEDIR%%/themes/graphics/flags/lb.png +%%HORDEDIR%%/themes/graphics/flags/lc.png +%%HORDEDIR%%/themes/graphics/flags/lk.png +%%HORDEDIR%%/themes/graphics/flags/lt.png +%%HORDEDIR%%/themes/graphics/flags/lu.png +%%HORDEDIR%%/themes/graphics/flags/lv.png +%%HORDEDIR%%/themes/graphics/flags/ly.png +%%HORDEDIR%%/themes/graphics/flags/ma.png +%%HORDEDIR%%/themes/graphics/flags/mc.png +%%HORDEDIR%%/themes/graphics/flags/md.png +%%HORDEDIR%%/themes/graphics/flags/mg.png +%%HORDEDIR%%/themes/graphics/flags/mn.png +%%HORDEDIR%%/themes/graphics/flags/mo.png +%%HORDEDIR%%/themes/graphics/flags/mp.png +%%HORDEDIR%%/themes/graphics/flags/ms.png +%%HORDEDIR%%/themes/graphics/flags/mt.png +%%HORDEDIR%%/themes/graphics/flags/mx.png +%%HORDEDIR%%/themes/graphics/flags/my.png +%%HORDEDIR%%/themes/graphics/flags/mz.png +%%HORDEDIR%%/themes/graphics/flags/na.png +%%HORDEDIR%%/themes/graphics/flags/nc.png +%%HORDEDIR%%/themes/graphics/flags/nf.png +%%HORDEDIR%%/themes/graphics/flags/nl.png +%%HORDEDIR%%/themes/graphics/flags/no.png +%%HORDEDIR%%/themes/graphics/flags/np.png +%%HORDEDIR%%/themes/graphics/flags/nr.png +%%HORDEDIR%%/themes/graphics/flags/nz.png +%%HORDEDIR%%/themes/graphics/flags/om.png +%%HORDEDIR%%/themes/graphics/flags/pa.png +%%HORDEDIR%%/themes/graphics/flags/pe.png +%%HORDEDIR%%/themes/graphics/flags/pf.png +%%HORDEDIR%%/themes/graphics/flags/ph.png +%%HORDEDIR%%/themes/graphics/flags/pk.png +%%HORDEDIR%%/themes/graphics/flags/pl.png +%%HORDEDIR%%/themes/graphics/flags/pm.png +%%HORDEDIR%%/themes/graphics/flags/pr.png +%%HORDEDIR%%/themes/graphics/flags/pt.png +%%HORDEDIR%%/themes/graphics/flags/py.png +%%HORDEDIR%%/themes/graphics/flags/qa.png +%%HORDEDIR%%/themes/graphics/flags/ro.png +%%HORDEDIR%%/themes/graphics/flags/ru.png +%%HORDEDIR%%/themes/graphics/flags/sa.png +%%HORDEDIR%%/themes/graphics/flags/sb.png +%%HORDEDIR%%/themes/graphics/flags/sd.png +%%HORDEDIR%%/themes/graphics/flags/se.png +%%HORDEDIR%%/themes/graphics/flags/sg.png +%%HORDEDIR%%/themes/graphics/flags/si.png +%%HORDEDIR%%/themes/graphics/flags/sk.png +%%HORDEDIR%%/themes/graphics/flags/sl.png +%%HORDEDIR%%/themes/graphics/flags/so.png +%%HORDEDIR%%/themes/graphics/flags/sr.png +%%HORDEDIR%%/themes/graphics/flags/sy.png +%%HORDEDIR%%/themes/graphics/flags/tc.png +%%HORDEDIR%%/themes/graphics/flags/tg.png +%%HORDEDIR%%/themes/graphics/flags/th.png +%%HORDEDIR%%/themes/graphics/flags/tn.png +%%HORDEDIR%%/themes/graphics/flags/to.png +%%HORDEDIR%%/themes/graphics/flags/tp.png +%%HORDEDIR%%/themes/graphics/flags/tr.png +%%HORDEDIR%%/themes/graphics/flags/tt.png +%%HORDEDIR%%/themes/graphics/flags/tv.png +%%HORDEDIR%%/themes/graphics/flags/tw.png +%%HORDEDIR%%/themes/graphics/flags/tz.png +%%HORDEDIR%%/themes/graphics/flags/ua.png +%%HORDEDIR%%/themes/graphics/flags/ug.png +%%HORDEDIR%%/themes/graphics/flags/uk.png +%%HORDEDIR%%/themes/graphics/flags/us.png +%%HORDEDIR%%/themes/graphics/flags/uy.png +%%HORDEDIR%%/themes/graphics/flags/va.png +%%HORDEDIR%%/themes/graphics/flags/ve.png +%%HORDEDIR%%/themes/graphics/flags/vg.png +%%HORDEDIR%%/themes/graphics/flags/vi.png +%%HORDEDIR%%/themes/graphics/flags/vn.png +%%HORDEDIR%%/themes/graphics/flags/ws.png +%%HORDEDIR%%/themes/graphics/flags/ye.png +%%HORDEDIR%%/themes/graphics/flags/yu.png +%%HORDEDIR%%/themes/graphics/flags/za.png +%%HORDEDIR%%/themes/graphics/flags/zw.png +%%HORDEDIR%%/themes/graphics/google.png +%%HORDEDIR%%/themes/graphics/group.png +%%HORDEDIR%%/themes/graphics/help.png +%%HORDEDIR%%/themes/graphics/help_index.png +%%HORDEDIR%%/themes/graphics/hide_panel.png +%%HORDEDIR%%/themes/graphics/horde-power1.png +%%HORDEDIR%%/themes/graphics/horde-power2.png +%%HORDEDIR%%/themes/graphics/horde-power3.png +%%HORDEDIR%%/themes/graphics/horde.png +%%HORDEDIR%%/themes/graphics/image/flip.png +%%HORDEDIR%%/themes/graphics/image/grayscale.png +%%HORDEDIR%%/themes/graphics/image/mirror.png +%%HORDEDIR%%/themes/graphics/image/ratio.png +%%HORDEDIR%%/themes/graphics/image/rotate-180.png +%%HORDEDIR%%/themes/graphics/image/rotate-270.png +%%HORDEDIR%%/themes/graphics/image/rotate-90.png +%%HORDEDIR%%/themes/graphics/info.png +%%HORDEDIR%%/themes/graphics/info_icon.png +%%HORDEDIR%%/themes/graphics/keyboard.png +%%HORDEDIR%%/themes/graphics/layout.png +%%HORDEDIR%%/themes/graphics/lhand.png +%%HORDEDIR%%/themes/graphics/locked.png +%%HORDEDIR%%/themes/graphics/login.png +%%HORDEDIR%%/themes/graphics/logout.png +%%HORDEDIR%%/themes/graphics/mail.png +%%HORDEDIR%%/themes/graphics/map.png +%%HORDEDIR%%/themes/graphics/map_eu.png +%%HORDEDIR%%/themes/graphics/mime/audio.png +%%HORDEDIR%%/themes/graphics/mime/binary.png +%%HORDEDIR%%/themes/graphics/mime/compressed.png +%%HORDEDIR%%/themes/graphics/mime/csv.png +%%HORDEDIR%%/themes/graphics/mime/deb.png +%%HORDEDIR%%/themes/graphics/mime/encryption.png +%%HORDEDIR%%/themes/graphics/mime/executable.png +%%HORDEDIR%%/themes/graphics/mime/html.png +%%HORDEDIR%%/themes/graphics/mime/icalendar.png +%%HORDEDIR%%/themes/graphics/mime/image.png +%%HORDEDIR%%/themes/graphics/mime/inf.png +%%HORDEDIR%%/themes/graphics/mime/mail.png +%%HORDEDIR%%/themes/graphics/mime/makefile.png +%%HORDEDIR%%/themes/graphics/mime/msexcel.png +%%HORDEDIR%%/themes/graphics/mime/msi.png +%%HORDEDIR%%/themes/graphics/mime/msp.png +%%HORDEDIR%%/themes/graphics/mime/mspowerpoint.png +%%HORDEDIR%%/themes/graphics/mime/msword.png +%%HORDEDIR%%/themes/graphics/mime/ooo_calc.png +%%HORDEDIR%%/themes/graphics/mime/ooo_draw.png +%%HORDEDIR%%/themes/graphics/mime/ooo_impress.png +%%HORDEDIR%%/themes/graphics/mime/ooo_math.png +%%HORDEDIR%%/themes/graphics/mime/ooo_writer.png +%%HORDEDIR%%/themes/graphics/mime/pdf.png +%%HORDEDIR%%/themes/graphics/mime/php.png +%%HORDEDIR%%/themes/graphics/mime/quicktime.png +%%HORDEDIR%%/themes/graphics/mime/readme.png +%%HORDEDIR%%/themes/graphics/mime/realaudio.png +%%HORDEDIR%%/themes/graphics/mime/rpm.png +%%HORDEDIR%%/themes/graphics/mime/script-asa.png +%%HORDEDIR%%/themes/graphics/mime/script-asp.png +%%HORDEDIR%%/themes/graphics/mime/script-js.png +%%HORDEDIR%%/themes/graphics/mime/setup.png +%%HORDEDIR%%/themes/graphics/mime/signed.png +%%HORDEDIR%%/themes/graphics/mime/source-c.png +%%HORDEDIR%%/themes/graphics/mime/source-cpp.png +%%HORDEDIR%%/themes/graphics/mime/source-h.png +%%HORDEDIR%%/themes/graphics/mime/source-java.png +%%HORDEDIR%%/themes/graphics/mime/source-python.png +%%HORDEDIR%%/themes/graphics/mime/text.png +%%HORDEDIR%%/themes/graphics/mime/unknown.png +%%HORDEDIR%%/themes/graphics/mime/vcard.png +%%HORDEDIR%%/themes/graphics/mime/video.png +%%HORDEDIR%%/themes/graphics/mime/xcode.png +%%HORDEDIR%%/themes/graphics/mime/xml.png +%%HORDEDIR%%/themes/graphics/mobile/bottom.jpg +%%HORDEDIR%%/themes/graphics/mobile/display.jpg +%%HORDEDIR%%/themes/graphics/mobile/left.jpg +%%HORDEDIR%%/themes/graphics/mobile/right.jpg +%%HORDEDIR%%/themes/graphics/mobile/top.jpg +%%HORDEDIR%%/themes/graphics/myaccount.png +%%HORDEDIR%%/themes/graphics/nav/bottom-grey.png +%%HORDEDIR%%/themes/graphics/nav/bottom.png +%%HORDEDIR%%/themes/graphics/nav/down-grey.png +%%HORDEDIR%%/themes/graphics/nav/down.png +%%HORDEDIR%%/themes/graphics/nav/first-grey.png +%%HORDEDIR%%/themes/graphics/nav/first.png +%%HORDEDIR%%/themes/graphics/nav/last-grey.png +%%HORDEDIR%%/themes/graphics/nav/last.png +%%HORDEDIR%%/themes/graphics/nav/left-grey.png +%%HORDEDIR%%/themes/graphics/nav/left.png +%%HORDEDIR%%/themes/graphics/nav/right-grey.png +%%HORDEDIR%%/themes/graphics/nav/right.png +%%HORDEDIR%%/themes/graphics/nav/top-grey.png +%%HORDEDIR%%/themes/graphics/nav/top.png +%%HORDEDIR%%/themes/graphics/nav/up-grey.png +%%HORDEDIR%%/themes/graphics/nav/up.png +%%HORDEDIR%%/themes/graphics/office.png +%%HORDEDIR%%/themes/graphics/organizing.png +%%HORDEDIR%%/themes/graphics/perms.png +%%HORDEDIR%%/themes/graphics/prefs.png +%%HORDEDIR%%/themes/graphics/print.png +%%HORDEDIR%%/themes/graphics/problem.png +%%HORDEDIR%%/themes/graphics/reload.png +%%HORDEDIR%%/themes/graphics/required.png +%%HORDEDIR%%/themes/graphics/rhand.png +%%HORDEDIR%%/themes/graphics/save.png +%%HORDEDIR%%/themes/graphics/search.png +%%HORDEDIR%%/themes/graphics/shadow.gif +%%HORDEDIR%%/themes/graphics/shadow.png +%%HORDEDIR%%/themes/graphics/shell.png +%%HORDEDIR%%/themes/graphics/show_panel.png +%%HORDEDIR%%/themes/graphics/sql.png +%%HORDEDIR%%/themes/graphics/tree/blank.png +%%HORDEDIR%%/themes/graphics/tree/folder.png +%%HORDEDIR%%/themes/graphics/tree/folderopen.png +%%HORDEDIR%%/themes/graphics/tree/join.png +%%HORDEDIR%%/themes/graphics/tree/joinbottom-down.png +%%HORDEDIR%%/themes/graphics/tree/joinbottom.png +%%HORDEDIR%%/themes/graphics/tree/leaf.png +%%HORDEDIR%%/themes/graphics/tree/line.png +%%HORDEDIR%%/themes/graphics/tree/minus.png +%%HORDEDIR%%/themes/graphics/tree/minusbottom.png +%%HORDEDIR%%/themes/graphics/tree/minusonly.png +%%HORDEDIR%%/themes/graphics/tree/minustop.png +%%HORDEDIR%%/themes/graphics/tree/nullonly.png +%%HORDEDIR%%/themes/graphics/tree/plus.png +%%HORDEDIR%%/themes/graphics/tree/plusbottom.png +%%HORDEDIR%%/themes/graphics/tree/plusonly.png +%%HORDEDIR%%/themes/graphics/tree/plustop.png +%%HORDEDIR%%/themes/graphics/tree/rev-join.png +%%HORDEDIR%%/themes/graphics/tree/rev-minusonly.png +%%HORDEDIR%%/themes/graphics/tree/rev-joinbottom-down.png +%%HORDEDIR%%/themes/graphics/tree/rev-plusonly.png +%%HORDEDIR%%/themes/graphics/tree/rev-line.png +%%HORDEDIR%%/themes/graphics/tree/rev-minusbottom.png +%%HORDEDIR%%/themes/graphics/tree/rev-plus.png +%%HORDEDIR%%/themes/graphics/tree/rev-plusbottom.png +%%HORDEDIR%%/themes/graphics/tree/rev-leaf.png +%%HORDEDIR%%/themes/graphics/tree/rev-joinbottom.png +%%HORDEDIR%%/themes/graphics/tree/rev-nullonly.png +%%HORDEDIR%%/themes/graphics/tree/rev-minus.png +%%HORDEDIR%%/themes/graphics/tree/rev-plustop.png +%%HORDEDIR%%/themes/graphics/tree/rev-minustop.png +%%HORDEDIR%%/themes/graphics/unlocked.png +%%HORDEDIR%%/themes/graphics/user.png +%%HORDEDIR%%/themes/graphics/website.png +%%HORDEDIR%%/themes/graphics/za.png +%%HORDEDIR%%/themes/ie5mac.css +%%HORDEDIR%%/themes/kolab/graphics/bg.png +%%HORDEDIR%%/themes/kolab/graphics/kolab.png +%%HORDEDIR%%/themes/kolab/graphics/kolablogo.png +%%HORDEDIR%%/themes/kolab/info.php +%%HORDEDIR%%/themes/kolab/screen.css +%%HORDEDIR%%/themes/lavander/info.php +%%HORDEDIR%%/themes/lavander/screen.css +%%HORDEDIR%%/themes/lightblue/graphics/menu.png +%%HORDEDIR%%/themes/lightblue/info.php +%%HORDEDIR%%/themes/lightblue/screen.css +%%HORDEDIR%%/themes/luc/info.php +%%HORDEDIR%%/themes/luc/screen.css +%%HORDEDIR%%/themes/lucblue/info.php +%%HORDEDIR%%/themes/lucblue/screen.css +%%HORDEDIR%%/themes/mobile/screen.css +%%HORDEDIR%%/themes/mozilla/graphics/header.png +%%HORDEDIR%%/themes/mozilla/graphics/menu-active.png +%%HORDEDIR%%/themes/mozilla/graphics/menu.png +%%HORDEDIR%%/themes/mozilla/info.php +%%HORDEDIR%%/themes/mozilla/screen.css +%%HORDEDIR%%/themes/postnuke/info.php +%%HORDEDIR%%/themes/postnuke/screen.css +%%HORDEDIR%%/themes/print/screen.css +%%HORDEDIR%%/themes/purple/info.php +%%HORDEDIR%%/themes/purple/screen.css +%%HORDEDIR%%/themes/screen.css +%%HORDEDIR%%/themes/simplex/graphics/background.png +%%HORDEDIR%%/themes/simplex/info.php +%%HORDEDIR%%/themes/simplex/screen.css +%%HORDEDIR%%/util/barcode.php +%%HORDEDIR%%/util/google_example.php +%%HORDEDIR%%/util/icon_browser.php +%%HORDEDIR%%/util/regex_test.php +@dirrm %%HORDEDIR%%/util +@dirrm %%HORDEDIR%%/themes/simplex/graphics +@dirrm %%HORDEDIR%%/themes/simplex +@dirrm %%HORDEDIR%%/themes/purple +@dirrm %%HORDEDIR%%/themes/print +@dirrm %%HORDEDIR%%/themes/postnuke +@dirrm %%HORDEDIR%%/themes/mozilla/graphics +@dirrm %%HORDEDIR%%/themes/mozilla +@dirrm %%HORDEDIR%%/themes/mobile +@dirrm %%HORDEDIR%%/themes/lucblue +@dirrm %%HORDEDIR%%/themes/luc +@dirrm %%HORDEDIR%%/themes/lightblue/graphics +@dirrm %%HORDEDIR%%/themes/lightblue +@dirrm %%HORDEDIR%%/themes/lavander +@dirrm %%HORDEDIR%%/themes/kolab/graphics +@dirrm %%HORDEDIR%%/themes/kolab +@dirrm %%HORDEDIR%%/themes/graphics/tree +@dirrm %%HORDEDIR%%/themes/graphics/nav +@dirrm %%HORDEDIR%%/themes/graphics/mobile +@dirrm %%HORDEDIR%%/themes/graphics/mime +@dirrm %%HORDEDIR%%/themes/graphics/image +@dirrm %%HORDEDIR%%/themes/graphics/flags +@dirrm %%HORDEDIR%%/themes/graphics/emoticons +@dirrm %%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32 +@dirrm %%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23 +@dirrm %%HORDEDIR%%/themes/graphics/block/weatherdotcom +@dirrm %%HORDEDIR%%/themes/graphics/block/sunrise +@dirrm %%HORDEDIR%%/themes/graphics/block/moon +@dirrm %%HORDEDIR%%/themes/graphics/block +@dirrm %%HORDEDIR%%/themes/graphics/alerts +@dirrm %%HORDEDIR%%/themes/graphics +@dirrm %%HORDEDIR%%/themes/grey +@dirrm %%HORDEDIR%%/themes/green +@dirrm %%HORDEDIR%%/themes/gennevilliers +@dirrm %%HORDEDIR%%/themes/cornflower +@dirrm %%HORDEDIR%%/themes/camouflage/graphics +@dirrm %%HORDEDIR%%/themes/camouflage +@dirrm %%HORDEDIR%%/themes/burntorange +@dirrm %%HORDEDIR%%/themes/brown +@dirrm %%HORDEDIR%%/themes/bluewhite +@dirrm %%HORDEDIR%%/themes/bluemoon +@dirrm %%HORDEDIR%%/themes/barbie +@dirrm %%HORDEDIR%%/themes/azur +@dirrm %%HORDEDIR%%/themes/NeXTgrey +@dirrm %%HORDEDIR%%/themes +@dirrm %%HORDEDIR%%/templates/test +@dirrm %%HORDEDIR%%/templates/shares +@dirrm %%HORDEDIR%%/templates/rpcsum +@dirrm %%HORDEDIR%%/templates/problem +@dirrm %%HORDEDIR%%/templates/prefs +@dirrm %%HORDEDIR%%/templates/portal +@dirrm %%HORDEDIR%%/templates/menu +@dirrm %%HORDEDIR%%/templates/maintenance +@dirrm %%HORDEDIR%%/templates/login +@dirrm %%HORDEDIR%%/templates/javascript +@dirrm %%HORDEDIR%%/templates/index +@dirrm %%HORDEDIR%%/templates/help +@dirrm %%HORDEDIR%%/templates/data +@dirrm %%HORDEDIR%%/templates/contents +@dirrm %%HORDEDIR%%/templates/categorytree +@dirrm %%HORDEDIR%%/templates/admin/user +@dirrm %%HORDEDIR%%/templates/admin/setup +@dirrm %%HORDEDIR%%/templates/admin/groups +@dirrm %%HORDEDIR%%/templates/admin +@dirrm %%HORDEDIR%%/templates +@dirrm %%HORDEDIR%%/services/shares +@dirrm %%HORDEDIR%%/services/portal +@dirrm %%HORDEDIR%%/services/obrowser +@dirrm %%HORDEDIR%%/services/images +@dirrm %%HORDEDIR%%/services/help +@dirrm %%HORDEDIR%%/services/editor/htmlarea/popups +@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/lang +@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img +@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations +@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/ListType/lang +@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/ListType +@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/ContextMenu/lang +@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/ContextMenu +@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/AnselImage/lang +@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/AnselImage +@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins +@dirrm %%HORDEDIR%%/services/editor/htmlarea/lang +@dirrm %%HORDEDIR%%/services/editor/htmlarea/images +@dirrm %%HORDEDIR%%/services/editor/htmlarea +@dirrm %%HORDEDIR%%/services/editor +@dirrm %%HORDEDIR%%/services/download +@dirrm %%HORDEDIR%%/services +@dirrm %%HORDEDIR%%/scripts/upgrades +@dirrm %%HORDEDIR%%/scripts/sql +@dirrm %%HORDEDIR%%/scripts/ldap +@dirrm %%HORDEDIR%%/scripts +@dirrm %%HORDEDIR%%/po +@dirrm %%HORDEDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/zh_TW +@dirrm %%HORDEDIR%%/locale/zh_CN/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/zh_CN +@dirrm %%HORDEDIR%%/locale/uk_UA/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/uk_UA +@dirrm %%HORDEDIR%%/locale/tr_TR/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/tr_TR +@dirrm %%HORDEDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/sv_SE +@dirrm %%HORDEDIR%%/locale/sl_SI/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/sl_SI +@dirrm %%HORDEDIR%%/locale/sk_SK/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/sk_SK +@dirrm %%HORDEDIR%%/locale/ru_RU/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/ru_RU +@dirrm %%HORDEDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/ro_RO +@dirrm %%HORDEDIR%%/locale/pt_PT/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/pt_PT +@dirrm %%HORDEDIR%%/locale/pt_BR/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/pt_BR +@dirrm %%HORDEDIR%%/locale/pl_PL/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/pl_PL +@dirrm %%HORDEDIR%%/locale/nn_NO/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/nn_NO +@dirrm %%HORDEDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/nl_NL +@dirrm %%HORDEDIR%%/locale/nb_NO/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/nb_NO +@dirrm %%HORDEDIR%%/locale/mk_MK/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/mk_MK +@dirrm %%HORDEDIR%%/locale/lv_LV/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/lv_LV +@dirrm %%HORDEDIR%%/locale/lt_LT/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/lt_LT +@dirrm %%HORDEDIR%%/locale/ko_KR/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/ko_KR +@dirrm %%HORDEDIR%%/locale/ja_JP/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/ja_JP +@dirrm %%HORDEDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/it_IT +@dirrm %%HORDEDIR%%/locale/id_ID/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/id_ID +@dirrm %%HORDEDIR%%/locale/hu_HU/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/hu_HU +@dirrm %%HORDEDIR%%/locale/gl_ES/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/gl_ES +@dirrm %%HORDEDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/fr_FR +@dirrm %%HORDEDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/fi_FI +@dirrm %%HORDEDIR%%/locale/fa_IR/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/fa_IR +@dirrm %%HORDEDIR%%/locale/et_EE/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/et_EE +@dirrm %%HORDEDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/es_ES +@dirrm %%HORDEDIR%%/locale/en_US +@dirrm %%HORDEDIR%%/locale/el_GR/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/el_GR +@dirrm %%HORDEDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/de_DE +@dirrm %%HORDEDIR%%/locale/da_DK/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/da_DK +@dirrm %%HORDEDIR%%/locale/cs_CZ/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/cs_CZ +@dirrm %%HORDEDIR%%/locale/ca_ES/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/ca_ES +@dirrm %%HORDEDIR%%/locale/bg_BG/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/bg_BG +@dirrm %%HORDEDIR%%/locale/ar_SY/LC_MESSAGES +@dirrm %%HORDEDIR%%/locale/ar_SY +@dirrm %%HORDEDIR%%/locale +@dirrm %%HORDEDIR%%/lib/XML/tests +@dirrm %%HORDEDIR%%/lib/XML/docs/examples +@dirrm %%HORDEDIR%%/lib/XML/docs +@dirrm %%HORDEDIR%%/lib/XML/WBXML/DTD +@dirrm %%HORDEDIR%%/lib/XML/WBXML +@dirrm %%HORDEDIR%%/lib/XML +@dirrm %%HORDEDIR%%/lib/VFS/tests +@dirrm %%HORDEDIR%%/lib/VFS/ISOWriter/RealOutputStrategy +@dirrm %%HORDEDIR%%/lib/VFS/ISOWriter/RealInputStrategy +@dirrm %%HORDEDIR%%/lib/VFS/ISOWriter +@dirrm %%HORDEDIR%%/lib/VFS +@dirrm %%HORDEDIR%%/lib/Text/tests +@dirrm %%HORDEDIR%%/lib/Text/reST/Formatter +@dirrm %%HORDEDIR%%/lib/Text/reST +@dirrm %%HORDEDIR%%/lib/Text/docs/examples +@dirrm %%HORDEDIR%%/lib/Text/docs +@dirrm %%HORDEDIR%%/lib/Text/Diff/Renderer +@dirrm %%HORDEDIR%%/lib/Text/Diff +@dirrm %%HORDEDIR%%/lib/Text +@dirrm %%HORDEDIR%%/lib/Net/SMS +@dirrm %%HORDEDIR%%/lib/Net/IMSP/Auth +@dirrm %%HORDEDIR%%/lib/Net/IMSP +@dirrm %%HORDEDIR%%/lib/Net +@dirrm %%HORDEDIR%%/lib/Horde/tests +@dirrm %%HORDEDIR%%/lib/Horde/iCalendar +@dirrm %%HORDEDIR%%/lib/Horde/docs +@dirrm %%HORDEDIR%%/lib/Horde/VC +@dirrm %%HORDEDIR%%/lib/Horde/UI/VarRenderer +@dirrm %%HORDEDIR%%/lib/Horde/UI +@dirrm %%HORDEDIR%%/lib/Horde/Tree +@dirrm %%HORDEDIR%%/lib/Horde/Token +@dirrm %%HORDEDIR%%/lib/Horde/Text/tests +@dirrm %%HORDEDIR%%/lib/Horde/Text/Filter +@dirrm %%HORDEDIR%%/lib/Horde/Text +@dirrm %%HORDEDIR%%/lib/Horde/SyncML/Sync +@dirrm %%HORDEDIR%%/lib/Horde/SyncML/Command/Sync +@dirrm %%HORDEDIR%%/lib/Horde/SyncML/Command +@dirrm %%HORDEDIR%%/lib/Horde/SyncML +@dirrm %%HORDEDIR%%/lib/Horde/SessionHandler +@dirrm %%HORDEDIR%%/lib/Horde/Search +@dirrm %%HORDEDIR%%/lib/Horde/Scheduler +@dirrm %%HORDEDIR%%/lib/Horde/SQL +@dirrm %%HORDEDIR%%/lib/Horde/Relationship +@dirrm %%HORDEDIR%%/lib/Horde/RPC +@dirrm %%HORDEDIR%%/lib/Horde/Prefs +@dirrm %%HORDEDIR%%/lib/Horde/Perms +@dirrm %%HORDEDIR%%/lib/Horde/Notification/Listener +@dirrm %%HORDEDIR%%/lib/Horde/Notification +@dirrm %%HORDEDIR%%/lib/Horde/NLS +@dirrm %%HORDEDIR%%/lib/Horde/Mobile/Renderer +@dirrm %%HORDEDIR%%/lib/Horde/Mobile +@dirrm %%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo +@dirrm %%HORDEDIR%%/lib/Horde/MIME/Viewer +@dirrm %%HORDEDIR%%/lib/Horde/MIME +@dirrm %%HORDEDIR%%/lib/Horde/Image +@dirrm %%HORDEDIR%%/lib/Horde/IMAP/ACL +@dirrm %%HORDEDIR%%/lib/Horde/IMAP +@dirrm %%HORDEDIR%%/lib/Horde/Group +@dirrm %%HORDEDIR%%/lib/Horde/Graph/Plot +@dirrm %%HORDEDIR%%/lib/Horde/Graph/Chart +@dirrm %%HORDEDIR%%/lib/Horde/Graph +@dirrm %%HORDEDIR%%/lib/Horde/Form/Action +@dirrm %%HORDEDIR%%/lib/Horde/Form +@dirrm %%HORDEDIR%%/lib/Horde/Editor +@dirrm %%HORDEDIR%%/lib/Horde/DataTree +@dirrm %%HORDEDIR%%/lib/Horde/Data +@dirrm %%HORDEDIR%%/lib/Horde/Crypt +@dirrm %%HORDEDIR%%/lib/Horde/Compress +@dirrm %%HORDEDIR%%/lib/Horde/Cipher/BlockMode +@dirrm %%HORDEDIR%%/lib/Horde/Cipher +@dirrm %%HORDEDIR%%/lib/Horde/Cache +@dirrm %%HORDEDIR%%/lib/Horde/Browser +@dirrm %%HORDEDIR%%/lib/Horde/Block +@dirrm %%HORDEDIR%%/lib/Horde/Auth +@dirrm %%HORDEDIR%%/lib/Horde +@dirrm %%HORDEDIR%%/lib/File/PDF/fonts +@dirrm %%HORDEDIR%%/lib/File/PDF +@dirrm %%HORDEDIR%%/lib/File +@dirrm %%HORDEDIR%%/lib/Block +@dirrm %%HORDEDIR%%/lib +@dirrm %%HORDEDIR%%/js +@unexec rmdir %D/%%HORDEDIR%%/config 2>/dev/null || true +@dirrm %%HORDEDIR%%/admin/setup +@dirrm %%HORDEDIR%%/admin/perms +@dirrm %%HORDEDIR%%/admin/locale/fi_FI +@dirrm %%HORDEDIR%%/admin/locale/en_US +@dirrm %%HORDEDIR%%/admin/locale +@dirrm %%HORDEDIR%%/admin +@unexec rmdir %D/%%HORDEDIR%% 2>/dev/null || true +%%PORTDOCS%%@dirrm %%DOCSDIR%% +@unexec rmdir %D/etc/horde 2>/dev/null || true |