diff options
Diffstat (limited to 'www/horde4-base')
-rw-r--r-- | www/horde4-base/Makefile | 268 | ||||
-rw-r--r-- | www/horde4-base/bsd.horde.mk | 113 | ||||
-rw-r--r-- | www/horde4-base/distinfo | 3 | ||||
-rw-r--r-- | www/horde4-base/files/patch-config_conf.xml | 20 | ||||
-rw-r--r-- | www/horde4-base/files/patch-config_mime_drivers.php.dist | 257 | ||||
-rw-r--r-- | www/horde4-base/files/patch-config_registry.php.dist | 17 | ||||
-rw-r--r-- | www/horde4-base/files/patch-po_translation.php | 8 | ||||
-rw-r--r-- | www/horde4-base/files/patch-scripts_sql_README | 11 | ||||
-rw-r--r-- | www/horde4-base/files/pkg-deinstall.in | 41 | ||||
-rw-r--r-- | www/horde4-base/files/pkg-install.in | 114 | ||||
-rw-r--r-- | www/horde4-base/files/pkg-message.common.in | 9 | ||||
-rw-r--r-- | www/horde4-base/files/pkg-message.in | 34 | ||||
-rw-r--r-- | www/horde4-base/pkg-descr | 6 | ||||
-rw-r--r-- | www/horde4-base/pkg-plist | 1712 |
14 files changed, 0 insertions, 2613 deletions
diff --git a/www/horde4-base/Makefile b/www/horde4-base/Makefile deleted file mode 100644 index ddcf639cd4bf..000000000000 --- a/www/horde4-base/Makefile +++ /dev/null @@ -1,268 +0,0 @@ -# Ports collection makefile for: horde3 -# Date created: Sun Oct 07, 2001 -# Whom: Thierry Thomas (<thierry@thomas.as>) -# -# $FreeBSD$ -# - -PORTNAME= horde -DISTVERSIONPREFIX= -DISTVERSION= 3.1.5 -CATEGORIES= www -PKGNAMEPREFIX= -PKGNAMESUFFIX= -base - -MAINTAINER= beech@FreeBSD.org -COMMENT= Common code-base used by Horde applications - -#---------------------------------------------------------------------------- -# You may define these options: -# -# - 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 / WITH_SQLITE). -# -# - 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. -# -# - WITH_MCAL: for mcal authentication back-end (deprecated). -# -# - 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. -# -# - WITH_SUPHP: Install appropriately for use with the www/suphp port. -# -#---------------------------------------------------------------------------- - -RUN_DEPENDS+= ${PEARDIR}/Date.php:${PORTSDIR}/devel/pear-Date \ - ${PEARDIR}/Log.php:${PORTSDIR}/sysutils/pear-Log \ - ${PEARDIR}/Mail/RFC822.php:${PORTSDIR}/mail/pear-Mail \ - ${PEARDIR}/Mail/mime.php:${PORTSDIR}/mail/pear-Mail_Mime \ - ${PEARDIR}/Mail/mimeDecode.php:${PORTSDIR}/mail/pear-Mail_mimeDecode \ - ${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.* - -USE_GETTEXT= yes -USE_PHP= ctype gettext session - -.if defined(WITH_SUPHP) && !defined(WITHOUT_SUPHP) -RUN_DEPENDS+= ${LOCALBASE}/sbin/suphp:${PORTSDIR}/www/suphp -WANT_PHP_CGI= yes -HORDEADMUSR?= horde -SUB_LIST= WITH_SUPHP=yes -.else -WANT_PHP_WEB= yes -.endif - -.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) || defined(WITH_PGSQL) -USE_PHP+= pgsql -. endif -. if defined(WITH_SQLITE) -USE_PHP+= sqlite -. 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 - -PORTDOCS= README CHANGES CODING_STANDARDS CONTRIBUTING CREDITS HACKING INSTALL \ - PERFORMANCE RELEASE_NOTES SECURITY TODO TRANSLATIONS UPGRADING - -.include <bsd.port.pre.mk> - -.if ${PHP_VER} == 5 -USE_PHP+= dom -.else -USE_PHP+= domxml -. if defined(WITH_MCAL) -USE_PHP+= mcal -. endif -.endif - -pre-patch: -.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:/etc/mpasswd:${LOCALBASE}/etc/mpasswd:g" \ - ${WRKSRC}/lib/Horde/Auth/mcal.php - @${REINPLACE_CMD} -e "s:/usr/local/apache/htdocs:${PREFIX}/www:g" \ - ${WRKDIR}/docs/INSTALL - -pre-install: -.if !defined(WITHOUT_SUPPORTED_DB) && exists(${LOCALBASE}/bin/php) - @if ! php -m 2>&1 | ${GREP} -q -e "mysql" ; then \ - if ! php -m 2>&1 | ${GREP} -q -e "pgsql" ; then \ - if ! php -m 2>&1 | ${GREP} -q -e "sybase" ; then \ - if ! php -m 2>&1 | ${GREP} -q -e "SQLite" ; then \ - ${ECHO_MSG} "" ; \ - ${ECHO_MSG} "Please configure PHP with a database support." ; \ - ${ECHO_MSG} "MySQL, PostgreSQL, SQLite 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 ; \ - fi -.endif -.if defined(WITH_SUPHP) - ${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL -.endif - -.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" -.include <bsd.port.post.mk> diff --git a/www/horde4-base/bsd.horde.mk b/www/horde4-base/bsd.horde.mk deleted file mode 100644 index 39e8c7eb16ed..000000000000 --- a/www/horde4-base/bsd.horde.mk +++ /dev/null @@ -1,113 +0,0 @@ -#-*- mode: makefile; tab-width: 4; -* -# ex:ts=4 -# -# Maintainers: Beech Rintoul <beech@FreeBSD.org>, -# Andrew Pantyukhin <infofarmer@FreeBSD.org> -# - -MASTER_SITES?= HORDE -DISTVERSIONPREFIX?= h3- -PKGNAMEPREFIX?= horde- - -.if defined(USE_HORDE) && ${USE_HORDE:Mbase} -RUN_DEPENDS+= ${HORBAS}/rpc.php:${PORTSDIR}/www/horde-base -.endif - -#USE_BZIP2= yes -NO_BUILD= yes - -PEARDIR?= ${LOCALBASE}/share/pear -PORTREV_H?= ${LOCALBASE}/include/c-client/portrevision.h -HORBAS?= ${PREFIX}/www/horde -HORDIR?= ${HORBAS}${PORTNAME:S|^|/|:S|/horde||} -HORCFG?= ${HORDIR}/config -HORLOG?= /var/log/horde.log -PKGDEINSTALL?= ${WRKDIR}/pkg-deinstall -PKGINSTALL?= ${WRKDIR}/pkg-install -PLIST_SUB+= HORDIR=${HORDIR:S|^${PREFIX}/||} HORBAS=${HORBAS:S|^${PREFIX}/||} -SUB_LIST+= HORDIR=${HORDIR} HORBAS=${HORBAS} PORTSDIR=${PORTSDIR} HORDEADMUSR=${HORDEADMUSR}\ - HORDEGRP=${WWWGRP} HORCFG=${HORCFG} PORTNAME=${PORTNAME} -PKGMESSAGE?= ${WRKDIR}/pkg-message -.if !defined(USE_HORDE) || !${USE_HORDE:Mpkg-message} -SUB_FILES?= pkg-message -.endif - -.if defined(WITH_SUPHP) && !defined(WITHOUT_SUPHP) -RUN_DEPENDS+= ${LOCALBASE}/sbin/suphp:${PORTSDIR}/www/suphp -WANT_PHP_CGI= yes -HORDEADMUSR?= horde -SUB_LIST+= WITH_SUPHP=yes -.else -WANT_PHP_WEB= yes -.endif - -HOSTNAME?= `/bin/hostname` -SERVOS?= ${OPSYS}-${OSREL} - -.if !target(post-extract) -post-extract: - @${RM} -f ${WRKSRC}/COPYING ${WRKSRC}/LICENSE - @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ - @${MV} ${WRKSRC}/docs ${WRKDIR}/ -.endif - -.if !target(post-patch) -post-patch: -. for file in pkg-deinstall pkg-install - @${SED} ${_SUB_LIST_TEMP} -e '/^@comment /d' ${.CURDIR}/../../www/horde-base/files/${file}.in > ${WRKDIR}/${file} -. endfor -. if defined(USE_HORDE) && ${USE_HORDE:Mpkg-message} - @${SED} ${_SUB_LIST_TEMP} -e '/^@comment /d' ${.CURDIR}/../../www/horde-base/files/pkg-message.common.in >\ - ${WRKDIR}/pkg-message -. endif - @${EGREP} -lr '(/usr/local|%%LOCALBASE%%|/tmp/horde.log)' ${WRKSRC}/config/ |\ - ${XARGS} ${REINPLACE_CMD} -Ee 's:(/usr/local|%%LOCALBASE%%):${LOCALBASE}:;s|/tmp/horde.log|${HORLOG}|' - @if [ -d ${WRKSRC}/scripts ]; then\ - ${EGREP} -lr '(/usr/local/bin/php|usr/bin/php)' ${WRKSRC}/scripts/ |\ - ${XARGS} ${REINPLACE_CMD} -Ee 's:(/usr/local/bin/php|/usr/bin/php):${LOCALBASE}/bin/php:'; fi -# Copy RCSID tag from conf.xml into conf.php to stop Horde complaining - @if [ -f ${WRKSRC}/config/conf.php.dist ] &&\ - ! ${GREP} -qe "$$Horde:.*conf\.xml" ${WRKSRC}/config/conf.php.dist; then \ - ${GREP} -hm1 "$$Horde:.*conf\.xml" ${WRKSRC}/config/conf.xml |\ - ${SED} -e 's#^ *<!--#//#;s# *--> *$$##g' \ - >> ${WRKSRC}/config/conf.php.dist; \ - fi -.endif - -.if !target(post-configure) -post-configure: - @${FIND} ${WRKSRC} -name \*.orig -delete -or -name \*.bak -delete -.endif - -.if !target(do-install) -do-install: - @${INSTALL} -d ${HORDIR}/ - @${CP} -Rp ${WRKSRC}/ ${HORDIR}/ - @${TOUCH} ${HORLOG} - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${HORDIR}/ ${HORLOG} - @${CHMOD} -R o-rwx ${HORDIR}/ ${HORLOG} - @${ECHO_CMD} @exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} %D/${HORDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} - @${ECHO_CMD} @exec ${CHMOD} -R o-rwx %D/${HORDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} - @${ECHO_CMD} "@exec ${TOUCH} ${HORLOG};${CHOWN} ${WWWOWN}:${WWWGRP} ${HORLOG}" >> ${TMPPLIST} -.if ${HORBAS} == ${HORDIR} - @${ECHO_CMD} "@unexec if [ ! -s ${HORLOG} ];then ${RM} -f ${HORLOG};fi" >> ${TMPPLIST} -.endif -.ifndef NOPORTDOCS - @${INSTALL} -d ${DOCSDIR}/ - @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKDIR}/docs/|} ${DOCSDIR}/ -.endif - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} -.endif - -horde-plist: extract - @${FIND} -s ${WRKSRC} -not -type d | ${SED} -e 's|^${WRKSRC}|%%HORDIR%%|' > ${PLIST} - @${FIND} -ds ${WRKSRC} -type d -not -name ${DISTNAME} -empty |\ - ${SED} -e 's|^${WRKSRC}|@exec mkdir -p %D/%%HORDIR%%|' >> ${PLIST} - @${FIND} -ds ${WRKSRC} -type d -not -name ${DISTNAME} |\ - ${SED} -e 's|^${WRKSRC}|@dirrm %%HORDIR%%|' |\ - ${SED} -Ee '/%(\/lib\/data|\/config)/s|dirrm|dirrmtry|' >> ${PLIST} - @${ECHO_CMD} @dirrmtry %%HORDIR%% >> ${PLIST} - @${ECHO_CMD} @dirrmtry %%HORBAS%% >> ${PLIST} diff --git a/www/horde4-base/distinfo b/www/horde4-base/distinfo deleted file mode 100644 index 0c0fab75cd3e..000000000000 --- a/www/horde4-base/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (horde-3.1.5.tar.gz) = 48fa10539954c57a4fdf42e011ad4f5c -SHA256 (horde-3.1.5.tar.gz) = 81473bfae1d7589fbfb9dc4c6b70ac3b51a3533848db9357ed631745451f4728 -SIZE (horde-3.1.5.tar.gz) = 5285660 diff --git a/www/horde4-base/files/patch-config_conf.xml b/www/horde4-base/files/patch-config_conf.xml deleted file mode 100644 index 56f6f6a346f7..000000000000 --- a/www/horde4-base/files/patch-config_conf.xml +++ /dev/null @@ -1,20 +0,0 @@ ---- 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 deleted file mode 100644 index 5725bdac7928..000000000000 --- a/www/horde4-base/files/patch-config_mime_drivers.php.dist +++ /dev/null @@ -1,257 +0,0 @@ ---- config/mime_drivers.php.dist.orig Thu Apr 6 22:32:14 2006 -+++ config/mime_drivers.php.dist Thu Jul 20 22:10:57 2006 -@@ -37,14 +37,21 @@ - * zip Zip files - */ - $mime_drivers_map['horde']['registered'] = array( -- 'css', 'enriched', 'html', 'images', 'ooo', 'pdf', 'php', 'plain', 'rar', -- 'report', 'rfc822', 'richtext', 'security', 'simple', 'tgz', 'tnef', -- 'vcard', 'zip', -- // The following mime drivers require external applications to be -- // installed. -- // 'deb', 'enscript', 'msword', 'msexcel', 'mspowerpoint', 'rpm', -- // 'srchighlite', 'webcpp' --); -+ 'css' -+//UNCOMMENTIFDEB , 'deb' -+ , 'enriched' -+//UNCOMMENTIFES , 'enscript' -+ , 'html', 'images' -+//UNCOMMENTIFWV , 'msword' -+//UNCOMMENTIFXL , 'msexcel', 'mspowerpoint' -+ , 'ooo', 'pdf', 'php', 'plain', 'rar', 'report', -+ 'rfc822', 'richtext' -+//UNCOMMENTIFRPM , 'rpm' -+ , 'security', 'simple' -+//UNCOMMENTIFSRCHIGH , 'srchighlite' -+ , 'tgz', 'tnef', 'vcard' -+//UNCOMMENTIFWCPP , 'webcpp' -+ , 'zip'); - - - /** -@@ -161,66 +172,66 @@ - * Web C Plus Plus driver settings - * http://webcpp.sourceforge.net/ - */ --$mime_drivers['horde']['webcpp']['location'] = '/usr/bin/webcpp'; --$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'] = '/usr/bin/source-highlight'; --$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-cgi', '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', 'text/x-tex'); --$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-cgi', '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', 'text/x-tex'); -+//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,15 +283,15 @@ - * 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/vnd.ms-word', -- 'application/msword', --); --$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/vnd.ms-word', -+//UNCOMMENTIFWV 'application/msword', -+//UNCOMMENTIFWV); -+//UNCOMMENTIFWV$mime_drivers['horde']['msword']['icons'] = array( -+//UNCOMMENTIFWV 'default' => 'msword.png', -+//UNCOMMENTIFWV); - - - /** -@@ -288,14 +299,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'); - - - /** -@@ -303,13 +314,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'); - - - /** -@@ -325,24 +336,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-config_registry.php.dist b/www/horde4-base/files/patch-config_registry.php.dist deleted file mode 100644 index ae787a92685a..000000000000 --- a/www/horde4-base/files/patch-config_registry.php.dist +++ /dev/null @@ -1,17 +0,0 @@ ---- config/registry.php.dist.orig Wed Aug 3 16:27:41 2005 -+++ config/registry.php.dist Wed Aug 17 22:33:03 2005 -@@ -347,6 +347,14 @@ - 'provides' => 'files', - ); - -+// r1.255.2.9 -+$this->applications['gollem-menu'] = array( -+ 'status' => 'block', -+ 'app' => 'gollem', -+ 'blockname' => 'tree_menu', -+ 'menu_parent' => 'gollem', -+); -+ - $this->applications['passwd'] = array( - 'fileroot' => dirname(__FILE__) . '/../passwd', - 'webroot' => $this->applications['horde']['webroot'] . '/passwd', diff --git a/www/horde4-base/files/patch-po_translation.php b/www/horde4-base/files/patch-po_translation.php deleted file mode 100644 index 045891903631..000000000000 --- a/www/horde4-base/files/patch-po_translation.php +++ /dev/null @@ -1,8 +0,0 @@ ---- 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 deleted file mode 100644 index 4e727f834c0a..000000000000 --- a/www/horde4-base/files/patch-scripts_sql_README +++ /dev/null @@ -1,11 +0,0 @@ ---- scripts/sql/README.orig Wed Apr 27 10:56:42 2005 -+++ scripts/sql/README Tue Jul 12 21:30:49 2005 -@@ -84,7 +84,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 should diff --git a/www/horde4-base/files/pkg-deinstall.in b/www/horde4-base/files/pkg-deinstall.in deleted file mode 100644 index c9c309067789..000000000000 --- a/www/horde4-base/files/pkg-deinstall.in +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -handle_config() { - if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in %%HORDIR%%/config/*.dist; do - diff -bBqw $cf ${cf%.dist} >/dev/null 2>&1 - case $? in - 0) # original config file, delete - rm -f ${cf%.dist} - ;; - 1) # config file has been updated, leave it - ;; - *) # not found? - ;; - esac - done - fi -} - -case $2 in - DEINSTALL) - handle_config - ;; - POST-DEINSTALL) - if [ x%%HORDEADMUSR%% != x ]; then - cat <<EOMSG -A horde port has been deleted. If you are not upgrading -and don't intend to use Horde any more then you may wish -to delete the %%HORDEADMUSR%% account, which can be done -with the following command: - - # pw userdel %%HORDEADMUSR%% -EOMSG - fi - ;; -esac diff --git a/www/horde4-base/files/pkg-install.in b/www/horde4-base/files/pkg-install.in deleted file mode 100644 index 2ecbe6d3f5ef..000000000000 --- a/www/horde4-base/files/pkg-install.in +++ /dev/null @@ -1,114 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Copied from databases/phpmyadmin. -# Used if WITH_SUPHP has been defined. - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -WITH_SUPHP=%%WITH_SUPHP%% - -hordedir=%%HORDIR%% -hordeusr=%%HORDEADMUSR%% -hordegrp=%%HORDEGRP%% - -hordegcos="Horde Owner" -hordehome=/nonexistent -hordeshell=/sbin/nologin - -create_group() { - local user group gcos home shell - - user=$1 - group=$2 - gcos=$3 - home=$4 - shell=$5 - - if pw groupadd -n $group ; then - echo "===> Group $group created" - else - cat <<-EOERRORMSG - *** Failed to create the $group group. - - Please add the $user user and $group group - manually with the commands: - - pw groupadd -n $group - pw useradd -n $user -g $group -c "$gcos" \\ - -d $home -s $shell -h - - - and retry installing this package. - EOERRORMSG - exit 1 - fi -} - - -create_user() { - local user group gcos home shell - - user=$1 - group=$2 - gcos=$3 - home=$4 - shell=$5 - - if pw useradd -n $user -g $group -c "$gcos" -d $home -s $shell -h - ; then - echo "===> Created $user user" - else - cat <<-EOERRORMSG - *** Failed to create the $user user. - - Please add the $user user manually with the command: - - pw useradd -n $user -g $group -c "$gcos" \\ - -d $home -s $shell -h - - - and retry installing this package. - EOERRORMSG - exit 1 - fi -} - - -case $2 in - PRE-INSTALL) - - if [ $WITH_SUPHP != "yes" ]; then - exit 0 - fi - - # Create the horde user and group if they do not already exist - - if pw user show -n $hordeusr >/dev/null 2>&1 ; then - echo "===> Using pre-existing user $hordeusr" - else - if ! pw group show -n $hordegrp >/dev/null 2>&1 ; then - create_group $hordeusr $hordegrp "$hordegcos" $hordehome \ - $hordeshell - fi - create_user $hordeusr $hordegrp "$hordegcos" $hordehome $hordeshell - fi - ;; - POST-INSTALL) - - if [ $WITH_SUPHP = "yes" ]; then - # Change ownership of the Horde directory - - echo "===> Adjusting file ownership in $hordedir" - chown -R $hordeusr:$hordegrp $hordedir || exit 1 - fi - - if [ -z "${PACKAGE_BUILDING}" ]; then - # Copy over sample config files unless they already exist - - for cf in %%HORDIR%%/config/*.dist; do - if [ ! -f ${cf%.dist} ]; then - cp -p $cf ${cf%.dist} - fi - done - fi - ;; -esac diff --git a/www/horde4-base/files/pkg-message.common.in b/www/horde4-base/files/pkg-message.common.in deleted file mode 100644 index 37de388ef932..000000000000 --- a/www/horde4-base/files/pkg-message.common.in +++ /dev/null @@ -1,9 +0,0 @@ -************************************************************************ -%%PORTNAME%% has been installed in %%HORDIR%% with -blank configuration files. - -Horde must be configured; if not, see `pkg_info -Dx horde-base'. - -Finally, you must login to Horde as an Administrator to finish the -configuration. -************************************************************************ diff --git a/www/horde4-base/files/pkg-message.in b/www/horde4-base/files/pkg-message.in deleted file mode 100644 index fa02fefea7bc..000000000000 --- a/www/horde4-base/files/pkg-message.in +++ /dev/null @@ -1,34 +0,0 @@ -************************************************************************ -Horde has been installed in %%HORDIR%% with your blank -configuration files. - -WARNING! the first user will get logged in as an administrator! -******** - -If you want Horde to access a database, you have to run the -appropriate scripts located in %%HORDIR%%/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. 3.0.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. - -When everything is OK, you should be able to access Horde from -<http://localhost/horde/>. - -There is a testing script at <http://localhost/horde/test.php>. -************************************************************************ diff --git a/www/horde4-base/pkg-descr b/www/horde4-base/pkg-descr deleted file mode 100644 index 5a86429fa7e6..000000000000 --- a/www/horde4-base/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -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 deleted file mode 100644 index 9c710e072c54..000000000000 --- a/www/horde4-base/pkg-plist +++ /dev/null @@ -1,1712 +0,0 @@ -%%HORDIR%%/admin/cmdshell.php -%%HORDIR%%/admin/datatree.php -%%HORDIR%%/admin/groups.php -%%HORDIR%%/admin/index.php -%%HORDIR%%/admin/locale/en_US/help.xml -%%HORDIR%%/admin/locale/fi_FI/help.xml -%%HORDIR%%/admin/locale/hu_HU/help.xml -%%HORDIR%%/admin/perms/addchild.php -%%HORDIR%%/admin/perms/delete.php -%%HORDIR%%/admin/perms/edit.php -%%HORDIR%%/admin/perms/index.php -%%HORDIR%%/admin/phpshell.php -%%HORDIR%%/admin/sessions.php -%%HORDIR%%/admin/setup/config.php -%%HORDIR%%/admin/setup/diff.php -%%HORDIR%%/admin/setup/index.php -%%HORDIR%%/admin/setup/scripts.php -%%HORDIR%%/admin/sqlshell.php -%%HORDIR%%/admin/user.php -%%HORDIR%%/config/.htaccess -%%HORDIR%%/config/conf.php.dist -%%HORDIR%%/config/conf.xml -%%HORDIR%%/config/hooks.php.dist -%%HORDIR%%/config/mime_drivers.php.dist -%%HORDIR%%/config/motd.php.dist -%%HORDIR%%/config/nls.php.dist -%%HORDIR%%/config/prefs.php.dist -%%HORDIR%%/config/registry.php.dist -%%HORDIR%%/index.php -%%HORDIR%%/js/addEvent.php -%%HORDIR%%/js/alphaImageLoader.php -%%HORDIR%%/js/enter_key_trap.js -%%HORDIR%%/js/form_assign.js -%%HORDIR%%/js/form_helpers.js -%%HORDIR%%/js/form_sections.js -%%HORDIR%%/js/hideable.js -%%HORDIR%%/js/horde.ie.js -%%HORDIR%%/js/horde.js -%%HORDIR%%/js/httpclient.js -%%HORDIR%%/js/ieEscGuard.js -%%HORDIR%%/js/image.js -%%HORDIR%%/js/open_colorpicker.js -%%HORDIR%%/js/popup.js -%%HORDIR%%/js/sorter.js -%%HORDIR%%/js/stripe.js -%%HORDIR%%/js/tables.js -%%HORDIR%%/js/tooltip.js -%%HORDIR%%/lib/.htaccess -%%HORDIR%%/lib/Block/account.php -%%HORDIR%%/lib/Block/color.php -%%HORDIR%%/lib/Block/fortune.php -%%HORDIR%%/lib/Block/google.php -%%HORDIR%%/lib/Block/iframe.php -%%HORDIR%%/lib/Block/metar.php -%%HORDIR%%/lib/Block/moon.php -%%HORDIR%%/lib/Block/sunrise.php -%%HORDIR%%/lib/Block/time.php -%%HORDIR%%/lib/Block/weatherdotcom.php -%%HORDIR%%/lib/Block/weatherdotcom_strings.php -%%HORDIR%%/lib/File/CSV.php -%%HORDIR%%/lib/File/PDF/fonts/courier.php -%%HORDIR%%/lib/File/PDF/fonts/helvetica.php -%%HORDIR%%/lib/File/PDF/fonts/helveticab.php -%%HORDIR%%/lib/File/PDF/fonts/helveticabi.php -%%HORDIR%%/lib/File/PDF/fonts/helveticai.php -%%HORDIR%%/lib/File/PDF/fonts/symbol.php -%%HORDIR%%/lib/File/PDF/fonts/times.php -%%HORDIR%%/lib/File/PDF/fonts/timesb.php -%%HORDIR%%/lib/File/PDF/fonts/timesbi.php -%%HORDIR%%/lib/File/PDF/fonts/timesi.php -%%HORDIR%%/lib/File/PDF/fonts/zapfdingbats.php -%%HORDIR%%/lib/File/PDF.php -%%HORDIR%%/lib/Horde/Array.php -%%HORDIR%%/lib/Horde/Auth/Signup.php -%%HORDIR%%/lib/Horde/Auth/application.php -%%HORDIR%%/lib/Horde/Auth/auto.php -%%HORDIR%%/lib/Horde/Auth/composite.php -%%HORDIR%%/lib/Horde/Auth/customsql.php -%%HORDIR%%/lib/Horde/Auth/cyrsql.php -%%HORDIR%%/lib/Horde/Auth/cyrus.php -%%HORDIR%%/lib/Horde/Auth/ftp.php -%%HORDIR%%/lib/Horde/Auth/http.php -%%HORDIR%%/lib/Horde/Auth/imap.php -%%HORDIR%%/lib/Horde/Auth/imsp.php -%%HORDIR%%/lib/Horde/Auth/ipbasic.php -%%HORDIR%%/lib/Horde/Auth/kolab.php -%%HORDIR%%/lib/Horde/Auth/krb5.php -%%HORDIR%%/lib/Horde/Auth/ldap.php -%%HORDIR%%/lib/Horde/Auth/login.php -%%HORDIR%%/lib/Horde/Auth/mcal.php -%%HORDIR%%/lib/Horde/Auth/pam.php -%%HORDIR%%/lib/Horde/Auth/passwd.php -%%HORDIR%%/lib/Horde/Auth/peclsasl.php -%%HORDIR%%/lib/Horde/Auth/radius.php -%%HORDIR%%/lib/Horde/Auth/smb.php -%%HORDIR%%/lib/Horde/Auth/smbclient.php -%%HORDIR%%/lib/Horde/Auth/sql.php -%%HORDIR%%/lib/Horde/Auth.php -%%HORDIR%%/lib/Horde/Block/Collection.php -%%HORDIR%%/lib/Horde/Block/Layout/Manager.php -%%HORDIR%%/lib/Horde/Block/Layout/View.php -%%HORDIR%%/lib/Horde/Block/UI.php -%%HORDIR%%/lib/Horde/Block.php -%%HORDIR%%/lib/Horde/Browser/imode.php -%%HORDIR%%/lib/Horde/Browser.php -%%HORDIR%%/lib/Horde/CLI.php -%%HORDIR%%/lib/Horde/Cache/file.php -%%HORDIR%%/lib/Horde/Cache/zps4.php -%%HORDIR%%/lib/Horde/Cache.php -%%HORDIR%%/lib/Horde/Cipher/BlockMode/cbc.php -%%HORDIR%%/lib/Horde/Cipher/BlockMode/cfb64.php -%%HORDIR%%/lib/Horde/Cipher/BlockMode/ecb.php -%%HORDIR%%/lib/Horde/Cipher/BlockMode/ofb64.php -%%HORDIR%%/lib/Horde/Cipher/BlockMode.php -%%HORDIR%%/lib/Horde/Cipher/blowfish.php -%%HORDIR%%/lib/Horde/Cipher/cast128.php -%%HORDIR%%/lib/Horde/Cipher/des.php -%%HORDIR%%/lib/Horde/Cipher/rc2.php -%%HORDIR%%/lib/Horde/Cipher/rc4.php -%%HORDIR%%/lib/Horde/Cipher.php -%%HORDIR%%/lib/Horde/Compress/dbx.php -%%HORDIR%%/lib/Horde/Compress/gzip.php -%%HORDIR%%/lib/Horde/Compress/tar.php -%%HORDIR%%/lib/Horde/Compress/tnef.php -%%HORDIR%%/lib/Horde/Compress/zip.php -%%HORDIR%%/lib/Horde/Compress.php -%%HORDIR%%/lib/Horde/Config.php -%%HORDIR%%/lib/Horde/Crypt/pgp.php -%%HORDIR%%/lib/Horde/Crypt/smime.php -%%HORDIR%%/lib/Horde/Crypt.php -%%HORDIR%%/lib/Horde/Data/csv.php -%%HORDIR%%/lib/Horde/Data/icalendar.php -%%HORDIR%%/lib/Horde/Data/imc.php -%%HORDIR%%/lib/Horde/Data/outlookcsv.php -%%HORDIR%%/lib/Horde/Data/tsv.php -%%HORDIR%%/lib/Horde/Data/vcard.php -%%HORDIR%%/lib/Horde/Data/vnote.php -%%HORDIR%%/lib/Horde/Data/vtodo.php -%%HORDIR%%/lib/Horde/Data.php -%%HORDIR%%/lib/Horde/DataTree/null.php -%%HORDIR%%/lib/Horde/DataTree/sql.php -%%HORDIR%%/lib/Horde/DataTree.php -%%HORDIR%%/lib/Horde/Date.php -%%HORDIR%%/lib/Horde/Editor/htmlarea.php -%%HORDIR%%/lib/Horde/Editor.php -%%HORDIR%%/lib/Horde/Form/Action/conditional_enable.php -%%HORDIR%%/lib/Horde/Form/Action/conditional_setvalue.php -%%HORDIR%%/lib/Horde/Form/Action/reload.php -%%HORDIR%%/lib/Horde/Form/Action/submit.php -%%HORDIR%%/lib/Horde/Form/Action/sum_fields.php -%%HORDIR%%/lib/Horde/Form/Action/updatefield.php -%%HORDIR%%/lib/Horde/Form/Action.php -%%HORDIR%%/lib/Horde/Form/Renderer.php -%%HORDIR%%/lib/Horde/Form/Type/tableset.php -%%HORDIR%%/lib/Horde/Form.php -%%HORDIR%%/lib/Horde/Graph/Chart/pie.php -%%HORDIR%%/lib/Horde/Graph/Chart/pie3d.php -%%HORDIR%%/lib/Horde/Graph/Plot/bar.php -%%HORDIR%%/lib/Horde/Graph/Plot/bargrouped.php -%%HORDIR%%/lib/Horde/Graph/Plot/barstacked.php -%%HORDIR%%/lib/Horde/Graph/Plot/line.php -%%HORDIR%%/lib/Horde/Graph/Plot/scatter.php -%%HORDIR%%/lib/Horde/Graph.php -%%HORDIR%%/lib/Horde/Group/hooks.php -%%HORDIR%%/lib/Horde/Group/ldap.php -%%HORDIR%%/lib/Horde/Group.php -%%HORDIR%%/lib/Horde/Help.php -%%HORDIR%%/lib/Horde/History.php -%%HORDIR%%/lib/Horde/IMAP/ACL/rfc2086.php -%%HORDIR%%/lib/Horde/IMAP/ACL/rfc4314.php -%%HORDIR%%/lib/Horde/IMAP/ACL.php -%%HORDIR%%/lib/Horde/IMAP/Admin.php -%%HORDIR%%/lib/Horde/IMAP/Cache.php -%%HORDIR%%/lib/Horde/IMAP/Search.php -%%HORDIR%%/lib/Horde/IMAP/Sort.php -%%HORDIR%%/lib/Horde/IMAP/Thread.php -%%HORDIR%%/lib/Horde/IMAP/Tree.php -%%HORDIR%%/lib/Horde/Identity.php -%%HORDIR%%/lib/Horde/Image/gd.php -%%HORDIR%%/lib/Horde/Image/im.php -%%HORDIR%%/lib/Horde/Image/png.php -%%HORDIR%%/lib/Horde/Image/rgb.php -%%HORDIR%%/lib/Horde/Image/svg.php -%%HORDIR%%/lib/Horde/Image/swf.php -%%HORDIR%%/lib/Horde/Image.php -%%HORDIR%%/lib/Horde/Kolab.php -%%HORDIR%%/lib/Horde/LDAP.php -%%HORDIR%%/lib/Horde/MIME/Contents.php -%%HORDIR%%/lib/Horde/MIME/Headers.php -%%HORDIR%%/lib/Horde/MIME/MDN.php -%%HORDIR%%/lib/Horde/MIME/Magic.php -%%HORDIR%%/lib/Horde/MIME/Message.php -%%HORDIR%%/lib/Horde/MIME/Part.php -%%HORDIR%%/lib/Horde/MIME/Structure.php -%%HORDIR%%/lib/Horde/MIME/Viewer/css.php -%%HORDIR%%/lib/Horde/MIME/Viewer/deb.php -%%HORDIR%%/lib/Horde/MIME/Viewer/default.php -%%HORDIR%%/lib/Horde/MIME/Viewer/enriched.php -%%HORDIR%%/lib/Horde/MIME/Viewer/enscript.php -%%HORDIR%%/lib/Horde/MIME/Viewer/html.php -%%HORDIR%%/lib/Horde/MIME/Viewer/images.php -%%HORDIR%%/lib/Horde/MIME/Viewer/msexcel.php -%%HORDIR%%/lib/Horde/MIME/Viewer/mspowerpoint.php -%%HORDIR%%/lib/Horde/MIME/Viewer/msword.php -%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/common.xsl -%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/global_document.xsl -%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/main_html.xsl -%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/palm.xsl -%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/style_header.xsl -%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/style_inlined.xsl -%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/style_mapping.xsl -%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/table.xsl -%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/table_cells.xsl -%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/table_columns.xsl -%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/table_rows.xsl -%%HORDIR%%/lib/Horde/MIME/Viewer/ooo.php -%%HORDIR%%/lib/Horde/MIME/Viewer/pdf.php -%%HORDIR%%/lib/Horde/MIME/Viewer/php.php -%%HORDIR%%/lib/Horde/MIME/Viewer/plain.php -%%HORDIR%%/lib/Horde/MIME/Viewer/rar.php -%%HORDIR%%/lib/Horde/MIME/Viewer/report.php -%%HORDIR%%/lib/Horde/MIME/Viewer/rfc822.php -%%HORDIR%%/lib/Horde/MIME/Viewer/richtext.php -%%HORDIR%%/lib/Horde/MIME/Viewer/rpm.php -%%HORDIR%%/lib/Horde/MIME/Viewer/security.php -%%HORDIR%%/lib/Horde/MIME/Viewer/simple.php -%%HORDIR%%/lib/Horde/MIME/Viewer/source.php -%%HORDIR%%/lib/Horde/MIME/Viewer/srchighlite.php -%%HORDIR%%/lib/Horde/MIME/Viewer/tgz.php -%%HORDIR%%/lib/Horde/MIME/Viewer/tnef.php -%%HORDIR%%/lib/Horde/MIME/Viewer/vcard.php -%%HORDIR%%/lib/Horde/MIME/Viewer/webcpp.php -%%HORDIR%%/lib/Horde/MIME/Viewer/zip.php -%%HORDIR%%/lib/Horde/MIME/Viewer.php -%%HORDIR%%/lib/Horde/MIME/mime.magic.php -%%HORDIR%%/lib/Horde/MIME/mime.mapping.php -%%HORDIR%%/lib/Horde/MIME.php -%%HORDIR%%/lib/Horde/Maintenance.php -%%HORDIR%%/lib/Horde/Menu.php -%%HORDIR%%/lib/Horde/Mobile/Renderer/html.php -%%HORDIR%%/lib/Horde/Mobile/Renderer/wml.php -%%HORDIR%%/lib/Horde/Mobile/Renderer.php -%%HORDIR%%/lib/Horde/Mobile.php -%%HORDIR%%/lib/Horde/NLS/GeoIP.php -%%HORDIR%%/lib/Horde/NLS/carsigns.php -%%HORDIR%%/lib/Horde/NLS/coordinates.php -%%HORDIR%%/lib/Horde/NLS/countries.php -%%HORDIR%%/lib/Horde/NLS/tld.php -%%HORDIR%%/lib/Horde/NLS.php -%%HORDIR%%/lib/Horde/Notification/Event.php -%%HORDIR%%/lib/Horde/Notification/Listener/audio.php -%%HORDIR%%/lib/Horde/Notification/Listener/javascript.php -%%HORDIR%%/lib/Horde/Notification/Listener/mobile.php -%%HORDIR%%/lib/Horde/Notification/Listener/status.php -%%HORDIR%%/lib/Horde/Notification/Listener.php -%%HORDIR%%/lib/Horde/Notification.php -%%HORDIR%%/lib/Horde/Perms/UI.php -%%HORDIR%%/lib/Horde/Perms/datatree.php -%%HORDIR%%/lib/Horde/Perms.php -%%HORDIR%%/lib/Horde/Prefs/CategoryManager.php -%%HORDIR%%/lib/Horde/Prefs/UI.php -%%HORDIR%%/lib/Horde/Prefs/imsp.php -%%HORDIR%%/lib/Horde/Prefs/kolab.php -%%HORDIR%%/lib/Horde/Prefs/ldap.php -%%HORDIR%%/lib/Horde/Prefs/session.php -%%HORDIR%%/lib/Horde/Prefs/sql.php -%%HORDIR%%/lib/Horde/Prefs.php -%%HORDIR%%/lib/Horde/RPC/rest.php -%%HORDIR%%/lib/Horde/RPC/soap.php -%%HORDIR%%/lib/Horde/RPC/syncml.php -%%HORDIR%%/lib/Horde/RPC/syncml_wbxml.php -%%HORDIR%%/lib/Horde/RPC/webdav.php -%%HORDIR%%/lib/Horde/RPC/xmlrpc.php -%%HORDIR%%/lib/Horde/RPC.php -%%HORDIR%%/lib/Horde/Registry.php -%%HORDIR%%/lib/Horde/SQL/Keywords.php -%%HORDIR%%/lib/Horde/SQL.php -%%HORDIR%%/lib/Horde/Scheduler/cron.php -%%HORDIR%%/lib/Horde/Scheduler.php -%%HORDIR%%/lib/Horde/Secret.php -%%HORDIR%%/lib/Horde/Serialize.php -%%HORDIR%%/lib/Horde/SessionHandler/dbm.php -%%HORDIR%%/lib/Horde/SessionHandler/ldap.php -%%HORDIR%%/lib/Horde/SessionHandler/memcache.php -%%HORDIR%%/lib/Horde/SessionHandler/mysql.php -%%HORDIR%%/lib/Horde/SessionHandler/none.php -%%HORDIR%%/lib/Horde/SessionHandler/oci8.php -%%HORDIR%%/lib/Horde/SessionHandler/pgsql.php -%%HORDIR%%/lib/Horde/SessionHandler/sapdb.php -%%HORDIR%%/lib/Horde/SessionHandler/sql.php -%%HORDIR%%/lib/Horde/SessionHandler.php -%%HORDIR%%/lib/Horde/SessionObjects.php -%%HORDIR%%/lib/Horde/Share.php -%%HORDIR%%/lib/Horde/String.php -%%HORDIR%%/lib/Horde/Template.php -%%HORDIR%%/lib/Horde/Text/Filter/bbcode.php -%%HORDIR%%/lib/Horde/Text/Filter/cleanascii.php -%%HORDIR%%/lib/Horde/Text/Filter/dimsignature.php -%%HORDIR%%/lib/Horde/Text/Filter/emails.php -%%HORDIR%%/lib/Horde/Text/Filter/emoticons.php -%%HORDIR%%/lib/Horde/Text/Filter/environment.php -%%HORDIR%%/lib/Horde/Text/Filter/highlightquotes.php -%%HORDIR%%/lib/Horde/Text/Filter/html2text.php -%%HORDIR%%/lib/Horde/Text/Filter/linkurls.php -%%HORDIR%%/lib/Horde/Text/Filter/rst.php -%%HORDIR%%/lib/Horde/Text/Filter/simplemarkup.php -%%HORDIR%%/lib/Horde/Text/Filter/space2html.php -%%HORDIR%%/lib/Horde/Text/Filter/tabs2spaces.php -%%HORDIR%%/lib/Horde/Text/Filter/text2html.php -%%HORDIR%%/lib/Horde/Text/Filter/words.php -%%HORDIR%%/lib/Horde/Text/Filter/xss.php -%%HORDIR%%/lib/Horde/Text/Filter.php -%%HORDIR%%/lib/Horde/Text.php -%%HORDIR%%/lib/Horde/Token/file.php -%%HORDIR%%/lib/Horde/Token/sql.php -%%HORDIR%%/lib/Horde/Token.php -%%HORDIR%%/lib/Horde/Tree/html.php -%%HORDIR%%/lib/Horde/Tree/javascript.php -%%HORDIR%%/lib/Horde/Tree/select.php -%%HORDIR%%/lib/Horde/Tree.php -%%HORDIR%%/lib/Horde/UI/Language.php -%%HORDIR%%/lib/Horde/UI/Pager.php -%%HORDIR%%/lib/Horde/UI/Tabs.php -%%HORDIR%%/lib/Horde/UI/VarRenderer/html.php -%%HORDIR%%/lib/Horde/UI/VarRenderer/tableset_html.php -%%HORDIR%%/lib/Horde/UI/VarRenderer.php -%%HORDIR%%/lib/Horde/UI/Widget.php -%%HORDIR%%/lib/Horde/Util.php -%%HORDIR%%/lib/Horde/VC/cvs.php -%%HORDIR%%/lib/Horde/VC/rcs.php -%%HORDIR%%/lib/Horde/VC/svn.php -%%HORDIR%%/lib/Horde/VC.php -%%HORDIR%%/lib/Horde/Variables.php -%%HORDIR%%/lib/Horde/iCalendar/valarm.php -%%HORDIR%%/lib/Horde/iCalendar/vcard.php -%%HORDIR%%/lib/Horde/iCalendar/vevent.php -%%HORDIR%%/lib/Horde/iCalendar/vfreebusy.php -%%HORDIR%%/lib/Horde/iCalendar/vjournal.php -%%HORDIR%%/lib/Horde/iCalendar/vnote.php -%%HORDIR%%/lib/Horde/iCalendar/vtimezone.php -%%HORDIR%%/lib/Horde/iCalendar/vtodo.php -%%HORDIR%%/lib/Horde/iCalendar.php -%%HORDIR%%/lib/Horde.php -%%HORDIR%%/lib/Net/IMSP/Auth/cram_md5.php -%%HORDIR%%/lib/Net/IMSP/Auth/imtest.php -%%HORDIR%%/lib/Net/IMSP/Auth/plaintext.php -%%HORDIR%%/lib/Net/IMSP/Auth.php -%%HORDIR%%/lib/Net/IMSP/Book.php -%%HORDIR%%/lib/Net/IMSP/Options.php -%%HORDIR%%/lib/Net/IMSP/Utils.php -%%HORDIR%%/lib/Net/IMSP.php -%%HORDIR%%/lib/Net/SMS/clickatell_http.php -%%HORDIR%%/lib/Net/SMS/generic_smtp.php -%%HORDIR%%/lib/Net/SMS/sms2email_http.php -%%HORDIR%%/lib/Net/SMS/vodafoneitaly_smtp.php -%%HORDIR%%/lib/Net/SMS/win_http.php -%%HORDIR%%/lib/Net/SMS.php -%%HORDIR%%/lib/SyncML/Backend.php -%%HORDIR%%/lib/SyncML/Command/Alert.php -%%HORDIR%%/lib/SyncML/Command/Final.php -%%HORDIR%%/lib/SyncML/Command/Get.php -%%HORDIR%%/lib/SyncML/Command/Map.php -%%HORDIR%%/lib/SyncML/Command/Put.php -%%HORDIR%%/lib/SyncML/Command/Results.php -%%HORDIR%%/lib/SyncML/Command/Status.php -%%HORDIR%%/lib/SyncML/Command/Sync.php -%%HORDIR%%/lib/SyncML/Command/SyncElement.php -%%HORDIR%%/lib/SyncML/Command.php -%%HORDIR%%/lib/SyncML/Constants.php -%%HORDIR%%/lib/SyncML/Device/Nokia.php -%%HORDIR%%/lib/SyncML/Device/P800.php -%%HORDIR%%/lib/SyncML/Device/Sync4j.php -%%HORDIR%%/lib/SyncML/Device/Synthesis.php -%%HORDIR%%/lib/SyncML/Device.php -%%HORDIR%%/lib/SyncML/DeviceInfo.php -%%HORDIR%%/lib/SyncML/State.php -%%HORDIR%%/lib/SyncML/Sync.php -%%HORDIR%%/lib/SyncML.php -%%HORDIR%%/lib/Test.php -%%HORDIR%%/lib/Text/Diff/Renderer/inline.php -%%HORDIR%%/lib/Text/Diff/Renderer/unified.php -%%HORDIR%%/lib/Text/Diff/Renderer.php -%%HORDIR%%/lib/Text/Diff.php -%%HORDIR%%/lib/Text/Diff3.php -%%HORDIR%%/lib/Text/Flowed.php -%%HORDIR%%/lib/Text/reST/Formatter/html.php -%%HORDIR%%/lib/Text/reST/Formatter.php -%%HORDIR%%/lib/Text/reST/Parser.php -%%HORDIR%%/lib/Text/reST.php -%%HORDIR%%/lib/VFS/Browser.php -%%HORDIR%%/lib/VFS/GC.php -%%HORDIR%%/lib/VFS/ISOWriter/RealInputStrategy/copy.php -%%HORDIR%%/lib/VFS/ISOWriter/RealInputStrategy/direct.php -%%HORDIR%%/lib/VFS/ISOWriter/RealInputStrategy.php -%%HORDIR%%/lib/VFS/ISOWriter/RealOutputStrategy/copy.php -%%HORDIR%%/lib/VFS/ISOWriter/RealOutputStrategy/direct.php -%%HORDIR%%/lib/VFS/ISOWriter/RealOutputStrategy.php -%%HORDIR%%/lib/VFS/ISOWriter/mkisofs.php -%%HORDIR%%/lib/VFS/ISOWriter.php -%%HORDIR%%/lib/VFS/ListItem.php -%%HORDIR%%/lib/VFS/Object.php -%%HORDIR%%/lib/VFS/file.php -%%HORDIR%%/lib/VFS/ftp.php -%%HORDIR%%/lib/VFS/musql.php -%%HORDIR%%/lib/VFS/smb.php -%%HORDIR%%/lib/VFS/sql.php -%%HORDIR%%/lib/VFS/sql_file.php -%%HORDIR%%/lib/VFS.php -%%HORDIR%%/lib/XML/WBXML/ContentHandler.php -%%HORDIR%%/lib/XML/WBXML/DTD/SyncML.php -%%HORDIR%%/lib/XML/WBXML/DTD/SyncMLDevInf.php -%%HORDIR%%/lib/XML/WBXML/DTD/SyncMLMetInf.php -%%HORDIR%%/lib/XML/WBXML/DTD.php -%%HORDIR%%/lib/XML/WBXML/DTDManager.php -%%HORDIR%%/lib/XML/WBXML/Decoder.php -%%HORDIR%%/lib/XML/WBXML/Encoder.php -%%HORDIR%%/lib/XML/WBXML.php -%%HORDIR%%/lib/api.php -%%HORDIR%%/lib/base.php -%%HORDIR%%/lib/core.php -%%HORDIR%%/lib/prefs.php -%%HORDIR%%/lib/version.php -%%HORDIR%%/locale/.htaccess -%%HORDIR%%/locale/ar_SY/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/bg_BG/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/bg_BG/help.xml -%%HORDIR%%/locale/bs_BA/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/ca_ES/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/ca_ES/help.xml -%%HORDIR%%/locale/cs_CZ/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/cs_CZ/help.xml -%%HORDIR%%/locale/da_DK/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/da_DK/help.xml -%%HORDIR%%/locale/de_DE/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/de_DE/help.xml -%%HORDIR%%/locale/el_GR/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/el_GR/help.xml -%%HORDIR%%/locale/en_US/help.xml -%%HORDIR%%/locale/es_ES/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/es_ES/help.xml -%%HORDIR%%/locale/et_EE/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/et_EE/help.xml -%%HORDIR%%/locale/fa_IR/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/fa_IR/help.xml -%%HORDIR%%/locale/fi_FI/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/fi_FI/help.xml -%%HORDIR%%/locale/fr_FR/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/fr_FR/help.xml -%%HORDIR%%/locale/gl_ES/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/he_IL/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/hu_HU/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/hu_HU/help.xml -%%HORDIR%%/locale/id_ID/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/is_IS/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/it_IT/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/it_IT/help.xml -%%HORDIR%%/locale/ja_JP/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/ja_JP/help.xml -%%HORDIR%%/locale/km_KH/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/ko_KR/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/ko_KR/help.xml -%%HORDIR%%/locale/lt_LT/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/lt_LT/help.xml -%%HORDIR%%/locale/lv_LV/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/mk_MK/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/nb_NO/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/nb_NO/help.xml -%%HORDIR%%/locale/nl_NL/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/nl_NL/help.xml -%%HORDIR%%/locale/nn_NO/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/nn_NO/help.xml -%%HORDIR%%/locale/pl_PL/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/pl_PL/help.xml -%%HORDIR%%/locale/pt_BR/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/pt_BR/help.xml -%%HORDIR%%/locale/pt_PT/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/pt_PT/help.xml -%%HORDIR%%/locale/ro_RO/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/ru_RU/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/ru_RU/help.xml -%%HORDIR%%/locale/sk_SK/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/sk_SK/help.xml -%%HORDIR%%/locale/sl_SI/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/sl_SI/help.xml -%%HORDIR%%/locale/sv_SE/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/sv_SE/help.xml -%%HORDIR%%/locale/tr_TR/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/tr_TR/help.xml -%%HORDIR%%/locale/uk_UA/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/uk_UA/help.xml -%%HORDIR%%/locale/zh_CN/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/zh_CN/help.xml -%%HORDIR%%/locale/zh_TW/LC_MESSAGES/horde.mo -%%HORDIR%%/locale/zh_TW/help.xml -%%HORDIR%%/login.php -%%HORDIR%%/po/.htaccess -%%HORDIR%%/po/README -%%HORDIR%%/po/ar_SY.po -%%HORDIR%%/po/bg_BG.po -%%HORDIR%%/po/bs_BA.po -%%HORDIR%%/po/ca_ES.po -%%HORDIR%%/po/cs_CZ.po -%%HORDIR%%/po/da_DK.po -%%HORDIR%%/po/de_DE.po -%%HORDIR%%/po/el_GR.po -%%HORDIR%%/po/es_ES.po -%%HORDIR%%/po/et_EE.po -%%HORDIR%%/po/fa_IR.po -%%HORDIR%%/po/fi_FI.po -%%HORDIR%%/po/fr_FR.po -%%HORDIR%%/po/gl_ES.po -%%HORDIR%%/po/he_IL.po -%%HORDIR%%/po/horde.pot -%%HORDIR%%/po/hu_HU.po -%%HORDIR%%/po/id_ID.po -%%HORDIR%%/po/is_IS.po -%%HORDIR%%/po/it_IT.po -%%HORDIR%%/po/ja_JP.po -%%HORDIR%%/po/km_KH.po -%%HORDIR%%/po/ko_KR.po -%%HORDIR%%/po/lt_LT.po -%%HORDIR%%/po/lv_LV.po -%%HORDIR%%/po/mk_MK.po -%%HORDIR%%/po/nb_NO.po -%%HORDIR%%/po/nl_NL.po -%%HORDIR%%/po/nn_NO.po -%%HORDIR%%/po/pl_PL.po -%%HORDIR%%/po/pt_BR.po -%%HORDIR%%/po/pt_PT.po -%%HORDIR%%/po/ro_RO.po -%%HORDIR%%/po/ru_RU.po -%%HORDIR%%/po/sk_SK.po -%%HORDIR%%/po/sl_SI.po -%%HORDIR%%/po/sv_SE.po -%%HORDIR%%/po/tr_TR.po -%%HORDIR%%/po/translation.php -%%HORDIR%%/po/uk_UA.po -%%HORDIR%%/po/zh_CN.po -%%HORDIR%%/po/zh_TW.po -%%HORDIR%%/rpc.php -%%HORDIR%%/scripts/.htaccess -%%HORDIR%%/scripts/SCRIPTS -%%HORDIR%%/scripts/cookie_login.php -%%HORDIR%%/scripts/count_sessions.php -%%HORDIR%%/scripts/create-symlinks.php -%%HORDIR%%/scripts/get_login.php -%%HORDIR%%/scripts/http_login_refer.php -%%HORDIR%%/scripts/ldap/horde.schema -%%HORDIR%%/scripts/remove_prefs.php -%%HORDIR%%/scripts/set_perms.sh -%%HORDIR%%/scripts/sql/README -%%HORDIR%%/scripts/sql/README.OCI8 -%%HORDIR%%/scripts/sql/create.msde.sql -%%HORDIR%%/scripts/sql/create.mysql.sql -%%HORDIR%%/scripts/sql/create.oci8.sql -%%HORDIR%%/scripts/sql/create.pgsql.sql -%%HORDIR%%/scripts/sql/create.sql -%%HORDIR%%/scripts/sql/create.sybase.sql -%%HORDIR%%/scripts/sql/create.xml -%%HORDIR%%/scripts/sql/horde_datatree.mssql.sql -%%HORDIR%%/scripts/sql/horde_datatree.mysql.sql -%%HORDIR%%/scripts/sql/horde_datatree.sql -%%HORDIR%%/scripts/sql/horde_histories.mssql.sql -%%HORDIR%%/scripts/sql/horde_histories.sql -%%HORDIR%%/scripts/sql/horde_log.mssql.sql -%%HORDIR%%/scripts/sql/horde_log.sql -%%HORDIR%%/scripts/sql/horde_muvfs.mssql.sql -%%HORDIR%%/scripts/sql/horde_muvfs.sql -%%HORDIR%%/scripts/sql/horde_prefs.mssql.sql -%%HORDIR%%/scripts/sql/horde_prefs.sql -%%HORDIR%%/scripts/sql/horde_sessionhandler.mssql.sql -%%HORDIR%%/scripts/sql/horde_sessionhandler.mysql.sql -%%HORDIR%%/scripts/sql/horde_sessionhandler.oci8.sql -%%HORDIR%%/scripts/sql/horde_sessionhandler.pgsql.sql -%%HORDIR%%/scripts/sql/horde_sessionhandler.sapdb.sql -%%HORDIR%%/scripts/sql/horde_sessionhandler.sql -%%HORDIR%%/scripts/sql/horde_tokens.sql -%%HORDIR%%/scripts/sql/horde_users.sql -%%HORDIR%%/scripts/sql/horde_vfs.mssql.sql -%%HORDIR%%/scripts/sql/horde_vfs.oci8.sql -%%HORDIR%%/scripts/sql/horde_vfs.pgsql.sql -%%HORDIR%%/scripts/sql/horde_vfs.sql -%%HORDIR%%/scripts/sql/script.initial_horde_user.sql -%%HORDIR%%/scripts/temp-cleanup.cron -%%HORDIR%%/scripts/upgrades/2.2_to_3.0.mysql.sql -%%HORDIR%%/scripts/upgrades/2.2_to_3.0.oci8.sql -%%HORDIR%%/scripts/upgrades/2.2_to_3.0.pgsql.sql -%%HORDIR%%/scripts/upgrades/2005-09-22_horde_prefs_varchar2.oci8.sql -%%HORDIR%%/scripts/upgrades/2006-06-29_horde_prefs_indexes.sql -%%HORDIR%%/scripts/upgrades/3.0_to_3.1.mysql.sql -%%HORDIR%%/scripts/upgrades/3.0_to_3.1.oci8.sql -%%HORDIR%%/scripts/upgrades/3.0_to_3.1.sql -%%HORDIR%%/scripts/upgrades/migrate_user_categories.php -%%HORDIR%%/scripts/upgrades/move_history_out_of_datatree.php -%%HORDIR%%/services/cacheview.php -%%HORDIR%%/services/changepassword.php -%%HORDIR%%/services/download/index.php -%%HORDIR%%/services/editor/htmlarea/dialog.js -%%HORDIR%%/services/editor/htmlarea/htmlarea.css -%%HORDIR%%/services/editor/htmlarea/htmlarea.js -%%HORDIR%%/services/editor/htmlarea/images/ed_about.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_align_center.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_align_justify.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_align_left.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_align_right.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_blank.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_charmap.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_color_bg.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_color_fg.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_copy.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_custom.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_cut.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_delete.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_format_bold.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_format_italic.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_format_strike.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_format_sub.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_format_sup.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_format_underline.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_help.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_hr.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_html.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_image.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_indent_less.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_indent_more.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_killword.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_left_to_right.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_link.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_list_bullet.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_list_num.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_paste.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_redo.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_right_to_left.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_rmformat.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_save.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_show_border.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_splitcel.gif -%%HORDIR%%/services/editor/htmlarea/images/ed_undo.gif -%%HORDIR%%/services/editor/htmlarea/images/fullscreen_maximize.gif -%%HORDIR%%/services/editor/htmlarea/images/fullscreen_minimize.gif -%%HORDIR%%/services/editor/htmlarea/images/insert_table.gif -%%HORDIR%%/services/editor/htmlarea/lang/en.js -%%HORDIR%%/services/editor/htmlarea/plugins/AnselImage/ansel-image.js -%%HORDIR%%/services/editor/htmlarea/plugins/AnselImage/insert_image.php -%%HORDIR%%/services/editor/htmlarea/plugins/AnselImage/lang/en.js -%%HORDIR%%/services/editor/htmlarea/plugins/AnselImage/showimage.html -%%HORDIR%%/services/editor/htmlarea/plugins/ContextMenu/context-menu.js -%%HORDIR%%/services/editor/htmlarea/plugins/ContextMenu/lang/en.js -%%HORDIR%%/services/editor/htmlarea/plugins/ContextMenu/menu.css -%%HORDIR%%/services/editor/htmlarea/plugins/ListType/lang/en.js -%%HORDIR%%/services/editor/htmlarea/plugins/ListType/list-type.js -%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-delete.gif -%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-insert-after.gif -%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-insert-before.gif -%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-merge.gif -%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-prop.gif -%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-split.gif -%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-delete.gif -%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-insert-after.gif -%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-insert-before.gif -%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-split.gif -%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-delete.gif -%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-insert-above.gif -%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-insert-under.gif -%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-prop.gif -%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-split.gif -%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/table-prop.gif -%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/lang/en.js -%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/table-operations.js -%%HORDIR%%/services/editor/htmlarea/popupdiv.js -%%HORDIR%%/services/editor/htmlarea/popups/about.html -%%HORDIR%%/services/editor/htmlarea/popups/blank.html -%%HORDIR%%/services/editor/htmlarea/popups/fullscreen.html -%%HORDIR%%/services/editor/htmlarea/popups/insert_image.html -%%HORDIR%%/services/editor/htmlarea/popups/insert_table.html -%%HORDIR%%/services/editor/htmlarea/popups/link.html -%%HORDIR%%/services/editor/htmlarea/popups/popup.js -%%HORDIR%%/services/editor/htmlarea/popups/select_color.html -%%HORDIR%%/services/editor/htmlarea/popupwin.js -%%HORDIR%%/services/go.php -%%HORDIR%%/services/help/index.php -%%HORDIR%%/services/images/colorpicker.php -%%HORDIR%%/services/images/pixel.php -%%HORDIR%%/services/images/view.php -%%HORDIR%%/services/javascript.php -%%HORDIR%%/services/keyboard.php -%%HORDIR%%/services/language.php -%%HORDIR%%/services/maintenance.php -%%HORDIR%%/services/obrowser/index.php -%%HORDIR%%/services/portal/edit.php -%%HORDIR%%/services/portal/index.php -%%HORDIR%%/services/portal/mobile.php -%%HORDIR%%/services/portal/rpcsum.php -%%HORDIR%%/services/portal/sidebar.php -%%HORDIR%%/services/prefs/index.php -%%HORDIR%%/services/prefs.php -%%HORDIR%%/services/problem.php -%%HORDIR%%/services/resetpassword.php -%%HORDIR%%/services/shares/edit.php -%%HORDIR%%/signup.php -%%HORDIR%%/templates/.htaccess -%%HORDIR%%/templates/admin/common-header.inc -%%HORDIR%%/templates/admin/groups/addchild.inc -%%HORDIR%%/templates/admin/groups/delete.inc -%%HORDIR%%/templates/admin/groups/edit.inc -%%HORDIR%%/templates/admin/setup/config.html -%%HORDIR%%/templates/admin/setup/diff.html -%%HORDIR%%/templates/admin/setup/index.html -%%HORDIR%%/templates/admin/user/add.inc -%%HORDIR%%/templates/admin/user/approve.inc -%%HORDIR%%/templates/admin/user/clear.inc -%%HORDIR%%/templates/admin/user/list.inc -%%HORDIR%%/templates/admin/user/noadd.inc -%%HORDIR%%/templates/admin/user/nolist.inc -%%HORDIR%%/templates/admin/user/remove.inc -%%HORDIR%%/templates/admin/user/removequeued.inc -%%HORDIR%%/templates/admin/user/update.inc -%%HORDIR%%/templates/common-footer.inc -%%HORDIR%%/templates/common-header.inc -%%HORDIR%%/templates/contents/open_view_win.js -%%HORDIR%%/templates/data/csvinfo.inc -%%HORDIR%%/templates/data/csvmap.inc -%%HORDIR%%/templates/data/date.inc -%%HORDIR%%/templates/data/datemap.inc -%%HORDIR%%/templates/data/datetime.inc -%%HORDIR%%/templates/data/time.inc -%%HORDIR%%/templates/data/tsvinfo.inc -%%HORDIR%%/templates/help/about.inc -%%HORDIR%%/templates/help/index.inc -%%HORDIR%%/templates/help/menu.inc -%%HORDIR%%/templates/index/frames_index.inc -%%HORDIR%%/templates/javascript/htmlarea.js -%%HORDIR%%/templates/javascript/htmlarea_anselimage_lang.js -%%HORDIR%%/templates/javascript/htmlarea_context_lang.js -%%HORDIR%%/templates/javascript/htmlarea_lang.js -%%HORDIR%%/templates/javascript/htmlarea_listtype_lang.js -%%HORDIR%%/templates/javascript/htmlarea_table_lang.js -%%HORDIR%%/templates/javascript/keybindings.js -%%HORDIR%%/templates/javascript/open_calendar.js -%%HORDIR%%/templates/javascript/open_google_win.js -%%HORDIR%%/templates/javascript/open_html_helper.js -%%HORDIR%%/templates/javascript/print.js -%%HORDIR%%/templates/javascript/quoteBlocks.js -%%HORDIR%%/templates/javascript/tree.js -%%HORDIR%%/templates/login/login.inc -%%HORDIR%%/templates/login/mobile.inc -%%HORDIR%%/templates/maintenance/maintenance.html -%%HORDIR%%/templates/menu/menu.inc -%%HORDIR%%/templates/portal/add.inc -%%HORDIR%%/templates/portal/block.inc -%%HORDIR%%/templates/portal/edit.inc -%%HORDIR%%/templates/portal/layout.inc -%%HORDIR%%/templates/portal/menu.inc -%%HORDIR%%/templates/portal/sidebar.inc -%%HORDIR%%/templates/prefs/app.inc -%%HORDIR%%/templates/prefs/begin.inc -%%HORDIR%%/templates/prefs/categorymanagement.inc -%%HORDIR%%/templates/prefs/checkbox.inc -%%HORDIR%%/templates/prefs/deleteidentity.inc -%%HORDIR%%/templates/prefs/end.inc -%%HORDIR%%/templates/prefs/enum.inc -%%HORDIR%%/templates/prefs/identityselect.inc -%%HORDIR%%/templates/prefs/link.inc -%%HORDIR%%/templates/prefs/multienum.inc -%%HORDIR%%/templates/prefs/number.inc -%%HORDIR%%/templates/prefs/overview.inc -%%HORDIR%%/templates/prefs/password.inc -%%HORDIR%%/templates/prefs/select.inc -%%HORDIR%%/templates/prefs/text.inc -%%HORDIR%%/templates/prefs/textarea.inc -%%HORDIR%%/templates/problem/problem.inc -%%HORDIR%%/templates/rpcsum/rpcsum.inc -%%HORDIR%%/templates/shares/edit.inc -%%HORDIR%%/templates/test/extensions.inc -%%HORDIR%%/templates/test/footer.inc -%%HORDIR%%/templates/test/header.inc -%%HORDIR%%/templates/test/php_version.inc -%%HORDIR%%/templates/test/version.inc -%%HORDIR%%/test.php -%%HORDIR%%/themes/NeXTgrey/info.php -%%HORDIR%%/themes/NeXTgrey/screen.css -%%HORDIR%%/themes/azur/info.php -%%HORDIR%%/themes/azur/screen.css -%%HORDIR%%/themes/barbie/info.php -%%HORDIR%%/themes/barbie/screen.css -%%HORDIR%%/themes/bluemoon/info.php -%%HORDIR%%/themes/bluemoon/screen.css -%%HORDIR%%/themes/bluewhite/info.php -%%HORDIR%%/themes/bluewhite/screen.css -%%HORDIR%%/themes/brown/info.php -%%HORDIR%%/themes/brown/screen.css -%%HORDIR%%/themes/burntorange/info.php -%%HORDIR%%/themes/burntorange/screen.css -%%HORDIR%%/themes/camouflage/graphics/menu.png -%%HORDIR%%/themes/camouflage/info.php -%%HORDIR%%/themes/camouflage/screen.css -%%HORDIR%%/themes/cornflower/graphics/tab_bottom.gif -%%HORDIR%%/themes/cornflower/graphics/tab_left.gif -%%HORDIR%%/themes/cornflower/graphics/tab_right.gif -%%HORDIR%%/themes/cornflower/info.php -%%HORDIR%%/themes/cornflower/screen.css -%%HORDIR%%/themes/gennevilliers/info.php -%%HORDIR%%/themes/gennevilliers/screen.css -%%HORDIR%%/themes/graphics/administration.png -%%HORDIR%%/themes/graphics/alerts/error.png -%%HORDIR%%/themes/graphics/alerts/message.png -%%HORDIR%%/themes/graphics/alerts/success.png -%%HORDIR%%/themes/graphics/alerts/warning.png -%%HORDIR%%/themes/graphics/avatars/alien.jpg -%%HORDIR%%/themes/graphics/avatars/aly.jpg -%%HORDIR%%/themes/graphics/avatars/angryboy.gif -%%HORDIR%%/themes/graphics/avatars/ape.jpg -%%HORDIR%%/themes/graphics/avatars/au.jpg -%%HORDIR%%/themes/graphics/avatars/baby.gif -%%HORDIR%%/themes/graphics/avatars/barbarian.jpg -%%HORDIR%%/themes/graphics/avatars/bart.gif -%%HORDIR%%/themes/graphics/avatars/batman.gif -%%HORDIR%%/themes/graphics/avatars/bert.jpg -%%HORDIR%%/themes/graphics/avatars/bert2.jpg -%%HORDIR%%/themes/graphics/avatars/bobafett.gif -%%HORDIR%%/themes/graphics/avatars/boo.jpg -%%HORDIR%%/themes/graphics/avatars/boyandmower.gif -%%HORDIR%%/themes/graphics/avatars/boyandpc.gif -%%HORDIR%%/themes/graphics/avatars/bret.jpg -%%HORDIR%%/themes/graphics/avatars/bunny.gif -%%HORDIR%%/themes/graphics/avatars/charlie_brown.gif -%%HORDIR%%/themes/graphics/avatars/clown.jpg -%%HORDIR%%/themes/graphics/avatars/cocky.jpg -%%HORDIR%%/themes/graphics/avatars/devil.gif -%%HORDIR%%/themes/graphics/avatars/digimon.gif -%%HORDIR%%/themes/graphics/avatars/dilbert.gif -%%HORDIR%%/themes/graphics/avatars/dino.gif -%%HORDIR%%/themes/graphics/avatars/dog.gif -%%HORDIR%%/themes/graphics/avatars/duck.gif -%%HORDIR%%/themes/graphics/avatars/einstein.jpg -%%HORDIR%%/themes/graphics/avatars/elmerfudd.gif -%%HORDIR%%/themes/graphics/avatars/elmo.jpg -%%HORDIR%%/themes/graphics/avatars/evil.jpg -%%HORDIR%%/themes/graphics/avatars/female1.jpg -%%HORDIR%%/themes/graphics/avatars/female2.jpg -%%HORDIR%%/themes/graphics/avatars/franc.jpg -%%HORDIR%%/themes/graphics/avatars/fredflinstone.gif -%%HORDIR%%/themes/graphics/avatars/garfield.gif -%%HORDIR%%/themes/graphics/avatars/gopher.gif -%%HORDIR%%/themes/graphics/avatars/greenhead.gif -%%HORDIR%%/themes/graphics/avatars/gremlin.jpg -%%HORDIR%%/themes/graphics/avatars/grover.jpg -%%HORDIR%%/themes/graphics/avatars/homer.gif -%%HORDIR%%/themes/graphics/avatars/hump.jpg -%%HORDIR%%/themes/graphics/avatars/iceskatekid.gif -%%HORDIR%%/themes/graphics/avatars/jeri.jpg -%%HORDIR%%/themes/graphics/avatars/kid.gif -%%HORDIR%%/themes/graphics/avatars/kirk.jpg -%%HORDIR%%/themes/graphics/avatars/kryton.jpg -%%HORDIR%%/themes/graphics/avatars/linux.gif -%%HORDIR%%/themes/graphics/avatars/lisa.gif -%%HORDIR%%/themes/graphics/avatars/lovebird.gif -%%HORDIR%%/themes/graphics/avatars/male1.jpg -%%HORDIR%%/themes/graphics/avatars/male2.jpg -%%HORDIR%%/themes/graphics/avatars/man.jpg -%%HORDIR%%/themes/graphics/avatars/marge.gif -%%HORDIR%%/themes/graphics/avatars/maul.gif -%%HORDIR%%/themes/graphics/avatars/melon.jpg -%%HORDIR%%/themes/graphics/avatars/mib.gif -%%HORDIR%%/themes/graphics/avatars/monkey.jpg -%%HORDIR%%/themes/graphics/avatars/neo.jpg -%%HORDIR%%/themes/graphics/avatars/ninja.jpg -%%HORDIR%%/themes/graphics/avatars/paintingbird.gif -%%HORDIR%%/themes/graphics/avatars/picard.jpg -%%HORDIR%%/themes/graphics/avatars/puff.jpg -%%HORDIR%%/themes/graphics/avatars/redcreature.gif -%%HORDIR%%/themes/graphics/avatars/rei.jpg -%%HORDIR%%/themes/graphics/avatars/rei2.jpg -%%HORDIR%%/themes/graphics/avatars/ryu.gif -%%HORDIR%%/themes/graphics/avatars/sexy.gif -%%HORDIR%%/themes/graphics/avatars/smiley.gif -%%HORDIR%%/themes/graphics/avatars/smurfs.gif -%%HORDIR%%/themes/graphics/avatars/sonic.gif -%%HORDIR%%/themes/graphics/avatars/speedy.gif -%%HORDIR%%/themes/graphics/avatars/stan.jpg -%%HORDIR%%/themes/graphics/avatars/superman.gif -%%HORDIR%%/themes/graphics/avatars/sylvester.gif -%%HORDIR%%/themes/graphics/avatars/thomas.gif -%%HORDIR%%/themes/graphics/avatars/tigger.gif -%%HORDIR%%/themes/graphics/avatars/trin.jpg -%%HORDIR%%/themes/graphics/avatars/us.jpg -%%HORDIR%%/themes/graphics/avatars/vampire.jpg -%%HORDIR%%/themes/graphics/avatars/vampire2.jpg -%%HORDIR%%/themes/graphics/avatars/wacko.gif -%%HORDIR%%/themes/graphics/avatars/winnie.gif -%%HORDIR%%/themes/graphics/avatars/wizard.jpg -%%HORDIR%%/themes/graphics/avatars/wolverine.jpg -%%HORDIR%%/themes/graphics/avatars/woman.jpg -%%HORDIR%%/themes/graphics/avatars/woodie.jpg -%%HORDIR%%/themes/graphics/avatars/xena.gif -%%HORDIR%%/themes/graphics/az.png -%%HORDIR%%/themes/graphics/blank.gif -%%HORDIR%%/themes/graphics/block/down.png -%%HORDIR%%/themes/graphics/block/large_down.png -%%HORDIR%%/themes/graphics/block/large_left.png -%%HORDIR%%/themes/graphics/block/large_right.png -%%HORDIR%%/themes/graphics/block/large_up.png -%%HORDIR%%/themes/graphics/block/left.png -%%HORDIR%%/themes/graphics/block/moon/firstquarter.png -%%HORDIR%%/themes/graphics/block/moon/fullmoon.png -%%HORDIR%%/themes/graphics/block/moon/lastquarter.png -%%HORDIR%%/themes/graphics/block/moon/newmoon.png -%%HORDIR%%/themes/graphics/block/right.png -%%HORDIR%%/themes/graphics/block/sunrise/sunrise.png -%%HORDIR%%/themes/graphics/block/sunrise/sunset.png -%%HORDIR%%/themes/graphics/block/up.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/0.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/1.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/10.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/11.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/12.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/13.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/14.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/15.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/16.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/17.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/18.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/19.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/2.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/20.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/21.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/22.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/23.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/24.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/25.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/26.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/27.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/28.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/29.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/3.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/30.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/31.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/32.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/33.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/34.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/35.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/36.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/37.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/38.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/39.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/4.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/40.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/41.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/42.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/43.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/44.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/45.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/46.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/47.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/5.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/6.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/7.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/8.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/9.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/na.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/0.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/1.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/10.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/11.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/12.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/13.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/14.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/15.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/16.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/17.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/18.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/19.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/2.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/20.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/21.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/22.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/23.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/24.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/25.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/26.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/27.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/28.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/29.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/3.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/30.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/31.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/32.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/33.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/34.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/35.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/36.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/37.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/38.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/39.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/4.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/40.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/41.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/42.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/43.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/44.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/45.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/46.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/47.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/5.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/6.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/7.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/8.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/9.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/TWClogo_32px.png -%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/na.png -%%HORDIR%%/themes/graphics/block.png -%%HORDIR%%/themes/graphics/calendar.png -%%HORDIR%%/themes/graphics/close.png -%%HORDIR%%/themes/graphics/colorpicker.png -%%HORDIR%%/themes/graphics/colorscale.png -%%HORDIR%%/themes/graphics/config.png -%%HORDIR%%/themes/graphics/data.png -%%HORDIR%%/themes/graphics/datatree.png -%%HORDIR%%/themes/graphics/delete-small.png -%%HORDIR%%/themes/graphics/delete.png -%%HORDIR%%/themes/graphics/devel.png -%%HORDIR%%/themes/graphics/download.png -%%HORDIR%%/themes/graphics/edit-small.png -%%HORDIR%%/themes/graphics/edit.png -%%HORDIR%%/themes/graphics/emoticons/angel.png -%%HORDIR%%/themes/graphics/emoticons/angelwink.png -%%HORDIR%%/themes/graphics/emoticons/angry.png -%%HORDIR%%/themes/graphics/emoticons/annoyed.png -%%HORDIR%%/themes/graphics/emoticons/asleep.png -%%HORDIR%%/themes/graphics/emoticons/bigfrown.png -%%HORDIR%%/themes/graphics/emoticons/biggrin.png -%%HORDIR%%/themes/graphics/emoticons/blush.png -%%HORDIR%%/themes/graphics/emoticons/clown.png -%%HORDIR%%/themes/graphics/emoticons/confused.png -%%HORDIR%%/themes/graphics/emoticons/cool.png -%%HORDIR%%/themes/graphics/emoticons/coolgrin.png -%%HORDIR%%/themes/graphics/emoticons/cooltongue.png -%%HORDIR%%/themes/graphics/emoticons/dazed.png -%%HORDIR%%/themes/graphics/emoticons/devil.png -%%HORDIR%%/themes/graphics/emoticons/deviltongue.png -%%HORDIR%%/themes/graphics/emoticons/disappointed.png -%%HORDIR%%/themes/graphics/emoticons/embarrassed.png -%%HORDIR%%/themes/graphics/emoticons/enraged.png -%%HORDIR%%/themes/graphics/emoticons/frown.png -%%HORDIR%%/themes/graphics/emoticons/frustrated.png -%%HORDIR%%/themes/graphics/emoticons/grin.png -%%HORDIR%%/themes/graphics/emoticons/hangover.png -%%HORDIR%%/themes/graphics/emoticons/hippie.png -%%HORDIR%%/themes/graphics/emoticons/hippiegrin.png -%%HORDIR%%/themes/graphics/emoticons/hippietongue.png -%%HORDIR%%/themes/graphics/emoticons/hurt.png -%%HORDIR%%/themes/graphics/emoticons/indifferent.png -%%HORDIR%%/themes/graphics/emoticons/love.png -%%HORDIR%%/themes/graphics/emoticons/mad.png -%%HORDIR%%/themes/graphics/emoticons/mrt.png -%%HORDIR%%/themes/graphics/emoticons/punk.png -%%HORDIR%%/themes/graphics/emoticons/punkmohawk.png -%%HORDIR%%/themes/graphics/emoticons/punktongue.png -%%HORDIR%%/themes/graphics/emoticons/raspberry.png -%%HORDIR%%/themes/graphics/emoticons/sad.png -%%HORDIR%%/themes/graphics/emoticons/shout.png -%%HORDIR%%/themes/graphics/emoticons/smile.png -%%HORDIR%%/themes/graphics/emoticons/tired.png -%%HORDIR%%/themes/graphics/emoticons/tongueout.png -%%HORDIR%%/themes/graphics/emoticons/vampire.png -%%HORDIR%%/themes/graphics/emoticons/wink.png -%%HORDIR%%/themes/graphics/emoticons/winkgrin.png -%%HORDIR%%/themes/graphics/emoticons/winktongue.png -%%HORDIR%%/themes/graphics/emoticons/winktongueout.png -%%HORDIR%%/themes/graphics/emoticons/worried.png -%%HORDIR%%/themes/graphics/favicon.ico -%%HORDIR%%/themes/graphics/flags/af.png -%%HORDIR%%/themes/graphics/flags/al.png -%%HORDIR%%/themes/graphics/flags/am.png -%%HORDIR%%/themes/graphics/flags/an.png -%%HORDIR%%/themes/graphics/flags/ao.png -%%HORDIR%%/themes/graphics/flags/ar.png -%%HORDIR%%/themes/graphics/flags/at.png -%%HORDIR%%/themes/graphics/flags/au.png -%%HORDIR%%/themes/graphics/flags/aw.png -%%HORDIR%%/themes/graphics/flags/az.png -%%HORDIR%%/themes/graphics/flags/ba.png -%%HORDIR%%/themes/graphics/flags/bb.png -%%HORDIR%%/themes/graphics/flags/bd.png -%%HORDIR%%/themes/graphics/flags/be.png -%%HORDIR%%/themes/graphics/flags/bf.png -%%HORDIR%%/themes/graphics/flags/bg.png -%%HORDIR%%/themes/graphics/flags/bh.png -%%HORDIR%%/themes/graphics/flags/bi.png -%%HORDIR%%/themes/graphics/flags/bj.png -%%HORDIR%%/themes/graphics/flags/bm.png -%%HORDIR%%/themes/graphics/flags/bn.png -%%HORDIR%%/themes/graphics/flags/bo.png -%%HORDIR%%/themes/graphics/flags/br.png -%%HORDIR%%/themes/graphics/flags/bs.png -%%HORDIR%%/themes/graphics/flags/bt.png -%%HORDIR%%/themes/graphics/flags/bw.png -%%HORDIR%%/themes/graphics/flags/by.png -%%HORDIR%%/themes/graphics/flags/bz.png -%%HORDIR%%/themes/graphics/flags/ca.png -%%HORDIR%%/themes/graphics/flags/cf.png -%%HORDIR%%/themes/graphics/flags/cg.png -%%HORDIR%%/themes/graphics/flags/ch.png -%%HORDIR%%/themes/graphics/flags/ci.png -%%HORDIR%%/themes/graphics/flags/ck.png -%%HORDIR%%/themes/graphics/flags/cl.png -%%HORDIR%%/themes/graphics/flags/cm.png -%%HORDIR%%/themes/graphics/flags/cn.png -%%HORDIR%%/themes/graphics/flags/co.png -%%HORDIR%%/themes/graphics/flags/cr.png -%%HORDIR%%/themes/graphics/flags/cu.png -%%HORDIR%%/themes/graphics/flags/cv.png -%%HORDIR%%/themes/graphics/flags/cy.png -%%HORDIR%%/themes/graphics/flags/cz.png -%%HORDIR%%/themes/graphics/flags/de.png -%%HORDIR%%/themes/graphics/flags/dk.png -%%HORDIR%%/themes/graphics/flags/dz.png -%%HORDIR%%/themes/graphics/flags/ec.png -%%HORDIR%%/themes/graphics/flags/ee.png -%%HORDIR%%/themes/graphics/flags/eg.png -%%HORDIR%%/themes/graphics/flags/er.png -%%HORDIR%%/themes/graphics/flags/es.png -%%HORDIR%%/themes/graphics/flags/et.png -%%HORDIR%%/themes/graphics/flags/fi.png -%%HORDIR%%/themes/graphics/flags/fj.png -%%HORDIR%%/themes/graphics/flags/fo.png -%%HORDIR%%/themes/graphics/flags/fr.png -%%HORDIR%%/themes/graphics/flags/ga.png -%%HORDIR%%/themes/graphics/flags/ge.png -%%HORDIR%%/themes/graphics/flags/gi.png -%%HORDIR%%/themes/graphics/flags/gl.png -%%HORDIR%%/themes/graphics/flags/gp.png -%%HORDIR%%/themes/graphics/flags/gr.png -%%HORDIR%%/themes/graphics/flags/gt.png -%%HORDIR%%/themes/graphics/flags/gu.png -%%HORDIR%%/themes/graphics/flags/gy.png -%%HORDIR%%/themes/graphics/flags/hk.png -%%HORDIR%%/themes/graphics/flags/hr.png -%%HORDIR%%/themes/graphics/flags/ht.png -%%HORDIR%%/themes/graphics/flags/hu.png -%%HORDIR%%/themes/graphics/flags/id.png -%%HORDIR%%/themes/graphics/flags/ie.png -%%HORDIR%%/themes/graphics/flags/il.png -%%HORDIR%%/themes/graphics/flags/in.png -%%HORDIR%%/themes/graphics/flags/iq.png -%%HORDIR%%/themes/graphics/flags/ir.png -%%HORDIR%%/themes/graphics/flags/is.png -%%HORDIR%%/themes/graphics/flags/it.png -%%HORDIR%%/themes/graphics/flags/jm.png -%%HORDIR%%/themes/graphics/flags/jo.png -%%HORDIR%%/themes/graphics/flags/jp.png -%%HORDIR%%/themes/graphics/flags/ke.png -%%HORDIR%%/themes/graphics/flags/kg.png -%%HORDIR%%/themes/graphics/flags/kh.png -%%HORDIR%%/themes/graphics/flags/ki.png -%%HORDIR%%/themes/graphics/flags/kp.png -%%HORDIR%%/themes/graphics/flags/kr.png -%%HORDIR%%/themes/graphics/flags/ky.png -%%HORDIR%%/themes/graphics/flags/kz.png -%%HORDIR%%/themes/graphics/flags/lb.png -%%HORDIR%%/themes/graphics/flags/lc.png -%%HORDIR%%/themes/graphics/flags/lk.png -%%HORDIR%%/themes/graphics/flags/lt.png -%%HORDIR%%/themes/graphics/flags/lu.png -%%HORDIR%%/themes/graphics/flags/lv.png -%%HORDIR%%/themes/graphics/flags/ly.png -%%HORDIR%%/themes/graphics/flags/ma.png -%%HORDIR%%/themes/graphics/flags/mc.png -%%HORDIR%%/themes/graphics/flags/md.png -%%HORDIR%%/themes/graphics/flags/mg.png -%%HORDIR%%/themes/graphics/flags/mn.png -%%HORDIR%%/themes/graphics/flags/mo.png -%%HORDIR%%/themes/graphics/flags/mp.png -%%HORDIR%%/themes/graphics/flags/ms.png -%%HORDIR%%/themes/graphics/flags/mt.png -%%HORDIR%%/themes/graphics/flags/mx.png -%%HORDIR%%/themes/graphics/flags/my.png -%%HORDIR%%/themes/graphics/flags/mz.png -%%HORDIR%%/themes/graphics/flags/na.png -%%HORDIR%%/themes/graphics/flags/nc.png -%%HORDIR%%/themes/graphics/flags/nf.png -%%HORDIR%%/themes/graphics/flags/nl.png -%%HORDIR%%/themes/graphics/flags/no.png -%%HORDIR%%/themes/graphics/flags/np.png -%%HORDIR%%/themes/graphics/flags/nr.png -%%HORDIR%%/themes/graphics/flags/nz.png -%%HORDIR%%/themes/graphics/flags/om.png -%%HORDIR%%/themes/graphics/flags/pa.png -%%HORDIR%%/themes/graphics/flags/pe.png -%%HORDIR%%/themes/graphics/flags/pf.png -%%HORDIR%%/themes/graphics/flags/ph.png -%%HORDIR%%/themes/graphics/flags/pk.png -%%HORDIR%%/themes/graphics/flags/pl.png -%%HORDIR%%/themes/graphics/flags/pm.png -%%HORDIR%%/themes/graphics/flags/pr.png -%%HORDIR%%/themes/graphics/flags/pt.png -%%HORDIR%%/themes/graphics/flags/py.png -%%HORDIR%%/themes/graphics/flags/qa.png -%%HORDIR%%/themes/graphics/flags/ro.png -%%HORDIR%%/themes/graphics/flags/ru.png -%%HORDIR%%/themes/graphics/flags/sa.png -%%HORDIR%%/themes/graphics/flags/sb.png -%%HORDIR%%/themes/graphics/flags/sd.png -%%HORDIR%%/themes/graphics/flags/se.png -%%HORDIR%%/themes/graphics/flags/sg.png -%%HORDIR%%/themes/graphics/flags/si.png -%%HORDIR%%/themes/graphics/flags/sk.png -%%HORDIR%%/themes/graphics/flags/sl.png -%%HORDIR%%/themes/graphics/flags/so.png -%%HORDIR%%/themes/graphics/flags/sr.png -%%HORDIR%%/themes/graphics/flags/sy.png -%%HORDIR%%/themes/graphics/flags/tc.png -%%HORDIR%%/themes/graphics/flags/tg.png -%%HORDIR%%/themes/graphics/flags/th.png -%%HORDIR%%/themes/graphics/flags/tn.png -%%HORDIR%%/themes/graphics/flags/to.png -%%HORDIR%%/themes/graphics/flags/tp.png -%%HORDIR%%/themes/graphics/flags/tr.png -%%HORDIR%%/themes/graphics/flags/tt.png -%%HORDIR%%/themes/graphics/flags/tv.png -%%HORDIR%%/themes/graphics/flags/tw.png -%%HORDIR%%/themes/graphics/flags/tz.png -%%HORDIR%%/themes/graphics/flags/ua.png -%%HORDIR%%/themes/graphics/flags/ug.png -%%HORDIR%%/themes/graphics/flags/uk.png -%%HORDIR%%/themes/graphics/flags/us.png -%%HORDIR%%/themes/graphics/flags/uy.png -%%HORDIR%%/themes/graphics/flags/va.png -%%HORDIR%%/themes/graphics/flags/ve.png -%%HORDIR%%/themes/graphics/flags/vg.png -%%HORDIR%%/themes/graphics/flags/vi.png -%%HORDIR%%/themes/graphics/flags/vn.png -%%HORDIR%%/themes/graphics/flags/ws.png -%%HORDIR%%/themes/graphics/flags/ye.png -%%HORDIR%%/themes/graphics/flags/yu.png -%%HORDIR%%/themes/graphics/flags/za.png -%%HORDIR%%/themes/graphics/flags/zw.png -%%HORDIR%%/themes/graphics/google.png -%%HORDIR%%/themes/graphics/group.png -%%HORDIR%%/themes/graphics/help.png -%%HORDIR%%/themes/graphics/help_index.png -%%HORDIR%%/themes/graphics/hide_panel.png -%%HORDIR%%/themes/graphics/horde-power1.png -%%HORDIR%%/themes/graphics/horde-power2.png -%%HORDIR%%/themes/graphics/horde-power3.png -%%HORDIR%%/themes/graphics/horde.png -%%HORDIR%%/themes/graphics/image/crop.png -%%HORDIR%%/themes/graphics/image/flip.png -%%HORDIR%%/themes/graphics/image/grayscale.png -%%HORDIR%%/themes/graphics/image/mirror.png -%%HORDIR%%/themes/graphics/image/ratio.png -%%HORDIR%%/themes/graphics/image/refresh.png -%%HORDIR%%/themes/graphics/image/rotate-180.png -%%HORDIR%%/themes/graphics/image/rotate-270.png -%%HORDIR%%/themes/graphics/image/rotate-90.png -%%HORDIR%%/themes/graphics/info.png -%%HORDIR%%/themes/graphics/info_icon.png -%%HORDIR%%/themes/graphics/keyboard.png -%%HORDIR%%/themes/graphics/layout.png -%%HORDIR%%/themes/graphics/lhand.png -%%HORDIR%%/themes/graphics/locked.png -%%HORDIR%%/themes/graphics/login.png -%%HORDIR%%/themes/graphics/logout.png -%%HORDIR%%/themes/graphics/map.png -%%HORDIR%%/themes/graphics/map_eu.png -%%HORDIR%%/themes/graphics/mime/audio.png -%%HORDIR%%/themes/graphics/mime/binary.png -%%HORDIR%%/themes/graphics/mime/compressed.png -%%HORDIR%%/themes/graphics/mime/deb.png -%%HORDIR%%/themes/graphics/mime/encryption.png -%%HORDIR%%/themes/graphics/mime/html.png -%%HORDIR%%/themes/graphics/mime/icalendar.png -%%HORDIR%%/themes/graphics/mime/image.png -%%HORDIR%%/themes/graphics/mime/mail.png -%%HORDIR%%/themes/graphics/mime/msexcel.png -%%HORDIR%%/themes/graphics/mime/mspowerpoint.png -%%HORDIR%%/themes/graphics/mime/msword.png -%%HORDIR%%/themes/graphics/mime/ooo_calc.png -%%HORDIR%%/themes/graphics/mime/ooo_draw.png -%%HORDIR%%/themes/graphics/mime/ooo_impress.png -%%HORDIR%%/themes/graphics/mime/ooo_math.png -%%HORDIR%%/themes/graphics/mime/ooo_writer.png -%%HORDIR%%/themes/graphics/mime/pdf.png -%%HORDIR%%/themes/graphics/mime/php.png -%%HORDIR%%/themes/graphics/mime/rpm.png -%%HORDIR%%/themes/graphics/mime/script-js.png -%%HORDIR%%/themes/graphics/mime/source-c.png -%%HORDIR%%/themes/graphics/mime/source-cpp.png -%%HORDIR%%/themes/graphics/mime/source-h.png -%%HORDIR%%/themes/graphics/mime/source-java.png -%%HORDIR%%/themes/graphics/mime/source-python.png -%%HORDIR%%/themes/graphics/mime/text.png -%%HORDIR%%/themes/graphics/mime/vcard.png -%%HORDIR%%/themes/graphics/mime/video.png -%%HORDIR%%/themes/graphics/mime/xml.png -%%HORDIR%%/themes/graphics/mobile/bottom.jpg -%%HORDIR%%/themes/graphics/mobile/display.jpg -%%HORDIR%%/themes/graphics/mobile/left.jpg -%%HORDIR%%/themes/graphics/mobile/right.jpg -%%HORDIR%%/themes/graphics/mobile/top.jpg -%%HORDIR%%/themes/graphics/mobile.png -%%HORDIR%%/themes/graphics/myaccount.png -%%HORDIR%%/themes/graphics/nav/bottom-grey.png -%%HORDIR%%/themes/graphics/nav/bottom.png -%%HORDIR%%/themes/graphics/nav/down-grey.png -%%HORDIR%%/themes/graphics/nav/down.png -%%HORDIR%%/themes/graphics/nav/first-grey.png -%%HORDIR%%/themes/graphics/nav/first.png -%%HORDIR%%/themes/graphics/nav/last-grey.png -%%HORDIR%%/themes/graphics/nav/last.png -%%HORDIR%%/themes/graphics/nav/left-grey.png -%%HORDIR%%/themes/graphics/nav/left.png -%%HORDIR%%/themes/graphics/nav/right-grey.png -%%HORDIR%%/themes/graphics/nav/right.png -%%HORDIR%%/themes/graphics/nav/top-grey.png -%%HORDIR%%/themes/graphics/nav/top.png -%%HORDIR%%/themes/graphics/nav/up-grey.png -%%HORDIR%%/themes/graphics/nav/up.png -%%HORDIR%%/themes/graphics/office.png -%%HORDIR%%/themes/graphics/organizing.png -%%HORDIR%%/themes/graphics/perms.png -%%HORDIR%%/themes/graphics/prefs.png -%%HORDIR%%/themes/graphics/print.png -%%HORDIR%%/themes/graphics/problem.png -%%HORDIR%%/themes/graphics/reload.png -%%HORDIR%%/themes/graphics/required.png -%%HORDIR%%/themes/graphics/rhand.png -%%HORDIR%%/themes/graphics/save.png -%%HORDIR%%/themes/graphics/search.png -%%HORDIR%%/themes/graphics/shadow.gif -%%HORDIR%%/themes/graphics/shadow.png -%%HORDIR%%/themes/graphics/shell.png -%%HORDIR%%/themes/graphics/show_panel.png -%%HORDIR%%/themes/graphics/sql.png -%%HORDIR%%/themes/graphics/tab_bottom.gif -%%HORDIR%%/themes/graphics/tree/blank.png -%%HORDIR%%/themes/graphics/tree/folder.png -%%HORDIR%%/themes/graphics/tree/folderopen.png -%%HORDIR%%/themes/graphics/tree/join.png -%%HORDIR%%/themes/graphics/tree/joinbottom-down.png -%%HORDIR%%/themes/graphics/tree/joinbottom.png -%%HORDIR%%/themes/graphics/tree/leaf.png -%%HORDIR%%/themes/graphics/tree/line.png -%%HORDIR%%/themes/graphics/tree/minus.png -%%HORDIR%%/themes/graphics/tree/minusbottom.png -%%HORDIR%%/themes/graphics/tree/minusonly.png -%%HORDIR%%/themes/graphics/tree/minustop.png -%%HORDIR%%/themes/graphics/tree/nullonly.png -%%HORDIR%%/themes/graphics/tree/plus.png -%%HORDIR%%/themes/graphics/tree/plusbottom.png -%%HORDIR%%/themes/graphics/tree/plusonly.png -%%HORDIR%%/themes/graphics/tree/plustop.png -%%HORDIR%%/themes/graphics/tree/rev-join.png -%%HORDIR%%/themes/graphics/tree/rev-joinbottom-down.png -%%HORDIR%%/themes/graphics/tree/rev-joinbottom.png -%%HORDIR%%/themes/graphics/tree/rev-leaf.png -%%HORDIR%%/themes/graphics/tree/rev-line.png -%%HORDIR%%/themes/graphics/tree/rev-minus.png -%%HORDIR%%/themes/graphics/tree/rev-minusbottom.png -%%HORDIR%%/themes/graphics/tree/rev-minusonly.png -%%HORDIR%%/themes/graphics/tree/rev-minustop.png -%%HORDIR%%/themes/graphics/tree/rev-nullonly.png -%%HORDIR%%/themes/graphics/tree/rev-plus.png -%%HORDIR%%/themes/graphics/tree/rev-plusbottom.png -%%HORDIR%%/themes/graphics/tree/rev-plusonly.png -%%HORDIR%%/themes/graphics/tree/rev-plustop.png -%%HORDIR%%/themes/graphics/unlocked.png -%%HORDIR%%/themes/graphics/user.png -%%HORDIR%%/themes/graphics/website.png -%%HORDIR%%/themes/graphics/za.png -%%HORDIR%%/themes/green/info.php -%%HORDIR%%/themes/green/screen.css -%%HORDIR%%/themes/grey/info.php -%%HORDIR%%/themes/grey/screen.css -%%HORDIR%%/themes/hi-contrast/info.php -%%HORDIR%%/themes/hi-contrast/screen.css -%%HORDIR%%/themes/ideas/graphics/background.png -%%HORDIR%%/themes/ideas/graphics/left_menu_bottom.png -%%HORDIR%%/themes/ideas/graphics/left_menu_top.png -%%HORDIR%%/themes/ideas/graphics/menu_top.png -%%HORDIR%%/themes/ideas/info.php -%%HORDIR%%/themes/ideas/screen.css -%%HORDIR%%/themes/ie5mac.css -%%HORDIR%%/themes/ie6_or_less.css -%%HORDIR%%/themes/kolab/graphics/bg.png -%%HORDIR%%/themes/kolab/graphics/kolab.png -%%HORDIR%%/themes/kolab/graphics/kolablogo.png -%%HORDIR%%/themes/kolab/info.php -%%HORDIR%%/themes/kolab/screen.css -%%HORDIR%%/themes/lavander/info.php -%%HORDIR%%/themes/lavander/screen.css -%%HORDIR%%/themes/lightblue/graphics/menu.png -%%HORDIR%%/themes/lightblue/info.php -%%HORDIR%%/themes/lightblue/screen.css -%%HORDIR%%/themes/luc/graphics/currentTab_left.gif -%%HORDIR%%/themes/luc/graphics/currentTab_right.gif -%%HORDIR%%/themes/luc/graphics/tab_bottom.gif -%%HORDIR%%/themes/luc/graphics/tab_left.gif -%%HORDIR%%/themes/luc/graphics/tab_right.gif -%%HORDIR%%/themes/luc/info.php -%%HORDIR%%/themes/luc/screen.css -%%HORDIR%%/themes/lucblue/info.php -%%HORDIR%%/themes/lucblue/screen.css -%%HORDIR%%/themes/mobile/screen.css -%%HORDIR%%/themes/moz14.css -%%HORDIR%%/themes/mozilla/graphics/header.png -%%HORDIR%%/themes/mozilla/graphics/menu-active.png -%%HORDIR%%/themes/mozilla/graphics/menu.png -%%HORDIR%%/themes/mozilla/info.php -%%HORDIR%%/themes/mozilla/screen.css -%%HORDIR%%/themes/opera.css -%%HORDIR%%/themes/postnuke/info.php -%%HORDIR%%/themes/postnuke/screen.css -%%HORDIR%%/themes/print/screen.css -%%HORDIR%%/themes/purple/info.php -%%HORDIR%%/themes/purple/screen.css -%%HORDIR%%/themes/rtl.css -%%HORDIR%%/themes/safari.css -%%HORDIR%%/themes/screen.css -%%HORDIR%%/themes/simplex/graphics/background.png -%%HORDIR%%/themes/simplex/info.php -%%HORDIR%%/themes/simplex/screen.css -%%HORDIR%%/util/barcode.php -%%HORDIR%%/util/icon_browser.php -%%HORDIR%%/util/regex_test.php -@exec mkdir -p %D/%%HORDIR%%/lib/File/tests -@exec mkdir -p %D/%%HORDIR%%/lib/Horde/Text/tests -@exec mkdir -p %D/%%HORDIR%%/lib/Horde/docs/examples -@exec mkdir -p %D/%%HORDIR%%/lib/Horde/scripts -@exec mkdir -p %D/%%HORDIR%%/lib/Horde/tests -@exec mkdir -p %D/%%HORDIR%%/lib/Text/docs/examples -@exec mkdir -p %D/%%HORDIR%%/lib/Text/tests -@exec mkdir -p %D/%%HORDIR%%/lib/VFS/tests -@exec mkdir -p %D/%%HORDIR%%/lib/XML/docs/examples -@exec mkdir -p %D/%%HORDIR%%/lib/XML/tests -@exec mkdir -p %D/%%HORDIR%%/lib/data -@exec mkdir -p %D/%%HORDIR%%/lib/docs -@dirrm %%HORDIR%%/admin/locale/en_US -@dirrm %%HORDIR%%/admin/locale/fi_FI -@dirrm %%HORDIR%%/admin/locale/hu_HU -@dirrm %%HORDIR%%/admin/locale -@dirrm %%HORDIR%%/admin/perms -@dirrm %%HORDIR%%/admin/setup -@dirrm %%HORDIR%%/admin -@dirrmtry %%HORDIR%%/config -@dirrm %%HORDIR%%/js -@dirrm %%HORDIR%%/lib/Block -@dirrm %%HORDIR%%/lib/File/PDF/fonts -@dirrm %%HORDIR%%/lib/File/PDF -@dirrm %%HORDIR%%/lib/File/tests -@dirrm %%HORDIR%%/lib/File -@dirrm %%HORDIR%%/lib/Horde/Auth -@dirrm %%HORDIR%%/lib/Horde/Block/Layout -@dirrm %%HORDIR%%/lib/Horde/Block -@dirrm %%HORDIR%%/lib/Horde/Browser -@dirrm %%HORDIR%%/lib/Horde/Cache -@dirrm %%HORDIR%%/lib/Horde/Cipher/BlockMode -@dirrm %%HORDIR%%/lib/Horde/Cipher -@dirrm %%HORDIR%%/lib/Horde/Compress -@dirrm %%HORDIR%%/lib/Horde/Crypt -@dirrm %%HORDIR%%/lib/Horde/Data -@dirrm %%HORDIR%%/lib/Horde/DataTree -@dirrm %%HORDIR%%/lib/Horde/Editor -@dirrm %%HORDIR%%/lib/Horde/Form/Action -@dirrm %%HORDIR%%/lib/Horde/Form/Type -@dirrm %%HORDIR%%/lib/Horde/Form -@dirrm %%HORDIR%%/lib/Horde/Graph/Chart -@dirrm %%HORDIR%%/lib/Horde/Graph/Plot -@dirrm %%HORDIR%%/lib/Horde/Graph -@dirrm %%HORDIR%%/lib/Horde/Group -@dirrm %%HORDIR%%/lib/Horde/IMAP/ACL -@dirrm %%HORDIR%%/lib/Horde/IMAP -@dirrm %%HORDIR%%/lib/Horde/Image -@dirrm %%HORDIR%%/lib/Horde/MIME/Viewer/ooo -@dirrm %%HORDIR%%/lib/Horde/MIME/Viewer -@dirrm %%HORDIR%%/lib/Horde/MIME -@dirrm %%HORDIR%%/lib/Horde/Mobile/Renderer -@dirrm %%HORDIR%%/lib/Horde/Mobile -@dirrm %%HORDIR%%/lib/Horde/NLS -@dirrm %%HORDIR%%/lib/Horde/Notification/Listener -@dirrm %%HORDIR%%/lib/Horde/Notification -@dirrm %%HORDIR%%/lib/Horde/Perms -@dirrm %%HORDIR%%/lib/Horde/Prefs -@dirrm %%HORDIR%%/lib/Horde/RPC -@dirrm %%HORDIR%%/lib/Horde/SQL -@dirrm %%HORDIR%%/lib/Horde/Scheduler -@dirrm %%HORDIR%%/lib/Horde/SessionHandler -@dirrm %%HORDIR%%/lib/Horde/Text/Filter -@dirrm %%HORDIR%%/lib/Horde/Text/tests -@dirrm %%HORDIR%%/lib/Horde/Text -@dirrm %%HORDIR%%/lib/Horde/Token -@dirrm %%HORDIR%%/lib/Horde/Tree -@dirrm %%HORDIR%%/lib/Horde/UI/VarRenderer -@dirrm %%HORDIR%%/lib/Horde/UI -@dirrm %%HORDIR%%/lib/Horde/VC -@dirrm %%HORDIR%%/lib/Horde/docs/examples -@dirrm %%HORDIR%%/lib/Horde/docs -@dirrm %%HORDIR%%/lib/Horde/iCalendar -@dirrm %%HORDIR%%/lib/Horde/scripts -@dirrm %%HORDIR%%/lib/Horde/tests -@dirrm %%HORDIR%%/lib/Horde -@dirrm %%HORDIR%%/lib/Net/IMSP/Auth -@dirrm %%HORDIR%%/lib/Net/IMSP -@dirrm %%HORDIR%%/lib/Net/SMS -@dirrm %%HORDIR%%/lib/Net -@dirrm %%HORDIR%%/lib/SyncML/Command -@dirrm %%HORDIR%%/lib/SyncML/Device -@dirrm %%HORDIR%%/lib/SyncML -@dirrm %%HORDIR%%/lib/Text/Diff/Renderer -@dirrm %%HORDIR%%/lib/Text/Diff -@dirrm %%HORDIR%%/lib/Text/docs/examples -@dirrm %%HORDIR%%/lib/Text/docs -@dirrm %%HORDIR%%/lib/Text/reST/Formatter -@dirrm %%HORDIR%%/lib/Text/reST -@dirrm %%HORDIR%%/lib/Text/tests -@dirrm %%HORDIR%%/lib/Text -@dirrm %%HORDIR%%/lib/VFS/ISOWriter/RealInputStrategy -@dirrm %%HORDIR%%/lib/VFS/ISOWriter/RealOutputStrategy -@dirrm %%HORDIR%%/lib/VFS/ISOWriter -@dirrm %%HORDIR%%/lib/VFS/tests -@dirrm %%HORDIR%%/lib/VFS -@dirrm %%HORDIR%%/lib/XML/WBXML/DTD -@dirrm %%HORDIR%%/lib/XML/WBXML -@dirrm %%HORDIR%%/lib/XML/docs/examples -@dirrm %%HORDIR%%/lib/XML/docs -@dirrm %%HORDIR%%/lib/XML/tests -@dirrm %%HORDIR%%/lib/XML -@dirrmtry %%HORDIR%%/lib/data -@dirrm %%HORDIR%%/lib/docs -@dirrm %%HORDIR%%/lib -@dirrm %%HORDIR%%/locale/ar_SY/LC_MESSAGES -@dirrm %%HORDIR%%/locale/ar_SY -@dirrm %%HORDIR%%/locale/bg_BG/LC_MESSAGES -@dirrm %%HORDIR%%/locale/bg_BG -@dirrm %%HORDIR%%/locale/bs_BA/LC_MESSAGES -@dirrm %%HORDIR%%/locale/bs_BA -@dirrm %%HORDIR%%/locale/ca_ES/LC_MESSAGES -@dirrm %%HORDIR%%/locale/ca_ES -@dirrm %%HORDIR%%/locale/cs_CZ/LC_MESSAGES -@dirrm %%HORDIR%%/locale/cs_CZ -@dirrm %%HORDIR%%/locale/da_DK/LC_MESSAGES -@dirrm %%HORDIR%%/locale/da_DK -@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%HORDIR%%/locale/de_DE -@dirrm %%HORDIR%%/locale/el_GR/LC_MESSAGES -@dirrm %%HORDIR%%/locale/el_GR -@dirrm %%HORDIR%%/locale/en_US -@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%HORDIR%%/locale/es_ES -@dirrm %%HORDIR%%/locale/et_EE/LC_MESSAGES -@dirrm %%HORDIR%%/locale/et_EE -@dirrm %%HORDIR%%/locale/fa_IR/LC_MESSAGES -@dirrm %%HORDIR%%/locale/fa_IR -@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%HORDIR%%/locale/fi_FI -@dirrm %%HORDIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%HORDIR%%/locale/fr_FR -@dirrm %%HORDIR%%/locale/gl_ES/LC_MESSAGES -@dirrm %%HORDIR%%/locale/gl_ES -@dirrm %%HORDIR%%/locale/he_IL/LC_MESSAGES -@dirrm %%HORDIR%%/locale/he_IL -@dirrm %%HORDIR%%/locale/hu_HU/LC_MESSAGES -@dirrm %%HORDIR%%/locale/hu_HU -@dirrm %%HORDIR%%/locale/id_ID/LC_MESSAGES -@dirrm %%HORDIR%%/locale/id_ID -@dirrm %%HORDIR%%/locale/is_IS/LC_MESSAGES -@dirrm %%HORDIR%%/locale/is_IS -@dirrm %%HORDIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%HORDIR%%/locale/it_IT -@dirrm %%HORDIR%%/locale/ja_JP/LC_MESSAGES -@dirrm %%HORDIR%%/locale/ja_JP -@dirrm %%HORDIR%%/locale/km_KH/LC_MESSAGES -@dirrm %%HORDIR%%/locale/km_KH -@dirrm %%HORDIR%%/locale/ko_KR/LC_MESSAGES -@dirrm %%HORDIR%%/locale/ko_KR -@dirrm %%HORDIR%%/locale/lt_LT/LC_MESSAGES -@dirrm %%HORDIR%%/locale/lt_LT -@dirrm %%HORDIR%%/locale/lv_LV/LC_MESSAGES -@dirrm %%HORDIR%%/locale/lv_LV -@dirrm %%HORDIR%%/locale/mk_MK/LC_MESSAGES -@dirrm %%HORDIR%%/locale/mk_MK -@dirrm %%HORDIR%%/locale/nb_NO/LC_MESSAGES -@dirrm %%HORDIR%%/locale/nb_NO -@dirrm %%HORDIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%HORDIR%%/locale/nl_NL -@dirrm %%HORDIR%%/locale/nn_NO/LC_MESSAGES -@dirrm %%HORDIR%%/locale/nn_NO -@dirrm %%HORDIR%%/locale/pl_PL/LC_MESSAGES -@dirrm %%HORDIR%%/locale/pl_PL -@dirrm %%HORDIR%%/locale/pt_BR/LC_MESSAGES -@dirrm %%HORDIR%%/locale/pt_BR -@dirrm %%HORDIR%%/locale/pt_PT/LC_MESSAGES -@dirrm %%HORDIR%%/locale/pt_PT -@dirrm %%HORDIR%%/locale/ro_RO/LC_MESSAGES -@dirrm %%HORDIR%%/locale/ro_RO -@dirrm %%HORDIR%%/locale/ru_RU/LC_MESSAGES -@dirrm %%HORDIR%%/locale/ru_RU -@dirrm %%HORDIR%%/locale/sk_SK/LC_MESSAGES -@dirrm %%HORDIR%%/locale/sk_SK -@dirrm %%HORDIR%%/locale/sl_SI/LC_MESSAGES -@dirrm %%HORDIR%%/locale/sl_SI -@dirrm %%HORDIR%%/locale/sv_SE/LC_MESSAGES -@dirrm %%HORDIR%%/locale/sv_SE -@dirrm %%HORDIR%%/locale/tr_TR/LC_MESSAGES -@dirrm %%HORDIR%%/locale/tr_TR -@dirrm %%HORDIR%%/locale/uk_UA/LC_MESSAGES -@dirrm %%HORDIR%%/locale/uk_UA -@dirrm %%HORDIR%%/locale/zh_CN/LC_MESSAGES -@dirrm %%HORDIR%%/locale/zh_CN -@dirrm %%HORDIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%HORDIR%%/locale/zh_TW -@dirrm %%HORDIR%%/locale -@dirrm %%HORDIR%%/po -@dirrm %%HORDIR%%/scripts/ldap -@dirrm %%HORDIR%%/scripts/sql -@dirrm %%HORDIR%%/scripts/upgrades -@dirrm %%HORDIR%%/scripts -@dirrm %%HORDIR%%/services/download -@dirrm %%HORDIR%%/services/editor/htmlarea/images -@dirrm %%HORDIR%%/services/editor/htmlarea/lang -@dirrm %%HORDIR%%/services/editor/htmlarea/plugins/AnselImage/lang -@dirrm %%HORDIR%%/services/editor/htmlarea/plugins/AnselImage -@dirrm %%HORDIR%%/services/editor/htmlarea/plugins/ContextMenu/lang -@dirrm %%HORDIR%%/services/editor/htmlarea/plugins/ContextMenu -@dirrm %%HORDIR%%/services/editor/htmlarea/plugins/ListType/lang -@dirrm %%HORDIR%%/services/editor/htmlarea/plugins/ListType -@dirrm %%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img -@dirrm %%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/lang -@dirrm %%HORDIR%%/services/editor/htmlarea/plugins/TableOperations -@dirrm %%HORDIR%%/services/editor/htmlarea/plugins -@dirrm %%HORDIR%%/services/editor/htmlarea/popups -@dirrm %%HORDIR%%/services/editor/htmlarea -@dirrm %%HORDIR%%/services/editor -@dirrm %%HORDIR%%/services/help -@dirrm %%HORDIR%%/services/images -@dirrm %%HORDIR%%/services/obrowser -@dirrm %%HORDIR%%/services/portal -@dirrm %%HORDIR%%/services/prefs -@dirrm %%HORDIR%%/services/shares -@dirrm %%HORDIR%%/services -@dirrm %%HORDIR%%/templates/admin/groups -@dirrm %%HORDIR%%/templates/admin/setup -@dirrm %%HORDIR%%/templates/admin/user -@dirrm %%HORDIR%%/templates/admin -@dirrm %%HORDIR%%/templates/contents -@dirrm %%HORDIR%%/templates/data -@dirrm %%HORDIR%%/templates/help -@dirrm %%HORDIR%%/templates/index -@dirrm %%HORDIR%%/templates/javascript -@dirrm %%HORDIR%%/templates/login -@dirrm %%HORDIR%%/templates/maintenance -@dirrm %%HORDIR%%/templates/menu -@dirrm %%HORDIR%%/templates/portal -@dirrm %%HORDIR%%/templates/prefs -@dirrm %%HORDIR%%/templates/problem -@dirrm %%HORDIR%%/templates/rpcsum -@dirrm %%HORDIR%%/templates/shares -@dirrm %%HORDIR%%/templates/test -@dirrm %%HORDIR%%/templates -@dirrm %%HORDIR%%/themes/NeXTgrey -@dirrm %%HORDIR%%/themes/azur -@dirrm %%HORDIR%%/themes/barbie -@dirrm %%HORDIR%%/themes/bluemoon -@dirrm %%HORDIR%%/themes/bluewhite -@dirrm %%HORDIR%%/themes/brown -@dirrm %%HORDIR%%/themes/burntorange -@dirrm %%HORDIR%%/themes/camouflage/graphics -@dirrm %%HORDIR%%/themes/camouflage -@dirrm %%HORDIR%%/themes/cornflower/graphics -@dirrm %%HORDIR%%/themes/cornflower -@dirrm %%HORDIR%%/themes/gennevilliers -@dirrm %%HORDIR%%/themes/graphics/alerts -@dirrm %%HORDIR%%/themes/graphics/avatars -@dirrm %%HORDIR%%/themes/graphics/block/moon -@dirrm %%HORDIR%%/themes/graphics/block/sunrise -@dirrm %%HORDIR%%/themes/graphics/block/weatherdotcom/23x23 -@dirrm %%HORDIR%%/themes/graphics/block/weatherdotcom/32x32 -@dirrm %%HORDIR%%/themes/graphics/block/weatherdotcom -@dirrm %%HORDIR%%/themes/graphics/block -@dirrm %%HORDIR%%/themes/graphics/emoticons -@dirrm %%HORDIR%%/themes/graphics/flags -@dirrm %%HORDIR%%/themes/graphics/image -@dirrm %%HORDIR%%/themes/graphics/mime -@dirrm %%HORDIR%%/themes/graphics/mobile -@dirrm %%HORDIR%%/themes/graphics/nav -@dirrm %%HORDIR%%/themes/graphics/tree -@dirrm %%HORDIR%%/themes/graphics -@dirrm %%HORDIR%%/themes/green -@dirrm %%HORDIR%%/themes/grey -@dirrm %%HORDIR%%/themes/hi-contrast -@dirrm %%HORDIR%%/themes/ideas/graphics -@dirrm %%HORDIR%%/themes/ideas -@dirrm %%HORDIR%%/themes/kolab/graphics -@dirrm %%HORDIR%%/themes/kolab -@dirrm %%HORDIR%%/themes/lavander -@dirrm %%HORDIR%%/themes/lightblue/graphics -@dirrm %%HORDIR%%/themes/lightblue -@dirrm %%HORDIR%%/themes/luc/graphics -@dirrm %%HORDIR%%/themes/luc -@dirrm %%HORDIR%%/themes/lucblue -@dirrm %%HORDIR%%/themes/mobile -@dirrm %%HORDIR%%/themes/mozilla/graphics -@dirrm %%HORDIR%%/themes/mozilla -@dirrm %%HORDIR%%/themes/postnuke -@dirrm %%HORDIR%%/themes/print -@dirrm %%HORDIR%%/themes/purple -@dirrm %%HORDIR%%/themes/simplex/graphics -@dirrm %%HORDIR%%/themes/simplex -@dirrm %%HORDIR%%/themes -@dirrm %%HORDIR%%/util -@dirrmtry %%HORDIR%% -@dirrmtry %%HORBAS%% |