summaryrefslogtreecommitdiff
path: root/www/rt40
diff options
context:
space:
mode:
Diffstat (limited to 'www/rt40')
-rw-r--r--www/rt40/Makefile207
-rw-r--r--www/rt40/Makefile.cpan95
-rw-r--r--www/rt40/distinfo3
-rw-r--r--www/rt40/files/extra-patch-noportdocs-Makefile.in14
-rw-r--r--www/rt40/files/patch-Makefile.in58
-rw-r--r--www/rt40/files/patch-aclocal.m411
-rw-r--r--www/rt40/files/patch-config.layout36
-rw-r--r--www/rt40/files/patch-lib__RT.pm.in14
-rw-r--r--www/rt40/files/pkg-message.in29
-rw-r--r--www/rt40/pkg-deinstall20
-rw-r--r--www/rt40/pkg-descr13
-rw-r--r--www/rt40/pkg-install21
-rw-r--r--www/rt40/pkg-plist1315
13 files changed, 0 insertions, 1836 deletions
diff --git a/www/rt40/Makefile b/www/rt40/Makefile
deleted file mode 100644
index 664d110c9ea9..000000000000
--- a/www/rt40/Makefile
+++ /dev/null
@@ -1,207 +0,0 @@
-# New ports collection makefile for: rt38
-# Date created: 26 December 2008
-# Whom: Philip M. Gollucci <pgollucci@p6m7g8.com>
-#
-# $FreeBSD$
-
-# TODO:
-# o etc/rt38 files permissions
-# o GRANTS
-# o Schema
-# - Vhost Config
-# o install a sample into etc/apache22/Includes
-
-PORTNAME= rt
-PORTVERSION= 3.8.6
-PORTREVISION= 1
-CATEGORIES= www
-MASTER_SITES= http://download.bestpractical.com/pub/rt/release/ \
- ftp://ftp.eu.uu.net/pub/unix/ticketing/rt/release/
-
-MAINTAINER= skreuzer@FreeBSD.org
-COMMENT= RT is an industrial-grade ticketing system written in Perl
-
-.if defined(NOPORTDOCS)
-EXTRA_PATCHES+= ${FILESDIR}/extra-patch-noportdocs-Makefile.in
-.endif
-
-CONFLICTS= rt-2* rt-3.0* rt-3.2* rt-3.4* rt-3.6*
-LATEST_LINK= rt38
-
-OPTIONS= MYSQL "Enable MySQL backend" on \
- APACHE "Enable ${APACHE_PORT} server" on \
- MODPERL "Enable mod_perl support" on \
- POSTGRESQL "Enable Postgresql backend" off \
- ORACLE "Enable Oracle backend" off \
- SQLITE "Enable SQLite backend" off \
- DEV "Configure for Developers" off \
- STANDALONE "Enable standalone server" off \
- MODPERL2 "Enable mod_perl2 support" off \
- FASTCGI "Enable FastCGI support" off \
- GRAPHVIZ "Enable GraphViz charts" on
-
-.include "${.CURDIR}/Makefile.cpan"
-
-BUILD_DEPENDS+= ${CORE_DEPS} \
- ${CLI_DEPS} \
- ${DASHBOARD_DEPS} \
- ${GD_DEPS} \
- ${GPG_DEPS} \
- ${ICAL_DEPS} \
- ${MAILGATE_DEPS} \
- ${MASON_DEPS} \
- ${SMTP_DEPS}
-
-RUN_DEPENDS+= ${BUILD_DEPENDS}
-
-USE_PERL5= 5.8.3+
-USE_AUTOTOOLS= autoconf:262
-
-.include <bsd.port.pre.mk>
-
-.if defined(WITH_DEV)
-BUILD_DEPENDS+= ${DEV_DEPS}
-RUN_DEPENDS+= ${DEV_DEPS}
-.endif
-
-.if defined(WITH_STANDALONE)
-BUILD_DEPENDS+= ${STANDALONE_DEPS}
-RUN_DEPENDS+= ${STANDALONE_DEPS}
-.endif
-
-.if defined(WITH_APACHE) || defined(WITH_FASTCGI)
-USE_APACHE= 1.3+
-.endif
-
-.if defined(WITH_FASTCGI)
-BUILD_DEPENDS+= ${LOCALBASE}/${APACHEMODDIR}/mod_fastcgi.so:${PORTSDIR}/www/mod_fastcgi
-RUN_DEPENDS+= ${LOCALBASE}/${APACHEMODDIR}/mod_fastcgi.so:${PORTSDIR}/www/mod_fastcgi
-.endif
-
-.if defined(WITH_GRAPHVIZ)
-BUILD_DEPENDS+= ${GRAPVIZ_DEPS}
-RUN_DEPENDS+= ${GRAPVIZ_DEPS}
-.endif
-
-.if defined(WITH_MODPERL2)
-BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Apache2/Request.pm:${PORTSDIR}/www/p5-libapreq2 \
- ${SITE_PERL}/Apache/DBI.pm:${PORTSDIR}/www/p5-Apache-DBI-mp2
-RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Apache2/Request.pm:${PORTSDIR}/www/p5-libapreq2 \
- ${SITE_PERL}/Apache/DBI.pm:${PORTSDIR}/www/p5-Apache-DBI-mp2
-.endif
-
-.if defined(WITH_MODPERL)
-BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Apache/Request.pm:${PORTSDIR}/www/p5-libapreq \
- ${SITE_PERL}/Apache/DBI.pm:${PORTSDIR}/www/p5-Apache-DBI-mp1
-RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Apache/Request.pm:${PORTSDIR}/www/p5-libapreq \
- ${SITE_PERL}/Apache/DBI.pm:${PORTSDIR}/www/p5-Apache-DBI-mp1
-.endif
-
-.if !defined(WITHOUT_MYSQL)
-DB_TYPE= mysql
-USE_MYSQL= yes
-BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/mysql.pm:${PORTSDIR}/databases/p5-DBD-mysql
-RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/mysql.pm:${PORTSDIR}/databases/p5-DBD-mysql
-.elif defined(WITH_POSTGRESQL)
-DB_TYPE= Pg
-USE_PGSQL= yes
-BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-Pg
-RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-Pg
-.elif defined (WITH_SQLITE)
-DB_TYPE= SQLite
-USE_SQLITE= yes
-BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/SQLite.pm:${PORTSDIR}/databases/p5-DBD-SQLite
-RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/SQLite.pm:${PORTSDIR}/databases/p5-DBD-SQLite
-.elif defined (WITH_ORACLE)
-DB_TYPE= Oracle
-BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/Oracle.pm:${PORTSDIR}/databases/p5-DBD-Oracle
-RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/Oracle.pm:${PORTSDIR}/databases/p5-DBD-Oracle
-.else
-IGNORE= you must choose a database backend
-.endif
-
-### Only 1 Backend
-#.if (defined(WITH_MYSQL) && (defined(WITH_POSTGRESQL) || defined(WITH_SQLITE) || defined(WITH_ORACLE))) ||
-# (defined(WITH_POSTGRESQL) && (defined(WITH_MYSQL) || defined(WITH_SQLITE) || defined(WITH_ORACLE))) ||
-# (defined(WITH_SQLITE) && (defined(WITH_MYSQL) || defined(WITH_POSTGRELSQL) || defined(WITH_ORACLE))) ||
-# (defined(WITH_ORACLE) && (defined(WITH_MYSQL) || defined(WITH_POSTGRELSQL) || defined(WITH_SQLITE)))
-#IGNORE= Select exactly one of WITH_MYSQL, WITH_POSTGRESQL, WITH_SQLITE, WITH_ORACLE
-#.endif
-
-### MODPERL or MODPERL2
-.if defined(WITH_MODPERL) && defined(WITH_MODPERL2)
-IGNORE= options WITH_MODPERL and WITH_MODPERL2 are mutually exclusive
-.endif
-
-RT_ETC_PATH?= ${LOCALBASE}/etc/${PORTNAME}38
-RT_LAYOUT= FreeBSD
-DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}38
-
-DB_DBA_USER?= root
-DB_DBA_PASSWORD?=
-DB_USER?= rt_user
-DB_PASSWORD?= rt_pass
-DB_HOST?= localhost
-DB_DATABASE?= rt3
-
-WEB_USER?= ${WWWOWN}
-WEB_GROUP?= ${WWWGRP}
-LIBS_GROUP?= wheel
-
-LATEST_LINK= rt38
-HAS_CONFIGURE= yes
-NO_BUILD= yes
-
-CONFIGURE_ARGS= --enable-layout=${RT_LAYOUT} \
- --with-web-user=${WEB_USER} \
- --with-web-group=${WEB_GROUP} \
- --with-libs-group=${LIBS_GROUP} \
- --with-db-host=${DB_HOST} \
- --with-db-port=${DB_PORT} \
- --with-db-type=${DB_TYPE} \
- --with-db-rt-user=${DB_USER} \
- --with-db-rt-pass=${DB_PASSWORD} \
- --with-db-database=${DB_DATABASE} \
- --with-db-dba=${DB_DBA_USER}
-
-PKGMESSAGE= ${WRKDIR}/pkg-message
-SUB_FILES= pkg-message
-SUB_LIST= RT_ETC_PATH=${RT_ETC_PATH}
-
-run-autotools:: run-autotools-autoconf
-
-pre-fetch:
- @${ECHO} ""
- @${ECHO} " DB_TYPE=type mysql, Oracle, Pg or SQLite (mysql)"
- @${ECHO} " DB_HOST=hostname The database host (localhost)"
- @${ECHO} " DB_PORT=port The database port"
- @${ECHO} " DB_DATABASE=dbname The database name (rt3)"
- @${ECHO} ""
- @${ECHO} " DB_DBA_USER=username Name of database administrator (root)"
- @${ECHO} " DB_DBA_PASSWORD=password Password of database administrator"
- @${ECHO} " DB_USER=username Name of database user for RT (rt_user)"
- @${ECHO} " DB_PASSWORD=password Name of database password for RT (rt_pass)"
-.if defined(WITH_SQLITE)
- @${ECHO} ""
- @${ECHO} "SQLITE is not recommended for production use"
-.endif
-
-post-patch:
- @${RM} -f ${WRKSRC}/lib/RT.pm.in.orig
- @${REINPLACE_CMD} -e 's!%%PREFIX%%!${PREFIX}!g' ${WRKSRC}/config.layout
- @${REINPLACE_CMD} -e 's!%%SITE_PERL%%!${SITE_PERL}!g' ${WRKSRC}/config.layout
- @${REINPLACE_CMD} -e 's!/path/to/your/etc!${RT_ETC_PATH}!g' ${WRKSRC}/etc/RT_SiteConfig.pm
- @${REINPLACE_CMD} -e 's!/bin:/usr/bin!/bin:/usr/bin:${LOCALBASE}/bin!' ${WRKSRC}/bin/webmux.pl.in
- @${REINPLACE_CMD} -e 's!/bin:/usr/bin!/bin:/usr/bin:${LOCALBASE}/bin!' ${WRKSRC}/lib/RT/Interface/CLI.pm && \
- ${RM} ${WRKSRC}/lib/RT/Interface/CLI.pm.bak
-
-pre-install:
- @${RM} -f ${WRKSRC}/lib/RT.pm.in
- @${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
-
-post-install:
- @[ -f ${RT_ETC_PATH}/RT_SiteConfig.pm ] || \
- ${CP} -p ${RT_ETC_PATH}/RT_SiteConfig.pm-dist ${RT_ETC_PATH}/RT_SiteConfig.pm
- ${CAT} ${PKGMESSAGE}
-
-.include <bsd.port.post.mk>
diff --git a/www/rt40/Makefile.cpan b/www/rt40/Makefile.cpan
deleted file mode 100644
index f84723ae63fa..000000000000
--- a/www/rt40/Makefile.cpan
+++ /dev/null
@@ -1,95 +0,0 @@
-##########################################################################################################
-### File::Find 1.10 core
-### File::Glob 1.05 core
-### File::Spec 3.12 0.08 core
-### Pod::Usage 1.33 core
-### Scalar::Util 1.18 core
-### Text::ParseWords 3.24 core
-
-CLI_DEPS= p5-Term-ReadKey>=2.30:${PORTSDIR}/devel/p5-Term-ReadKey \
- p5-Getopt-Long>=2.24:${PORTSDIR}/devel/p5-Getopt-Long \
- p5-libwww>=5.823:${PORTSDIR}/www/p5-libwww \
- p5-ReadLine-Perl>=1.0302:${PORTSDIR}/devel/p5-ReadLine-Perl \
- p5-Net-SSLeay>=1.35:${PORTSDIR}/security/p5-Net-SSLeay
-
-CORE_DEPS= p5-Encode>=2.13:${PORTSDIR}/converters/p5-Encode \
- p5-Class-ReturnValue>=0.55:${PORTSDIR}/devel/p5-Class-ReturnValue \
- p5-Text-Quoted>=2.05:${PORTSDIR}/textproc/p5-Text-Quoted \
- p5-CSS-Squish>=0.07:${PORTSDIR}/textproc/p5-CSS-Squish \
- p5-Module-Versions-Report>=1.05:${PORTSDIR}/devel/p5-Module-Versions-Report \
- p5-Devel-StackTrace>=1.19:${PORTSDIR}/devel/p5-Devel-StackTrace \
- p5-Digest-MD5>=2.27:${PORTSDIR}/security/p5-Digest-MD5 \
- p5-File-Temp>=0.18:${PORTSDIR}/devel/p5-File-Temp \
- p5-Tree-Simple>=1.04:${PORTSDIR}/devel/p5-Tree-Simple \
- p5-HTML-Scrubber>=0.08:${PORTSDIR}/www/p5-HTML-Scrubber \
- p5-DBIx-SearchBuilder>=1.53:${PORTSDIR}/databases/p5-DBIx-SearchBuilder \
- p5-Mail-Tools>=1.57:${PORTSDIR}/mail/p5-Mail-Tools \
- p5-File-ShareDir>=1.00:${PORTSDIR}/devel/p5-File-ShareDir \
- p5-Cache-Simple-TimedExpiry>=0.27:${PORTSDIR}/devel/p5-Cache-Simple-TimedExpiry \
- ${SITE_PERL}/Log/Dispatch.pm:${PORTSDIR}/devel/p5-Log-Dispatch \
- ${SITE_PERL}/Email/Address.pm:${PORTSDIR}/mail/p5-Email-Address \
- ${SITE_PERL}/${PERL_ARCH}/HTML/Parser.pm:${PORTSDIR}/www/p5-HTML-Parser \
- ${SITE_PERL}/MIME/Entity.pm:${PORTSDIR}/mail/p5-MIME-Tools \
- ${SITE_PERL}/Locale/Maketext/Lexicon.pm:${PORTSDIR}/devel/p5-Locale-Maketext-Lexicon \
- ${SITE_PERL}/Time/ParseDate.pm:${PORTSDIR}/devel/p5-Time-modules \
- ${SITE_PERL}/Locale/Maketext.pm:${PORTSDIR}/devel/p5-Locale-Maketext \
- ${SITE_PERL}/Text/Template.pm:${PORTSDIR}/textproc/p5-Text-Template \
- ${SITE_PERL}/Calendar/Simple.pm:${PORTSDIR}/devel/p5-Calendar-Simple \
- ${SITE_PERL}/Regexp/Common.pm:${PORTSDIR}/textproc/p5-Regexp-Common \
- ${SITE_PERL}/Locale/Maketext/Fuzzy.pm:${PORTSDIR}/devel/p5-Locale-Maketext-Fuzzy \
- ${SITE_PERL}/${PERL_ARCH}/Time/HiRes.pm:${PORTSDIR}/devel/p5-Time-HiRes \
- ${SITE_PERL}/Text/Wrapper.pm:${PORTSDIR}/textproc/p5-Text-Wrapper \
- ${SITE_PERL}/UNIVERSAL/require.pm:${PORTSDIR}/devel/p5-UNIVERSAL-require \
- ${SITE_PERL}/Test/Warn.pm:${PORTSDIR}/devel/p5-Test-Warn \
- p5-Parse-BooleanLogic>=0.09:${PORTSDIR}/textproc/p5-Parse-BooleanLogic
-
-DASHBOARD_DEPS= p5-MIME-Types>=1.25:${PORTSDIR}/mail/p5-MIME-Types \
- p5-HTML-RewriteAttributes>=0.02:${PORTSDIR}/textproc/p5-HTML-RewriteAttributes
-
-DEV_DEPS= ${SITE_PERL}/Log/Dispatch/Perl.pm:${PORTSDIR}/devel/p5-Log-Dispatch-Perl \
- ${SITE_PERL}/Test/Deep.pm:${PORTSDIR}/devel/p5-Test-Deep \
- ${SITE_PERL}/LWP.pm:${PORTSDIR}/www/p5-libwww \
- ${SITE_PERL}/Module/Refresh>=0.03:${PORTSDIR}/devel/p5-Module-Refresh \
- ${SITE_PERL}/String/ShellQuote.pm:${PORTSDIR}/devel/p5-String-ShellQuote \
- ${SITE_PERL}/WWW/Mechanize.pm:${PORTSDIR}/www/p5-WWW-Mechanize \
- ${SITE_PERL}/IPC/Run3.pm:${PORTSDIR}/devel/p5-IPC-Run3 \
- ${SITE_PERL}/${PERL_ARCH}/XML/Simple.pm:${PORTSDIR}/textproc/p5-XML-Simple \
- ${SITE_PERL}/Test/Expect.pm>=0.31:${PORTSDIR}/devel/p5-Test-Expect \
- ${SITE_PERL}/Test/WWW/Mechanize.pm>=1.04:${PORTSDIR}/devel/p5-Test-WWW-Mechanize \
- ${SITE_PERL}/Test/HTTP/Server/Simple.pm>=0.09:${PORTSDIR}/www/p5-Test-HTTP-Server-Simple \
- ${SITE_PERL}/Test/Simple.pm>=0.77:${PORTSDIR}/devel/p5-Test-Simple
-
-GD_DEPS= ${SITE_PERL}/${PERL_ARCH}/GD.pm:${PORTSDIR}/graphics/p5-GD \
- ${SITE_PERL}/GD/Text.pm:${PORTSDIR}/graphics/p5-GD-TextUtil \
- ${SITE_PERL}/GD/Graph.pm:${PORTSDIR}/graphics/p5-GD-Graph
-
-GPG_DEPS= ${SITE_PERL}/${PERL_ARCH}/PerlIO/eol.pm:${PORTSDIR}/devel/p5-PerlIO-eol \
- ${SITE_PERL}/GnuPG/Interface.pm:${PORTSDIR}/security/p5-GnuPG-Interface
-
-GRAPHVIZ_DEPS= ${SITE_PERL}/IPC/Run.pm:${PORTSDIR}/devel/p5-IPC-Run \
- ${SITE_PERL}/GraphViz.pm:${PORTSDIR}/graphics/p5-GraphViz
-
-ICAL_DEPS= ${SITE_PERL}/Data/ICal.pm:${PORTSDIR}/deskutils/p5-Data-ICal
-
-MAILGATE_DEPS= ${SITE_PERL}/HTML/TreeBuilder.pm:${PORTSDIR}/www/p5-HTML-Tree \
- ${SITE_PERL}/Getopt/Long.pm:${PORTSDIR}/devel/p5-Getopt-Long \
- ${SITE_PERL}/HTML/FormatText.pm:${PORTSDIR}/textproc/p5-HTML-Format \
- ${SITE_PERL}/LWP.pm:${PORTSDIR}/www/p5-libwww
-
-MASON_DEPS= p5-Storable>=2.08:${PORTSDIR}/devel/p5-Storable \
- p5-CSS-Squish>=0.07:${PORTSDIR}/textproc/p5-CSS-Squish \
- p5-Text-WikiFormat>=0.79:${PORTSDIR}/textproc/p5-Text-WikiFormat \
- p5-Digest-MD5>=2.27:${PORTSDIR}/security/p5-Digest-MD5 \
- p5-Errno>=1.10:${PORTSDIR}/devel/p5-Errno \
- p5-Apache-Session>=1.53:${PORTSDIR}/www/p5-Apache-Session \
- p5-Devel-StackTrace>=1.19:${PORTSDIR}/devel/p5-Devel-StackTrace \
- p5-CGI.pm>=1.20:${PORTSDIR}/www/p5-CGI.pm \
- p5-Text-WikiFormat>=0.76:${PORTSDIR}/textproc/p5-Text-WikiFormat \
- p5-XML-RSS>=1.05:${PORTSDIR}/textproc/p5-XML-RSS \
- p5-HTML-Mason>=1.36:${PORTSDIR}/www/p5-HTML-Mason
-
-SMTP_DEPS= p5-Net>=1.22:${PORTSDIR}/net/p5-Net
-
-STANDALONE_DEPS= p5-Net-Server>=0.97:${PORTSDIR}/net/p5-Net-Server \
- p5-HTTP-Server-Simple>=0.34:${PORTSDIR}/www/p5-HTTP-Server-Simple \
- p5-HTTP-Server-Simple-Mason>=0.09:${PORTSDIR}/www/p5-HTTP-Server-Simple-Mason
diff --git a/www/rt40/distinfo b/www/rt40/distinfo
deleted file mode 100644
index d7a31122444c..000000000000
--- a/www/rt40/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (rt-3.8.6.tar.gz) = 522f93e39c6978ba9f49efa00eb5621e
-SHA256 (rt-3.8.6.tar.gz) = d909c9695958c5fd020c3454a92730517e74c4fff1484ff291ad1eaebd746112
-SIZE (rt-3.8.6.tar.gz) = 3363499
diff --git a/www/rt40/files/extra-patch-noportdocs-Makefile.in b/www/rt40/files/extra-patch-noportdocs-Makefile.in
deleted file mode 100644
index 8f2e2547e525..000000000000
--- a/www/rt40/files/extra-patch-noportdocs-Makefile.in
+++ /dev/null
@@ -1,14 +0,0 @@
---- Makefile.in 2008-12-27 01:07:12.000000000 -0500
-+++ /home/pgollucci/Makefile.in 2008-12-27 01:06:35.000000000 -0500
-@@ -419,10 +419,7 @@
-
- # {{{ doc-install
- doc-install:
--@COMMENT_INPLACE_LAYOUT@ # RT 3.0.0 - RT 3.0.2 would accidentally create a file instead of a dir
--@COMMENT_INPLACE_LAYOUT@ -[ -f $(DESTDIR)$(RT_DOC_PATH) ] && rm $(DESTDIR)$(RT_DOC_PATH)
--@COMMENT_INPLACE_LAYOUT@ [ -d $(DESTDIR)$(RT_DOC_PATH) ] || $(INSTALL) -m 0755 -d $(DESTDIR)$(RT_DOC_PATH)
--@COMMENT_INPLACE_LAYOUT@ -$(INSTALL) -m 0644 ./README $(DESTDIR)$(RT_DOC_PATH)/
-+@COMMENT_INPLACE_LAYOUT@ /usr/bin/true
- # }}}
-
- # {{{ etc-install
diff --git a/www/rt40/files/patch-Makefile.in b/www/rt40/files/patch-Makefile.in
deleted file mode 100644
index b622e9aa2416..000000000000
--- a/www/rt40/files/patch-Makefile.in
+++ /dev/null
@@ -1,58 +0,0 @@
---- Makefile.in.orig 2009-12-04 17:30:18.000000000 -0500
-+++ Makefile.in 2009-12-04 17:33:01.000000000 -0500
-@@ -58,7 +58,7 @@
-
- CONFIG_FILE_PATH = @CONFIG_FILE_PATH_R@
- CONFIG_FILE = $(CONFIG_FILE_PATH)/RT_Config.pm
--SITE_CONFIG_FILE = $(CONFIG_FILE_PATH)/RT_SiteConfig.pm
-+SITE_CONFIG_FILE = $(CONFIG_FILE_PATH)/RT_SiteConfig.pm-dist
-
-
- RT_VERSION_MAJOR = @RT_VERSION_MAJOR@
-@@ -107,7 +107,7 @@
- RT_VAR_PATH = @RT_VAR_PATH_R@
- RT_DOC_PATH = @RT_DOC_PATH_R@
- RT_LOCAL_PATH = @RT_LOCAL_PATH_R@
--LOCAL_PLUGIN_PATH = @RT_LOCAL_PATH_R@/plugins
-+LOCAL_PLUGIN_PATH = @RT_LOCAL_PATH_R@/share/rt38/plugins
- LOCAL_ETC_PATH = @LOCAL_ETC_PATH_R@
- LOCAL_LIB_PATH = @LOCAL_LIB_PATH_R@
- LOCAL_LEXICON_PATH = @LOCAL_LEXICON_PATH_R@
-@@ -282,9 +282,9 @@
- @echo " $(RT_SBIN_PATH)/rt-setup-database --dba $(DB_DBA) --prompt-for-dba-password --action upgrade"
-
-
--upgrade: testdeps config-install dirs files-install fixperms upgrade-instruct
-+upgrade: config-install dirs files-install fixperms upgrade-instruct
-
--upgrade-noclobber: config-install dirs libs-install html-install bin-install local-install doc-install fixperms
-+upgrade-noclobber: config-install dirs libs-install html-install bin-install local-install doc-install
-
-
- # {{{ dependencies
-@@ -302,13 +302,6 @@
-
- # {{{ fixperms
- fixperms:
-- # Make the libraries readable
-- chmod $(RT_READABLE_DIR_MODE) $(DESTDIR)$(RT_PATH)
-- chown -R $(LIBS_OWNER) $(DESTDIR)$(RT_LIB_PATH)
-- chgrp -R $(LIBS_GROUP) $(DESTDIR)$(RT_LIB_PATH)
-- chmod -R u+rwX,go-w,go+rX $(DESTDIR)$(RT_LIB_PATH)
--
--
- chmod $(RT_READABLE_DIR_MODE) $(DESTDIR)$(RT_BIN_PATH)
-
- chmod 0755 $(DESTDIR)$(RT_ETC_PATH)
-@@ -362,9 +355,9 @@
- $(INSTALL) -m 0755 -d $(DESTDIR)$(LOCAL_LEXICON_PATH)
- # }}}
-
--install: testdeps config-install dirs files-install fixperms instruct
-+install: config-install dirs files-install fixperms instruct
-
--files-install: libs-install etc-install config-install bin-install sbin-install html-install local-install doc-install
-+files-install: libs-install etc-install config-install bin-install sbin-install html-install doc-install
-
- config-install:
- @COMMENT_INPLACE_LAYOUT@ $(INSTALL) -m 0755 -o $(BIN_OWNER) -g $(RTGROUP) -d $(DESTDIR)$(CONFIG_FILE_PATH)
diff --git a/www/rt40/files/patch-aclocal.m4 b/www/rt40/files/patch-aclocal.m4
deleted file mode 100644
index 9eeacc6bfec5..000000000000
--- a/www/rt40/files/patch-aclocal.m4
+++ /dev/null
@@ -1,11 +0,0 @@
---- ./aclocal.m4.orig 2008-08-21 05:16:36.000000000 +0000
-+++ ./aclocal.m4 2008-08-21 05:16:44.000000000 +0000
-@@ -79,7 +79,7 @@
- s/^#.*$//m;
- s/^\s+//gim;
- s/\s+$/\n/gim;
-- s/\+$/\/rt3/gim;
-+ s/\+$/\/rt38/gim;
- # m4 will not let us just use $1, we need @S|@1
- s/^\s*((?:bin|sbin|libexec|data|sysconf|sharedstate|localstate|lib|include|oldinclude|info|man|html)dir)\s*:\s*(.*)$/@S|@1=@S|@2/gim;
- s/^\s*(.*?)\s*:\s*(.*)$/\(test "x\@S|@@S|@1" = "xNONE" || test "x\@S|@@S|@1" = "x") && @S|@1=@S|@2/gim;
diff --git a/www/rt40/files/patch-config.layout b/www/rt40/files/patch-config.layout
deleted file mode 100644
index 5da101cb4f94..000000000000
--- a/www/rt40/files/patch-config.layout
+++ /dev/null
@@ -1,36 +0,0 @@
---- config.layout.orig 2008-08-18 11:13:57.000000000 -0400
-+++ config.layout 2009-01-21 10:35:34.000000000 -0500
-@@ -85,25 +85,26 @@
- </Layout>
-
- <Layout FreeBSD>
-- prefix: /usr/local
-+ prefix: %%PREFIX%%
- exec_prefix: ${prefix}
- bindir: ${exec_prefix}/bin
- sbindir: ${exec_prefix}/sbin
- sysconfdir: ${prefix}/etc+
- mandir: ${prefix}/man
-- libdir: ${prefix}/lib+
-+ libdir: %%SITE_PERL%%
- datadir: ${prefix}/share+
- htmldir: ${datadir}/html
-+ sharedir: ${prefix}/share+
- manualdir: ${prefix}/share/doc+
- logfiledir: /var/log
- localstatedir: /var/run+
- masonstatedir: ${localstatedir}/mason_data
- sessionstatedir: ${localstatedir}/session_data
-- customdir: ${prefix}/share+
-- custometcdir: ${customdir}/local/etc
-- customhtmldir: ${customdir}/local/html
-- customlexdir: ${customdir}/local/po
-- customlibdir: ${customdir}/local/lib
-+ customdir: ${prefix}
-+ custometcdir: ${datadir}/etc
-+ customhtmldir: ${customdir}/www+
-+ customlexdir: ${datadir}/po
-+ customlibdir: ${datadir}/lib
- </Layout>
-
- <Layout Win32>
diff --git a/www/rt40/files/patch-lib__RT.pm.in b/www/rt40/files/patch-lib__RT.pm.in
deleted file mode 100644
index fc0fd75ddfdd..000000000000
--- a/www/rt40/files/patch-lib__RT.pm.in
+++ /dev/null
@@ -1,14 +0,0 @@
---- ./lib/RT.pm.in.orig 2008-08-18 11:14:11.000000000 -0400
-+++ ./lib/RT.pm.in 2008-12-28 23:13:17.000000000 -0500
-@@ -70,8 +70,10 @@
- our $LocalEtcPath = '@LOCAL_ETC_PATH@';
- our $LocalLibPath = '@LOCAL_LIB_PATH@';
- our $LocalLexiconPath = '@LOCAL_LEXICON_PATH@';
--our $LocalPluginPath = $LocalPath."/plugins";
-+our $LocalPluginPath = $LocalPath."/share/rt38/plugins";
-
-+## For FreeBSD p5-RT* ports
-+our $LocalHtmlPath = '@MASON_HTML_PATH@';
-
- # $MasonComponentRoot is where your rt instance keeps its mason html files
-
diff --git a/www/rt40/files/pkg-message.in b/www/rt40/files/pkg-message.in
deleted file mode 100644
index 5d3191dfbc29..000000000000
--- a/www/rt40/files/pkg-message.in
+++ /dev/null
@@ -1,29 +0,0 @@
-=====================================================================
-
-To complete the installation of this port, please follow these steps:
-
-1. Edit %%RT_ETC_PATH%%/RT_SiteConfig.pm, by referring to
- the default config file (%%RT_ETC_PATH%%/RT_Config.pm).
-2. Configure the email and web gateways. Please refer to
- 'SETTING UP THE MAIL GATEWAY' in %%DOCSDIR%%/README
-3. Restart Apache.
-4. Do remember to *CHANGE* the root's password for the web interface.
- The default is "password" (without the quotes.)
-5. Configure RT per the instructions at
- http://www.bestpractical.com/rt/docs.html
-
-If you're upgrading RT then it worth to read UPGRADING document at this
-moment. Some extension you're using may have been integrated into
-core. It's recommended to use new clean directory when you're
-upgrading to new major release (for example from 3.6.x to 3.8.x).
-
-RT does not work with perl taint mode (-T) you must disable it.
-Note, some other ports like devel/bugzilla have you add this to your
-httpd.conf. This isn't actually a flaw of RT, but of a subset of the
-CPAN modules that RT uses.
-
-$ sudo perl rt-setup-database --action init --dba dba --dba-password X
-$ sudo perl rt-setup-database --action drop --dba dba --dba-password X
-
-See the TODO section at the top of the port's Makefile
-=====================================================================
diff --git a/www/rt40/pkg-deinstall b/www/rt40/pkg-deinstall
deleted file mode 100644
index c1fda56a2586..000000000000
--- a/www/rt40/pkg-deinstall
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-# $FreeBSD$
-#
-
-if [ "$2" != "POST-DEINSTALL" ]; then
- exit 0
-fi
-
-GROUP=rt
-
-if ! pw groupshow "${GROUP}" 2>/dev/null 1>&2; then
- if pw groupdel ${GROUP}; then
- echo "Removed group \"${GROUP}\"."
- else
- echo "Removing group \"${GROUP}\" failed..."
- exit 1
- fi
-fi
-
-exit 0
diff --git a/www/rt40/pkg-descr b/www/rt40/pkg-descr
deleted file mode 100644
index eaf1f22f1df7..000000000000
--- a/www/rt40/pkg-descr
+++ /dev/null
@@ -1,13 +0,0 @@
-RT is an industrial-grade ticketing system. It lets a group of people
-intelligently and efficiently manage requests submitted by a community
-of users. RT is used by systems administrators, customer support
-staffs, NOCs, developers and even marketing departments at over a
-thousand sites around the world.
-
-RT3 significantly revamped the RT codebase, featuring standard-compliant
-Web UI, approval-based workflow system, REST-powered RPC mail gateway,
-recursive group membership with delegates, autoconf, custom field support,
-I18N and L10N framework, web-editable scrips, better documentation and
-regression test suite, and more.
-
-WWW: http://www.bestpractical.com/rt/
diff --git a/www/rt40/pkg-install b/www/rt40/pkg-install
deleted file mode 100644
index e81180cf8621..000000000000
--- a/www/rt40/pkg-install
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/sh
-# $FreeBSD$
-#
-
-if [ "$2" != "PRE-INSTALL" ]; then
- exit 0
-fi
-
-GROUP=rt
-GROUPID=180
-
-if ! pw groupshow "${GROUP}" 2>/dev/null 1>&2; then
- if pw groupadd ${GROUP} -g ${GROUPID}; then
- echo "Added group \"${GROUP}\"."
- else
- echo "Adding group \"${GROUP}\" failed..."
- exit 1
- fi
-fi
-
-exit 0
diff --git a/www/rt40/pkg-plist b/www/rt40/pkg-plist
deleted file mode 100644
index 098998fdc2cf..000000000000
--- a/www/rt40/pkg-plist
+++ /dev/null
@@ -1,1315 +0,0 @@
-@comment $FreeBSD$
-@unexec if cmp -s %D/etc/rt38/RT_SiteConfig.pm %D/etc/rt38/RT_SiteConfig.pm-dist; then rm -f %D/etc/rt38/RT_SiteConfig.pm; fi
-@exec [ -f %D/etc/rt38/RT_SiteConfig.pm ] || cp %D/rt38/RT_SiteConfig.pm-dist %D/etc/rt38/RT_SiteConfig.pm
-bin/mason_handler.fcgi
-bin/mason_handler.scgi
-bin/mason_handler.svc
-bin/rt
-bin/rt-crontool
-bin/rt-mailgate
-bin/standalone_httpd
-bin/webmux.pl
-etc/rt38/RT_Config.pm
-etc/rt38/RT_SiteConfig.pm-dist
-etc/rt38/acl.Informix
-etc/rt38/acl.Oracle
-etc/rt38/acl.Pg
-etc/rt38/acl.Sybase
-etc/rt38/acl.mysql
-etc/rt38/initialdata
-etc/rt38/schema.Informix
-etc/rt38/schema.Oracle
-etc/rt38/schema.Pg
-etc/rt38/schema.SQLite
-etc/rt38/schema.Sybase
-etc/rt38/schema.mysql-4.0
-etc/rt38/schema.mysql-4.1
-%%SITE_PERL%%/RT.pm
-%%SITE_PERL%%/RT/ACE.pm
-%%SITE_PERL%%/RT/ACE_Overlay.pm
-%%SITE_PERL%%/RT/ACL.pm
-%%SITE_PERL%%/RT/ACL_Overlay.pm
-%%SITE_PERL%%/RT/Action.pm
-%%SITE_PERL%%/RT/Action/AutoOpen.pm
-%%SITE_PERL%%/RT/Action/Autoreply.pm
-%%SITE_PERL%%/RT/Action/CreateTickets.pm
-%%SITE_PERL%%/RT/Action/EscalatePriority.pm
-%%SITE_PERL%%/RT/Action/ExtractSubjectTag.pm
-%%SITE_PERL%%/RT/Action/Generic.pm
-%%SITE_PERL%%/RT/Action/LinearEscalate.pm
-%%SITE_PERL%%/RT/Action/Notify.pm
-%%SITE_PERL%%/RT/Action/NotifyAsComment.pm
-%%SITE_PERL%%/RT/Action/NotifyGroup.pm
-%%SITE_PERL%%/RT/Action/NotifyGroupAsComment.pm
-%%SITE_PERL%%/RT/Action/RecordComment.pm
-%%SITE_PERL%%/RT/Action/RecordCorrespondence.pm
-%%SITE_PERL%%/RT/Action/ResolveMembers.pm
-%%SITE_PERL%%/RT/Action/SendEmail.pm
-%%SITE_PERL%%/RT/Action/SetPriority.pm
-%%SITE_PERL%%/RT/Action/UserDefined.pm
-%%SITE_PERL%%/RT/Approval.pm
-%%SITE_PERL%%/RT/Approval/Rule.pm
-%%SITE_PERL%%/RT/Approval/Rule/Created.pm
-%%SITE_PERL%%/RT/Approval/Rule/NewPending.pm
-%%SITE_PERL%%/RT/Approval/Rule/Passed.pm
-%%SITE_PERL%%/RT/Approval/Rule/Rejected.pm
-%%SITE_PERL%%/RT/Attachment.pm
-%%SITE_PERL%%/RT/Attachment_Overlay.pm
-%%SITE_PERL%%/RT/Attachments.pm
-%%SITE_PERL%%/RT/Attachments_Overlay.pm
-%%SITE_PERL%%/RT/Attribute.pm
-%%SITE_PERL%%/RT/Attribute_Overlay.pm
-%%SITE_PERL%%/RT/Attributes.pm
-%%SITE_PERL%%/RT/Attributes_Overlay.pm
-%%SITE_PERL%%/RT/Base.pm
-%%SITE_PERL%%/RT/CachedGroupMember.pm
-%%SITE_PERL%%/RT/CachedGroupMember_Overlay.pm
-%%SITE_PERL%%/RT/CachedGroupMembers.pm
-%%SITE_PERL%%/RT/CachedGroupMembers_Overlay.pm
-%%SITE_PERL%%/RT/Condition.pm
-%%SITE_PERL%%/RT/Condition/AnyTransaction.pm
-%%SITE_PERL%%/RT/Condition/BeforeDue.pm
-%%SITE_PERL%%/RT/Condition/CloseTicket.pm
-%%SITE_PERL%%/RT/Condition/Generic.pm
-%%SITE_PERL%%/RT/Condition/Overdue.pm
-%%SITE_PERL%%/RT/Condition/OwnerChange.pm
-%%SITE_PERL%%/RT/Condition/PriorityChange.pm
-%%SITE_PERL%%/RT/Condition/PriorityExceeds.pm
-%%SITE_PERL%%/RT/Condition/QueueChange.pm
-%%SITE_PERL%%/RT/Condition/ReopenTicket.pm
-%%SITE_PERL%%/RT/Condition/StatusChange.pm
-%%SITE_PERL%%/RT/Condition/UserDefined.pm
-%%SITE_PERL%%/RT/Config.pm
-%%SITE_PERL%%/RT/Crypt/GnuPG.pm
-%%SITE_PERL%%/RT/CurrentUser.pm
-%%SITE_PERL%%/RT/CustomField.pm
-%%SITE_PERL%%/RT/CustomFieldValue.pm
-%%SITE_PERL%%/RT/CustomFieldValue_Overlay.pm
-%%SITE_PERL%%/RT/CustomFieldValues.pm
-%%SITE_PERL%%/RT/CustomFieldValues/External.pm
-%%SITE_PERL%%/RT/CustomFieldValues/Groups.pm
-%%SITE_PERL%%/RT/CustomFieldValues_Overlay.pm
-%%SITE_PERL%%/RT/CustomField_Overlay.pm
-%%SITE_PERL%%/RT/CustomFields.pm
-%%SITE_PERL%%/RT/CustomFields_Overlay.pm
-%%SITE_PERL%%/RT/Dashboard.pm
-%%SITE_PERL%%/RT/Date.pm
-%%SITE_PERL%%/RT/EmailParser.pm
-%%SITE_PERL%%/RT/Graph/Tickets.pm
-%%SITE_PERL%%/RT/Group.pm
-%%SITE_PERL%%/RT/GroupMember.pm
-%%SITE_PERL%%/RT/GroupMember_Overlay.pm
-%%SITE_PERL%%/RT/GroupMembers.pm
-%%SITE_PERL%%/RT/GroupMembers_Overlay.pm
-%%SITE_PERL%%/RT/Group_Overlay.pm
-%%SITE_PERL%%/RT/Groups.pm
-%%SITE_PERL%%/RT/Groups_Overlay.pm
-%%SITE_PERL%%/RT/Handle.pm
-%%SITE_PERL%%/RT/I18N.pm
-%%SITE_PERL%%/RT/I18N/ar.po
-%%SITE_PERL%%/RT/I18N/bg.po
-%%SITE_PERL%%/RT/I18N/cs.pm
-%%SITE_PERL%%/RT/I18N/cs.po
-%%SITE_PERL%%/RT/I18N/da.po
-%%SITE_PERL%%/RT/I18N/de.po
-%%SITE_PERL%%/RT/I18N/en.po
-%%SITE_PERL%%/RT/I18N/es.po
-%%SITE_PERL%%/RT/I18N/fi.po
-%%SITE_PERL%%/RT/I18N/fr.po
-%%SITE_PERL%%/RT/I18N/he.po
-%%SITE_PERL%%/RT/I18N/hr.po
-%%SITE_PERL%%/RT/I18N/hu.po
-%%SITE_PERL%%/RT/I18N/i_default.pm
-%%SITE_PERL%%/RT/I18N/id.po
-%%SITE_PERL%%/RT/I18N/it.po
-%%SITE_PERL%%/RT/I18N/ja.po
-%%SITE_PERL%%/RT/I18N/nb.po
-%%SITE_PERL%%/RT/I18N/nl.po
-%%SITE_PERL%%/RT/I18N/pl.po
-%%SITE_PERL%%/RT/I18N/pt.po
-%%SITE_PERL%%/RT/I18N/pt_BR.po
-%%SITE_PERL%%/RT/I18N/rt.pot
-%%SITE_PERL%%/RT/I18N/ru.pm
-%%SITE_PERL%%/RT/I18N/ru.po
-%%SITE_PERL%%/RT/I18N/sv.po
-%%SITE_PERL%%/RT/I18N/tr.po
-%%SITE_PERL%%/RT/I18N/zh_CN.po
-%%SITE_PERL%%/RT/I18N/zh_TW.po
-%%SITE_PERL%%/RT/Installer.pm
-%%SITE_PERL%%/RT/Interface/CLI.pm
-%%SITE_PERL%%/RT/Interface/Email.pm
-%%SITE_PERL%%/RT/Interface/Email/Auth/GnuPG.pm
-%%SITE_PERL%%/RT/Interface/Email/Auth/MailFrom.pm
-%%SITE_PERL%%/RT/Interface/Email/Filter/SpamAssassin.pm
-%%SITE_PERL%%/RT/Interface/REST.pm
-%%SITE_PERL%%/RT/Interface/Web.pm
-%%SITE_PERL%%/RT/Interface/Web/Handler.pm
-%%SITE_PERL%%/RT/Interface/Web/Menu.pm
-%%SITE_PERL%%/RT/Interface/Web/Menu/Item.pm
-%%SITE_PERL%%/RT/Interface/Web/QueryBuilder.pm
-%%SITE_PERL%%/RT/Interface/Web/QueryBuilder/Tree.pm
-%%SITE_PERL%%/RT/Interface/Web/Request.pm
-%%SITE_PERL%%/RT/Interface/Web/Session.pm
-%%SITE_PERL%%/RT/Interface/Web/Standalone.pm
-%%SITE_PERL%%/RT/Interface/Web/Standalone/PreFork.pm
-%%SITE_PERL%%/RT/Link.pm
-%%SITE_PERL%%/RT/Link_Overlay.pm
-%%SITE_PERL%%/RT/Links.pm
-%%SITE_PERL%%/RT/Links_Overlay.pm
-%%SITE_PERL%%/RT/ObjectCustomField.pm
-%%SITE_PERL%%/RT/ObjectCustomFieldValue.pm
-%%SITE_PERL%%/RT/ObjectCustomFieldValue_Overlay.pm
-%%SITE_PERL%%/RT/ObjectCustomFieldValues.pm
-%%SITE_PERL%%/RT/ObjectCustomFieldValues_Overlay.pm
-%%SITE_PERL%%/RT/ObjectCustomField_Overlay.pm
-%%SITE_PERL%%/RT/ObjectCustomFields.pm
-%%SITE_PERL%%/RT/ObjectCustomFields_Overlay.pm
-%%SITE_PERL%%/RT/Plugin.pm
-%%SITE_PERL%%/RT/Principal.pm
-%%SITE_PERL%%/RT/Principal_Overlay.pm
-%%SITE_PERL%%/RT/Principals.pm
-%%SITE_PERL%%/RT/Principals_Overlay.pm
-%%SITE_PERL%%/RT/Queue.pm
-%%SITE_PERL%%/RT/Queue_Overlay.pm
-%%SITE_PERL%%/RT/Queues.pm
-%%SITE_PERL%%/RT/Queues_Overlay.pm
-%%SITE_PERL%%/RT/Record.pm
-%%SITE_PERL%%/RT/Reminders.pm
-%%SITE_PERL%%/RT/Report/Tickets.pm
-%%SITE_PERL%%/RT/Report/Tickets/Entry.pm
-%%SITE_PERL%%/RT/Rule.pm
-%%SITE_PERL%%/RT/Ruleset.pm
-%%SITE_PERL%%/RT/SQL.pm
-%%SITE_PERL%%/RT/SavedSearch.pm
-%%SITE_PERL%%/RT/SavedSearches.pm
-%%SITE_PERL%%/RT/Scrip.pm
-%%SITE_PERL%%/RT/ScripAction.pm
-%%SITE_PERL%%/RT/ScripAction_Overlay.pm
-%%SITE_PERL%%/RT/ScripActions.pm
-%%SITE_PERL%%/RT/ScripActions_Overlay.pm
-%%SITE_PERL%%/RT/ScripCondition.pm
-%%SITE_PERL%%/RT/ScripCondition_Overlay.pm
-%%SITE_PERL%%/RT/ScripConditions.pm
-%%SITE_PERL%%/RT/ScripConditions_Overlay.pm
-%%SITE_PERL%%/RT/Scrip_Overlay.pm
-%%SITE_PERL%%/RT/Scrips.pm
-%%SITE_PERL%%/RT/Scrips_Overlay.pm
-%%SITE_PERL%%/RT/Search.pm
-%%SITE_PERL%%/RT/Search/ActiveTicketsInQueue.pm
-%%SITE_PERL%%/RT/Search/FromSQL.pm
-%%SITE_PERL%%/RT/Search/Generic.pm
-%%SITE_PERL%%/RT/Search/Googleish.pm
-%%SITE_PERL%%/RT/SearchBuilder.pm
-%%SITE_PERL%%/RT/SharedSetting.pm
-%%SITE_PERL%%/RT/Shredder.pm
-%%SITE_PERL%%/RT/Shredder/ACE.pm
-%%SITE_PERL%%/RT/Shredder/Attachment.pm
-%%SITE_PERL%%/RT/Shredder/CachedGroupMember.pm
-%%SITE_PERL%%/RT/Shredder/Constants.pm
-%%SITE_PERL%%/RT/Shredder/CustomField.pm
-%%SITE_PERL%%/RT/Shredder/CustomFieldValue.pm
-%%SITE_PERL%%/RT/Shredder/Dependencies.pm
-%%SITE_PERL%%/RT/Shredder/Dependency.pm
-%%SITE_PERL%%/RT/Shredder/Exceptions.pm
-%%SITE_PERL%%/RT/Shredder/Group.pm
-%%SITE_PERL%%/RT/Shredder/GroupMember.pm
-%%SITE_PERL%%/RT/Shredder/Link.pm
-%%SITE_PERL%%/RT/Shredder/ObjectCustomFieldValue.pm
-%%SITE_PERL%%/RT/Shredder/POD.pm
-%%SITE_PERL%%/RT/Shredder/Plugin.pm
-%%SITE_PERL%%/RT/Shredder/Plugin/Attachments.pm
-%%SITE_PERL%%/RT/Shredder/Plugin/Base.pm
-%%SITE_PERL%%/RT/Shredder/Plugin/Base/Dump.pm
-%%SITE_PERL%%/RT/Shredder/Plugin/Base/Search.pm
-%%SITE_PERL%%/RT/Shredder/Plugin/Objects.pm
-%%SITE_PERL%%/RT/Shredder/Plugin/SQLDump.pm
-%%SITE_PERL%%/RT/Shredder/Plugin/Summary.pm
-%%SITE_PERL%%/RT/Shredder/Plugin/Tickets.pm
-%%SITE_PERL%%/RT/Shredder/Plugin/Users.pm
-%%SITE_PERL%%/RT/Shredder/Principal.pm
-%%SITE_PERL%%/RT/Shredder/Queue.pm
-%%SITE_PERL%%/RT/Shredder/Record.pm
-%%SITE_PERL%%/RT/Shredder/Scrip.pm
-%%SITE_PERL%%/RT/Shredder/ScripAction.pm
-%%SITE_PERL%%/RT/Shredder/ScripCondition.pm
-%%SITE_PERL%%/RT/Shredder/Template.pm
-%%SITE_PERL%%/RT/Shredder/Ticket.pm
-%%SITE_PERL%%/RT/Shredder/Transaction.pm
-%%SITE_PERL%%/RT/Shredder/User.pm
-%%SITE_PERL%%/RT/StyleGuide.pod
-%%SITE_PERL%%/RT/System.pm
-%%SITE_PERL%%/RT/Template.pm
-%%SITE_PERL%%/RT/Template_Overlay.pm
-%%SITE_PERL%%/RT/Templates.pm
-%%SITE_PERL%%/RT/Templates_Overlay.pm
-%%SITE_PERL%%/RT/Test.pm
-%%SITE_PERL%%/RT/Test/Email.pm
-%%SITE_PERL%%/RT/Test/Web.pm
-%%SITE_PERL%%/RT/Ticket.pm
-%%SITE_PERL%%/RT/Ticket_Overlay.pm
-%%SITE_PERL%%/RT/Tickets.pm
-%%SITE_PERL%%/RT/Tickets_Overlay.pm
-%%SITE_PERL%%/RT/Tickets_Overlay_SQL.pm
-%%SITE_PERL%%/RT/Transaction.pm
-%%SITE_PERL%%/RT/Transaction_Overlay.pm
-%%SITE_PERL%%/RT/Transactions.pm
-%%SITE_PERL%%/RT/Transactions_Overlay.pm
-%%SITE_PERL%%/RT/URI.pm
-%%SITE_PERL%%/RT/URI/base.pm
-%%SITE_PERL%%/RT/URI/fsck_com_rt.pm
-%%SITE_PERL%%/RT/URI/t.pm
-%%SITE_PERL%%/RT/User.pm
-%%SITE_PERL%%/RT/User_Overlay.pm
-%%SITE_PERL%%/RT/Users.pm
-%%SITE_PERL%%/RT/Users_Overlay.pm
-%%SITE_PERL%%/RT/Util.pm
-sbin/rt-clean-sessions
-sbin/rt-dump-database
-sbin/rt-email-dashboards
-sbin/rt-email-digest
-sbin/rt-email-group-admin
-sbin/rt-server
-sbin/rt-setup-database
-sbin/rt-shredder
-sbin/rt-test-dependencies
-sbin/rt-validator
-%%PORTDOCS%%%%DOCSDIR%%/README
-share/rt38/html/Admin/CustomFields/GroupRights.html
-share/rt38/html/Admin/CustomFields/Modify.html
-share/rt38/html/Admin/CustomFields/Objects.html
-share/rt38/html/Admin/CustomFields/UserRights.html
-share/rt38/html/Admin/CustomFields/index.html
-share/rt38/html/Admin/Elements/AddCustomFieldValue
-share/rt38/html/Admin/Elements/ConfigureMyRT
-share/rt38/html/Admin/Elements/CreateUserCalled
-share/rt38/html/Admin/Elements/CustomFieldTabs
-share/rt38/html/Admin/Elements/EditCustomField
-share/rt38/html/Admin/Elements/EditCustomFieldValues
-share/rt38/html/Admin/Elements/EditCustomFieldValuesSource
-share/rt38/html/Admin/Elements/EditCustomFields
-share/rt38/html/Admin/Elements/EditQueueWatchers
-share/rt38/html/Admin/Elements/EditScrip
-share/rt38/html/Admin/Elements/EditScrips
-share/rt38/html/Admin/Elements/EditTemplates
-share/rt38/html/Admin/Elements/EditUserComments
-share/rt38/html/Admin/Elements/GlobalCustomFieldTabs
-share/rt38/html/Admin/Elements/GroupTabs
-share/rt38/html/Admin/Elements/Header
-share/rt38/html/Admin/Elements/ListGlobalCustomFields
-share/rt38/html/Admin/Elements/ListGlobalScrips
-share/rt38/html/Admin/Elements/ModifyTemplate
-share/rt38/html/Admin/Elements/ObjectCustomFields
-share/rt38/html/Admin/Elements/PickCustomFields
-share/rt38/html/Admin/Elements/PickObjects
-share/rt38/html/Admin/Elements/QueueRightsForUser
-share/rt38/html/Admin/Elements/QueueTabs
-share/rt38/html/Admin/Elements/SelectCustomField
-share/rt38/html/Admin/Elements/SelectCustomFieldLookupType
-share/rt38/html/Admin/Elements/SelectCustomFieldType
-share/rt38/html/Admin/Elements/SelectGroups
-share/rt38/html/Admin/Elements/SelectModifyGroup
-share/rt38/html/Admin/Elements/SelectModifyQueue
-share/rt38/html/Admin/Elements/SelectModifyUser
-share/rt38/html/Admin/Elements/SelectNewGroupMembers
-share/rt38/html/Admin/Elements/SelectRights
-share/rt38/html/Admin/Elements/SelectScrip
-share/rt38/html/Admin/Elements/SelectScripAction
-share/rt38/html/Admin/Elements/SelectScripCondition
-share/rt38/html/Admin/Elements/SelectSingleOrMultiple
-share/rt38/html/Admin/Elements/SelectStage
-share/rt38/html/Admin/Elements/SelectTemplate
-share/rt38/html/Admin/Elements/SelectUsers
-share/rt38/html/Admin/Elements/ShowKeyInfo
-share/rt38/html/Admin/Elements/SystemTabs
-share/rt38/html/Admin/Elements/Tabs
-share/rt38/html/Admin/Elements/ToolTabs
-share/rt38/html/Admin/Elements/UserTabs
-share/rt38/html/Admin/Global/CustomFields/Groups.html
-share/rt38/html/Admin/Global/CustomFields/Queue-Tickets.html
-share/rt38/html/Admin/Global/CustomFields/Queue-Transactions.html
-share/rt38/html/Admin/Global/CustomFields/Queues.html
-share/rt38/html/Admin/Global/CustomFields/Users.html
-share/rt38/html/Admin/Global/CustomFields/index.html
-share/rt38/html/Admin/Global/GroupRights.html
-share/rt38/html/Admin/Global/MyRT.html
-share/rt38/html/Admin/Global/Scrip.html
-share/rt38/html/Admin/Global/Scrips.html
-share/rt38/html/Admin/Global/Template.html
-share/rt38/html/Admin/Global/Templates.html
-share/rt38/html/Admin/Global/UserRights.html
-share/rt38/html/Admin/Global/index.html
-share/rt38/html/Admin/Groups/CustomFields.html
-share/rt38/html/Admin/Groups/GroupRights.html
-share/rt38/html/Admin/Groups/History.html
-share/rt38/html/Admin/Groups/Members.html
-share/rt38/html/Admin/Groups/Modify.html
-share/rt38/html/Admin/Groups/UserRights.html
-share/rt38/html/Admin/Groups/index.html
-share/rt38/html/Admin/Queues/CustomField.html
-share/rt38/html/Admin/Queues/CustomFields.html
-share/rt38/html/Admin/Queues/GroupRights.html
-share/rt38/html/Admin/Queues/History.html
-share/rt38/html/Admin/Queues/Modify.html
-share/rt38/html/Admin/Queues/People.html
-share/rt38/html/Admin/Queues/Scrip.html
-share/rt38/html/Admin/Queues/Scrips.html
-share/rt38/html/Admin/Queues/Template.html
-share/rt38/html/Admin/Queues/Templates.html
-share/rt38/html/Admin/Queues/UserRights.html
-share/rt38/html/Admin/Queues/index.html
-share/rt38/html/Admin/Tools/Configuration.html
-share/rt38/html/Admin/Tools/Shredder/Dumps/dhandler
-share/rt38/html/Admin/Tools/Shredder/Elements/DumpFileLink
-share/rt38/html/Admin/Tools/Shredder/Elements/Error/NoRights
-share/rt38/html/Admin/Tools/Shredder/Elements/Error/NoStorage
-share/rt38/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment
-share/rt38/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket
-share/rt38/html/Admin/Tools/Shredder/Elements/Object/RT--User
-share/rt38/html/Admin/Tools/Shredder/Elements/ObjectCheckBox
-share/rt38/html/Admin/Tools/Shredder/Elements/PluginArguments
-share/rt38/html/Admin/Tools/Shredder/Elements/PluginHelp
-share/rt38/html/Admin/Tools/Shredder/Elements/SelectObjects
-share/rt38/html/Admin/Tools/Shredder/Elements/SelectPlugin
-share/rt38/html/Admin/Tools/Shredder/autohandler
-share/rt38/html/Admin/Tools/Shredder/index.html
-share/rt38/html/Admin/Tools/index.html
-share/rt38/html/Admin/Users/CustomFields.html
-share/rt38/html/Admin/Users/GnuPG.html
-share/rt38/html/Admin/Users/History.html
-share/rt38/html/Admin/Users/Memberships.html
-share/rt38/html/Admin/Users/Modify.html
-share/rt38/html/Admin/Users/MyRT.html
-share/rt38/html/Admin/Users/index.html
-share/rt38/html/Admin/autohandler
-share/rt38/html/Admin/index.html
-share/rt38/html/Approvals/Display.html
-share/rt38/html/Approvals/Elements/Approve
-share/rt38/html/Approvals/Elements/PendingMyApproval
-share/rt38/html/Approvals/Elements/ShowDependency
-share/rt38/html/Approvals/Elements/Tabs
-share/rt38/html/Approvals/autohandler
-share/rt38/html/Approvals/index.html
-share/rt38/html/Dashboards/Elements/DashboardsForObject
-share/rt38/html/Dashboards/Elements/DashboardsForObjects
-share/rt38/html/Dashboards/Elements/Deleted
-share/rt38/html/Dashboards/Elements/HiddenSearches
-share/rt38/html/Dashboards/Elements/ListOfDashboards
-share/rt38/html/Dashboards/Elements/SelectPrivacy
-share/rt38/html/Dashboards/Elements/ShowDashboards
-share/rt38/html/Dashboards/Elements/ShowPortlet/component
-share/rt38/html/Dashboards/Elements/ShowPortlet/dashboard
-share/rt38/html/Dashboards/Elements/ShowPortlet/search
-share/rt38/html/Dashboards/Elements/ShowSubscription
-share/rt38/html/Dashboards/Elements/Tabs
-share/rt38/html/Dashboards/Modify.html
-share/rt38/html/Dashboards/Queries.html
-share/rt38/html/Dashboards/Render.html
-share/rt38/html/Dashboards/Subscription.html
-share/rt38/html/Dashboards/dhandler
-share/rt38/html/Dashboards/index.html
-share/rt38/html/Download/CustomFieldValue/dhandler
-share/rt38/html/Download/Tabular/dhandler
-share/rt38/html/Elements/BevelBoxRaisedEnd
-share/rt38/html/Elements/BevelBoxRaisedStart
-share/rt38/html/Elements/Callback
-share/rt38/html/Elements/Checkbox
-share/rt38/html/Elements/CollectionAsTable/Header
-share/rt38/html/Elements/CollectionAsTable/ParseFormat
-share/rt38/html/Elements/CollectionAsTable/Row
-share/rt38/html/Elements/CollectionList
-share/rt38/html/Elements/CollectionListPaging
-share/rt38/html/Elements/ColumnMap
-share/rt38/html/Elements/CreateTicket
-share/rt38/html/Elements/Dashboards
-share/rt38/html/Elements/DashboardTabs
-share/rt38/html/Elements/EditCustomField
-share/rt38/html/Elements/EditCustomFieldAutocomplete
-share/rt38/html/Elements/EditCustomFieldBinary
-share/rt38/html/Elements/EditCustomFieldCombobox
-share/rt38/html/Elements/EditCustomFieldFreeform
-share/rt38/html/Elements/EditCustomFieldImage
-share/rt38/html/Elements/EditCustomFieldSelect
-share/rt38/html/Elements/EditCustomFieldText
-share/rt38/html/Elements/EditCustomFieldWikitext
-share/rt38/html/Elements/EditLinks
-share/rt38/html/Elements/EditTimeValue
-share/rt38/html/Elements/EmailInput
-share/rt38/html/Elements/Error
-share/rt38/html/Elements/Footer
-share/rt38/html/Elements/GnuPG/KeyIssues
-share/rt38/html/Elements/GnuPG/SelectKeyForEncryption
-share/rt38/html/Elements/GnuPG/SelectKeyForSigning
-share/rt38/html/Elements/GnuPG/SignEncryptWidget
-share/rt38/html/Elements/GotoTicket
-share/rt38/html/Elements/Header
-share/rt38/html/Elements/HeaderJavascript
-share/rt38/html/Elements/ListActions
-share/rt38/html/Elements/ListMenu
-share/rt38/html/Elements/Login
-share/rt38/html/Elements/Logo
-share/rt38/html/Elements/Logout
-share/rt38/html/Elements/MakeClicky
-share/rt38/html/Elements/Menu
-share/rt38/html/Elements/MessageBox
-share/rt38/html/Elements/MyAdminQueues
-share/rt38/html/Elements/MyRT
-share/rt38/html/Elements/MyReminders
-share/rt38/html/Elements/MyRequests
-share/rt38/html/Elements/MySupportQueues
-share/rt38/html/Elements/MyTickets
-share/rt38/html/Elements/PageLayout
-share/rt38/html/Elements/PersonalQuickbar
-share/rt38/html/Elements/QueryString
-share/rt38/html/Elements/QueueSummary
-share/rt38/html/Elements/QuickCreate
-share/rt38/html/Elements/Quicksearch
-share/rt38/html/Elements/RT__Group/ColumnMap
-share/rt38/html/Elements/RT__Queue/ColumnMap
-share/rt38/html/Elements/RT__Scrip/ColumnMap
-share/rt38/html/Elements/RT__Template/ColumnMap
-share/rt38/html/Elements/RT__Ticket/ColumnMap
-share/rt38/html/Elements/RT__User/ColumnMap
-share/rt38/html/Elements/Refresh
-share/rt38/html/Elements/RefreshHomepage
-share/rt38/html/Elements/ScrubHTML
-share/rt38/html/Elements/Section
-share/rt38/html/Elements/SelectAttachmentField
-share/rt38/html/Elements/SelectBoolean
-share/rt38/html/Elements/SelectCustomFieldOperator
-share/rt38/html/Elements/SelectCustomFieldValue
-share/rt38/html/Elements/SelectDate
-share/rt38/html/Elements/SelectDateRelation
-share/rt38/html/Elements/SelectDateType
-share/rt38/html/Elements/SelectEqualityOperator
-share/rt38/html/Elements/SelectGroups
-share/rt38/html/Elements/SelectLang
-share/rt38/html/Elements/SelectLinkType
-share/rt38/html/Elements/SelectMatch
-share/rt38/html/Elements/SelectNewTicketQueue
-share/rt38/html/Elements/SelectOwner
-share/rt38/html/Elements/SelectQueue
-share/rt38/html/Elements/SelectResultsPerPage
-share/rt38/html/Elements/SelectSortOrder
-share/rt38/html/Elements/SelectStatus
-share/rt38/html/Elements/SelectTicketSortBy
-share/rt38/html/Elements/SelectTicketTypes
-share/rt38/html/Elements/SelectPriority
-share/rt38/html/Elements/SelectTimeUnits
-share/rt38/html/Elements/SelectTimezone
-share/rt38/html/Elements/SelectUsers
-share/rt38/html/Elements/SelectWatcherType
-share/rt38/html/Elements/SetupSessionCookie
-share/rt38/html/Elements/ShowCustomFieldBinary
-share/rt38/html/Elements/ShowCustomFieldImage
-share/rt38/html/Elements/ShowCustomFieldText
-share/rt38/html/Elements/ShowCustomFieldWikitext
-share/rt38/html/Elements/ShowCustomFields
-share/rt38/html/Elements/ShowLink
-share/rt38/html/Elements/ShowLinks
-share/rt38/html/Elements/ShowMemberships
-share/rt38/html/Elements/ShowSearch
-share/rt38/html/Elements/ShowUser
-share/rt38/html/Elements/ShowUserConcise
-share/rt38/html/Elements/ShowUserEmailFrequency
-share/rt38/html/Elements/ShowUserVerbose
-share/rt38/html/Elements/SimpleSearch
-share/rt38/html/Elements/Submit
-share/rt38/html/Elements/Tabs
-share/rt38/html/Elements/TicketList
-share/rt38/html/Elements/TitleBox
-share/rt38/html/Elements/TitleBoxEnd
-share/rt38/html/Elements/TitleBoxStart
-share/rt38/html/Elements/ValidateCustomFields
-share/rt38/html/Helpers/Autocomplete/CustomFieldValues
-share/rt38/html/Helpers/CalPopup.html
-share/rt38/html/Helpers/Toggle/TicketBookmark
-share/rt38/html/Install/Basics.html
-share/rt38/html/Install/DatabaseDetails.html
-share/rt38/html/Install/DatabaseType.html
-share/rt38/html/Install/Elements/Errors
-share/rt38/html/Install/Elements/Wrapper
-share/rt38/html/Install/Finish.html
-share/rt38/html/Install/Global.html
-share/rt38/html/Install/Initialize.html
-share/rt38/html/Install/Sendmail.html
-share/rt38/html/Install/autohandler
-share/rt38/html/Install/index.html
-share/rt38/html/NoAuth/Logout.html
-share/rt38/html/NoAuth/Reminder.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckcontextmenu.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckdataprocessor.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckdocumentfragment_gecko.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckdocumentfragment_ie.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckdomrange.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckdomrange_gecko.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckdomrange_ie.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckdomrangeiterator.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckeditingarea.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckelementpath.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckenterkey.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckevents.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckhtmliterator.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckicon.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckiecleanup.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckimagepreloader.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckkeystrokehandler.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckmenublock.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckmenublockpanel.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckmenuitem.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckpanel.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckplugin.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckspecialcombo.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckstyle.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbar.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarbreak_gecko.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarbreak_ie.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarbutton.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarbuttonui.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarfontformatcombo.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarfontscombo.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarfontsizecombo.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarpanelbutton.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarspecialcombo.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarstylecombo.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckw3crange.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckxml.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckxml_gecko.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckxml_ie.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fck_othercommands.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckblockquotecommand.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckcorestylecommand.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckfitwindow.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckindentcommands.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckjustifycommands.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fcklistcommands.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fcknamedcommand.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckpasteplaintextcommand.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckpastewordcommand.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckremoveformatcommand.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckshowblocks.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckspellcheckcommand_gecko.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckspellcheckcommand_ie.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckstylecommand.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fcktablecommand.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fcktextcolorcommand.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/fckconstants.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/fckeditorapi.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/fckjscoreextensions.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/fckscriptloader.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fck.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fck_contextmenu.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fck_gecko.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fck_ie.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckbrowserinfo.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckcodeformatter.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckcommands.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckconfig.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckdebug.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckdebug_empty.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckdialog.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckdocumentprocessor.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckdomtools.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcklanguagemanager.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcklisthandler.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcklistslib.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckplugins.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckregexlib.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckselection.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckselection_gecko.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckselection_ie.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckstyles.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcktablehandler.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcktablehandler_gecko.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcktablehandler_ie.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcktoolbaritems.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcktoolbarset.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcktools.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcktools_gecko.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcktools_ie.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckundo.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckurlparams.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckxhtml.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckxhtml_gecko.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckxhtml_ie.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckxhtmlentities.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/behaviors/disablehandles.htc
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/behaviors/showtableborders.htc
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/fck_editorarea.css
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/fck_internal.css
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/fck_showtableborders_gecko.css
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/block_address.png
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/block_blockquote.png
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/block_div.png
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h1.png
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h2.png
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h3.png
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h4.png
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h5.png
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h6.png
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/block_p.png
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/block_pre.png
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_anchor.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_flashlogo.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_hiddenfield.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_pagebreak.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_plugin.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/common/fck_dialog_common.css
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/common/fck_dialog_common.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/common/images/locked.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/common/images/reset.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/common/images/unlocked.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_about.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_about/logo_fckeditor.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_about/logo_fredck.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_about/sponsors/spellchecker_net.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_anchor.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_button.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_checkbox.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_colorselector.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_div.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_docprops.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_docprops/fck_document_preview.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_flash.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_flash/fck_flash.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_flash/fck_flash_preview.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_form.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_hiddenfield.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_image.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_image/fck_image.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_image/fck_image_preview.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_link.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_link/fck_link.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_listprop.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_paste.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_radiobutton.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_replace.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_select.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_select/fck_select.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_smiley.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_source.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_specialchar.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/controlWindow.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/controls.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/wordWindow.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_table.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_tablecell.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_template.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_template/images/template1.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_template/images/template2.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_template/images/template3.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_textarea.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_textfield.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dtd/fck_dtd_test.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dtd/fck_xhtml10strict.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/dtd/fck_xhtml10transitional.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/fckdebug.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/fckdialog.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/fckeditor.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/fckeditor.original.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/anchor.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/arrow_ltr.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/arrow_rtl.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/angel_smile.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/angry_smile.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/broken_heart.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/cake.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/confused_smile.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/cry_smile.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/devil_smile.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/embaressed_smile.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/envelope.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/heart.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/kiss.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/lightbulb.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/omg_smile.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/regular_smile.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/sad_smile.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/shades_smile.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/teeth_smile.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/thumbs_down.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/thumbs_up.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/tounge_smile.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/whatchutalkingabout_smile.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/wink_smile.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/spacer.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/js/fckadobeair.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/js/fckeditorcode_gecko.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/js/fckeditorcode_ie.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/_translationstatus.txt
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/af.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/ar.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/bg.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/bn.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/bs.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/ca.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/cs.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/da.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/de.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/el.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/en-au.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/en-ca.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/en-uk.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/en.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/eo.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/es.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/et.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/eu.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/fa.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/fi.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/fo.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/fr-ca.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/fr.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/gl.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/gu.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/he.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/hi.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/hr.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/hu.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/is.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/it.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/ja.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/km.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/ko.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/lt.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/lv.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/mn.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/ms.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/nb.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/nl.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/no.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/pl.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/pt-br.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/pt.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/ro.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/ru.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/sk.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/sl.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/sr-latn.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/sr.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/sv.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/th.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/tr.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/uk.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/vi.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/zh-cn.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/zh.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/autogrow/fckplugin.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/bbcode/_sample/sample.config.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/bbcode/_sample/sample.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/bbcode/fckplugin.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/dragresizetable/fckplugin.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/fck_placeholder.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/fckplugin.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/lang/de.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/lang/en.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/lang/es.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/lang/fr.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/lang/it.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/lang/pl.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/placeholder.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/simplecommands/fckplugin.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/tablecommands/fckplugin.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/_fckviewstrips.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/fck_dialog.css
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/fck_dialog_ie6.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/fck_editor.css
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/fck_strip.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/dialog.sides.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/dialog.sides.png
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/dialog.sides.rtl.png
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/sprites.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/sprites.png
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/toolbar.arrowright.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/toolbar.buttonarrow.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/toolbar.collapse.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/toolbar.end.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/toolbar.expand.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/toolbar.separator.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/toolbar.start.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/fck_dialog.css
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/fck_dialog_ie6.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/fck_editor.css
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/fck_strip.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/dialog.sides.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/dialog.sides.png
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/dialog.sides.rtl.png
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/sprites.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/sprites.png
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/toolbar.arrowright.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/toolbar.bg.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/toolbar.buttonarrow.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/toolbar.collapse.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/toolbar.end.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/toolbar.expand.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/toolbar.separator.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/toolbar.start.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/fck_dialog.css
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/fck_dialog_ie6.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/fck_editor.css
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/fck_strip.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/dialog.sides.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/dialog.sides.png
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/dialog.sides.rtl.png
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/sprites.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/sprites.png
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/toolbar.arrowright.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/toolbar.buttonarrow.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/toolbar.buttonbg.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/toolbar.collapse.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/toolbar.end.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/toolbar.expand.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/toolbar.separator.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/toolbar.start.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/wsc/ciframe.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/wsc/tmpFrameset.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/wsc/w.html
-share/rt38/html/NoAuth/RichText/FCKeditor/fckconfig.js
-share/rt38/html/NoAuth/RichText/FCKeditor/fckeditor.js
-share/rt38/html/NoAuth/RichText/FCKeditor/fckpackager.xml
-share/rt38/html/NoAuth/RichText/FCKeditor/fckstyles.xml
-share/rt38/html/NoAuth/RichText/FCKeditor/fcktemplates.xml
-share/rt38/html/NoAuth/RichText/FCKeditor/license.txt
-share/rt38/html/NoAuth/RichText/dhandler
-share/rt38/html/NoAuth/css/3.4-compat/body.css
-share/rt38/html/NoAuth/css/3.4-compat/footer.css
-share/rt38/html/NoAuth/css/3.4-compat/forms.css
-share/rt38/html/NoAuth/css/3.4-compat/header.css
-share/rt38/html/NoAuth/css/3.4-compat/login.css
-share/rt38/html/NoAuth/css/3.4-compat/main.css
-share/rt38/html/NoAuth/css/3.4-compat/misc.css
-share/rt38/html/NoAuth/css/3.4-compat/nav.css
-share/rt38/html/NoAuth/css/3.4-compat/quickbar.css
-share/rt38/html/NoAuth/css/3.4-compat/ticket.css
-share/rt38/html/NoAuth/css/3.4-compat/titlebox.css
-share/rt38/html/NoAuth/css/3.4-compat/transactions.css
-share/rt38/html/NoAuth/css/3.5-default/approvals.css
-share/rt38/html/NoAuth/css/3.5-default/body.css
-share/rt38/html/NoAuth/css/3.5-default/footer.css
-share/rt38/html/NoAuth/css/3.5-default/forms.css
-share/rt38/html/NoAuth/css/3.5-default/header.css
-share/rt38/html/NoAuth/css/3.5-default/local.css
-share/rt38/html/NoAuth/css/3.5-default/login.css
-share/rt38/html/NoAuth/css/3.5-default/logo.css
-share/rt38/html/NoAuth/css/3.5-default/main.css
-share/rt38/html/NoAuth/css/3.5-default/misc.css
-share/rt38/html/NoAuth/css/3.5-default/nav-left.css
-share/rt38/html/NoAuth/css/3.5-default/nav.css
-share/rt38/html/NoAuth/css/3.5-default/quickbar.css
-share/rt38/html/NoAuth/css/3.5-default/ticket-search.css
-share/rt38/html/NoAuth/css/3.5-default/ticket.css
-share/rt38/html/NoAuth/css/3.5-default/titlebox.css
-share/rt38/html/NoAuth/css/3.5-default/transactions.css
-share/rt38/html/NoAuth/css/autohandler
-share/rt38/html/NoAuth/css/dhandler
-share/rt38/html/NoAuth/css/print.css
-share/rt38/html/NoAuth/css/web2/InHeader
-share/rt38/html/NoAuth/css/web2/admin.css
-share/rt38/html/NoAuth/css/web2/base.css
-share/rt38/html/NoAuth/css/web2/boxes.css
-share/rt38/html/NoAuth/css/web2/forms.css
-share/rt38/html/NoAuth/css/web2/images/dhandler
-share/rt38/html/NoAuth/css/web2/images/source/background-gradient.png
-share/rt38/html/NoAuth/css/web2/layout.css
-share/rt38/html/NoAuth/css/web2/login.css
-share/rt38/html/NoAuth/css/web2/main.css
-share/rt38/html/NoAuth/css/web2/misc.css
-share/rt38/html/NoAuth/css/web2/msie.css
-share/rt38/html/NoAuth/css/web2/msie6.css
-share/rt38/html/NoAuth/css/web2/nav.css
-share/rt38/html/NoAuth/css/web2/portlets.css
-share/rt38/html/NoAuth/css/web2/ticket-lists.css
-share/rt38/html/NoAuth/css/web2/ticket-search.css
-share/rt38/html/NoAuth/css/web2/ticket.css
-share/rt38/html/NoAuth/css/web2/tools.css
-share/rt38/html/NoAuth/css/web2/yui-fonts.css
-share/rt38/html/NoAuth/iCal/dhandler
-share/rt38/html/NoAuth/images/autohandler
-share/rt38/html/NoAuth/images/bplogo.gif
-share/rt38/html/NoAuth/images/css/cb-light.gif
-share/rt38/html/NoAuth/images/css/cb.gif
-share/rt38/html/NoAuth/images/css/cbr-b2g.gif
-share/rt38/html/NoAuth/images/css/cbr-b2lb.gif
-share/rt38/html/NoAuth/images/css/cbr-gray.gif
-share/rt38/html/NoAuth/images/css/cbr-trans.gif
-share/rt38/html/NoAuth/images/css/cbr.gif
-share/rt38/html/NoAuth/images/css/ct-light.gif
-share/rt38/html/NoAuth/images/css/ct.gif
-share/rt38/html/NoAuth/images/css/ctr-b2g.gif
-share/rt38/html/NoAuth/images/css/ctr-b2lb.gif
-share/rt38/html/NoAuth/images/css/ctr-gray.gif
-share/rt38/html/NoAuth/images/css/ctr-trans.gif
-share/rt38/html/NoAuth/images/css/ctr.gif
-share/rt38/html/NoAuth/images/css/dark-arrow-up.png
-share/rt38/html/NoAuth/images/css/dark-arrow.png
-share/rt38/html/NoAuth/images/css/fieldbg-autocomplete.gif
-share/rt38/html/NoAuth/images/css/light-arrow-up.png
-share/rt38/html/NoAuth/images/css/light-arrow.png
-share/rt38/html/NoAuth/images/css/rolldown-arrow.gif
-share/rt38/html/NoAuth/images/css/rolldown-arrow.png
-share/rt38/html/NoAuth/images/css/rollup-arrow.gif
-share/rt38/html/NoAuth/images/empty_star.gif
-share/rt38/html/NoAuth/images/favicon.png
-share/rt38/html/NoAuth/images/star.gif
-share/rt38/html/NoAuth/images/test.png
-share/rt38/html/NoAuth/js/IE7/IE7.js
-share/rt38/html/NoAuth/js/IE7/IE8.js
-share/rt38/html/NoAuth/js/IE7/blank.gif
-share/rt38/html/NoAuth/js/IE7/ie7-recalc.js
-share/rt38/html/NoAuth/js/IE7/ie7-squish.js
-share/rt38/html/NoAuth/js/ahah.js
-share/rt38/html/NoAuth/js/autohandler
-share/rt38/html/NoAuth/js/cascaded.js
-share/rt38/html/NoAuth/js/class.js
-share/rt38/html/NoAuth/js/combobox.js
-share/rt38/html/NoAuth/js/list.js
-share/rt38/html/NoAuth/js/prototype/prototype.js
-share/rt38/html/NoAuth/js/scriptaculous/controls.js
-share/rt38/html/NoAuth/js/scriptaculous/effects.js
-share/rt38/html/NoAuth/js/scriptaculous/scriptaculous.js
-share/rt38/html/NoAuth/js/titlebox-state.js
-share/rt38/html/NoAuth/js/util.js
-share/rt38/html/Prefs/Elements/Tabs
-share/rt38/html/Prefs/MyRT.html
-share/rt38/html/Prefs/Other.html
-share/rt38/html/Prefs/Quicksearch.html
-share/rt38/html/Prefs/Search.html
-share/rt38/html/Prefs/SearchOptions.html
-share/rt38/html/REST/1.0/Forms/attachment/default
-share/rt38/html/REST/1.0/Forms/group/customfields
-share/rt38/html/REST/1.0/Forms/group/default
-share/rt38/html/REST/1.0/Forms/group/ns
-share/rt38/html/REST/1.0/Forms/queue/customfields
-share/rt38/html/REST/1.0/Forms/queue/default
-share/rt38/html/REST/1.0/Forms/queue/ns
-share/rt38/html/REST/1.0/Forms/queue/ticketcustomfields
-share/rt38/html/REST/1.0/Forms/ticket/attachments
-share/rt38/html/REST/1.0/Forms/ticket/comment
-share/rt38/html/REST/1.0/Forms/ticket/default
-share/rt38/html/REST/1.0/Forms/ticket/history
-share/rt38/html/REST/1.0/Forms/ticket/links
-share/rt38/html/REST/1.0/Forms/ticket/merge
-share/rt38/html/REST/1.0/Forms/ticket/take
-share/rt38/html/REST/1.0/Forms/transaction/default
-share/rt38/html/REST/1.0/Forms/user/default
-share/rt38/html/REST/1.0/Forms/user/ns
-share/rt38/html/REST/1.0/NoAuth/mail-gateway
-share/rt38/html/REST/1.0/autohandler
-share/rt38/html/REST/1.0/dhandler
-share/rt38/html/REST/1.0/logout
-share/rt38/html/REST/1.0/search/dhandler
-share/rt38/html/REST/1.0/search/ticket
-share/rt38/html/REST/1.0/ticket/comment
-share/rt38/html/REST/1.0/ticket/link
-share/rt38/html/REST/1.0/ticket/merge
-share/rt38/html/Search/Build.html
-share/rt38/html/Search/Bulk.html
-share/rt38/html/Search/Chart
-share/rt38/html/Search/Chart.html
-share/rt38/html/Search/Edit.html
-share/rt38/html/Search/Elements/BuildFormatString
-share/rt38/html/Search/Elements/Chart
-share/rt38/html/Search/Elements/ConditionRow
-share/rt38/html/Search/Elements/DisplayOptions
-share/rt38/html/Search/Elements/EditFormat
-share/rt38/html/Search/Elements/EditQuery
-share/rt38/html/Search/Elements/EditSearches
-share/rt38/html/Search/Elements/Graph
-share/rt38/html/Search/Elements/NewListActions
-share/rt38/html/Search/Elements/PickBasics
-share/rt38/html/Search/Elements/PickCFs
-share/rt38/html/Search/Elements/PickCriteria
-share/rt38/html/Search/Elements/ResultViews
-share/rt38/html/Search/Elements/SearchPrivacy
-share/rt38/html/Search/Elements/SearchesForObject
-share/rt38/html/Search/Elements/SelectAndOr
-share/rt38/html/Search/Elements/SelectChartType
-share/rt38/html/Search/Elements/SelectGroup
-share/rt38/html/Search/Elements/SelectGroupBy
-share/rt38/html/Search/Elements/SelectLinks
-share/rt38/html/Search/Elements/SelectPersonType
-share/rt38/html/Search/Elements/SelectSearchObject
-share/rt38/html/Search/Elements/SelectSearchesForObjects
-share/rt38/html/Search/Graph.html
-share/rt38/html/Search/Results.html
-share/rt38/html/Search/Results.rdf
-share/rt38/html/Search/Results.tsv
-share/rt38/html/Search/Simple.html
-share/rt38/html/SelfService/Attachment/dhandler
-share/rt38/html/SelfService/Closed.html
-share/rt38/html/SelfService/Create.html
-share/rt38/html/SelfService/CreateTicketInQueue.html
-share/rt38/html/SelfService/Display.html
-share/rt38/html/SelfService/Elements/GotoTicket
-share/rt38/html/SelfService/Elements/Header
-share/rt38/html/SelfService/Elements/MyRequests
-share/rt38/html/SelfService/Elements/Tabs
-share/rt38/html/SelfService/Error.html
-share/rt38/html/SelfService/Prefs.html
-share/rt38/html/SelfService/Update.html
-share/rt38/html/SelfService/index.html
-share/rt38/html/Ticket/Attachment/WithHeaders/dhandler
-share/rt38/html/Ticket/Attachment/dhandler
-share/rt38/html/Ticket/Create.html
-share/rt38/html/Ticket/Display.html
-share/rt38/html/Ticket/Elements/AddWatchers
-share/rt38/html/Ticket/Elements/Bookmark
-share/rt38/html/Ticket/Elements/BulkLinks
-share/rt38/html/Ticket/Elements/EditBasics
-share/rt38/html/Ticket/Elements/EditCustomFields
-share/rt38/html/Ticket/Elements/EditDates
-share/rt38/html/Ticket/Elements/EditPeople
-share/rt38/html/Ticket/Elements/EditTransactionCustomFields
-share/rt38/html/Ticket/Elements/EditWatchers
-share/rt38/html/Ticket/Elements/FindAttachments
-share/rt38/html/Ticket/Elements/LoadTextAttachments
-share/rt38/html/Ticket/Elements/PreviewScrips
-share/rt38/html/Ticket/Elements/Reminders
-share/rt38/html/Ticket/Elements/ShowAttachments
-share/rt38/html/Ticket/Elements/ShowBasics
-share/rt38/html/Ticket/Elements/ShowCustomFields
-share/rt38/html/Ticket/Elements/ShowDates
-share/rt38/html/Ticket/Elements/ShowDependencies
-share/rt38/html/Ticket/Elements/ShowGnuPGStatus
-share/rt38/html/Ticket/Elements/ShowGroupMembers
-share/rt38/html/Ticket/Elements/ShowHistory
-share/rt38/html/Ticket/Elements/ShowMembers
-share/rt38/html/Ticket/Elements/ShowMessageHeaders
-share/rt38/html/Ticket/Elements/ShowMessageStanza
-share/rt38/html/Ticket/Elements/ShowParents
-share/rt38/html/Ticket/Elements/ShowPeople
-share/rt38/html/Ticket/Elements/ShowPriority
-share/rt38/html/Ticket/Elements/ShowQueue
-share/rt38/html/Ticket/Elements/ShowRequestor
-share/rt38/html/Ticket/Elements/ShowSummary
-share/rt38/html/Ticket/Elements/ShowTime
-share/rt38/html/Ticket/Elements/ShowTransaction
-share/rt38/html/Ticket/Elements/ShowTransactionAttachments
-share/rt38/html/Ticket/Elements/ShowUpdateStatus
-share/rt38/html/Ticket/Elements/ShowUserEntry
-share/rt38/html/Ticket/Elements/Tabs
-share/rt38/html/Ticket/Elements/UpdateCc
-share/rt38/html/Ticket/Forward.html
-share/rt38/html/Ticket/GnuPG.html
-share/rt38/html/Ticket/Graphs/Elements/EditGraphProperties
-share/rt38/html/Ticket/Graphs/Elements/ShowGraph
-share/rt38/html/Ticket/Graphs/Elements/ShowLegends
-share/rt38/html/Ticket/Graphs/dhandler
-share/rt38/html/Ticket/Graphs/index.html
-share/rt38/html/Ticket/History.html
-share/rt38/html/Ticket/Modify.html
-share/rt38/html/Ticket/ModifyAll.html
-share/rt38/html/Ticket/ModifyDates.html
-share/rt38/html/Ticket/ModifyLinks.html
-share/rt38/html/Ticket/ModifyPeople.html
-share/rt38/html/Ticket/Reminders.html
-share/rt38/html/Ticket/ShowEmailRecord.html
-share/rt38/html/Ticket/Update.html
-share/rt38/html/Tools/Elements/Tabs
-share/rt38/html/Tools/MyDay.html
-share/rt38/html/Tools/Offline.html
-share/rt38/html/Tools/Reports/CreatedByDates.html
-share/rt38/html/Tools/Reports/Elements/Tabs
-share/rt38/html/Tools/Reports/ResolvedByDates.html
-share/rt38/html/Tools/Reports/ResolvedByOwner.html
-share/rt38/html/Tools/Reports/index.html
-share/rt38/html/Tools/index.html
-share/rt38/html/User/Delegation.html
-share/rt38/html/User/Elements/DelegateRights
-share/rt38/html/User/Elements/GroupTabs
-share/rt38/html/User/Elements/Tabs
-share/rt38/html/User/Groups/Members.html
-share/rt38/html/User/Groups/Modify.html
-share/rt38/html/User/Groups/index.html
-share/rt38/html/User/Prefs.html
-share/rt38/html/Widgets/BulkEdit
-share/rt38/html/Widgets/BulkProcess
-share/rt38/html/Widgets/ComboBox
-share/rt38/html/Widgets/FinalizeWidgetArguments
-share/rt38/html/Widgets/Form/Boolean
-share/rt38/html/Widgets/Form/Integer
-share/rt38/html/Widgets/Form/Select
-share/rt38/html/Widgets/Form/String
-share/rt38/html/Widgets/SavedSearch
-share/rt38/html/Widgets/SelectionBox
-share/rt38/html/Widgets/TitleBox
-share/rt38/html/Widgets/TitleBoxEnd
-share/rt38/html/Widgets/TitleBoxStart
-share/rt38/html/autohandler
-share/rt38/html/dhandler
-share/rt38/html/index.html
-share/rt38/html/l
-@dirrm share/rt38/etc
-@exec mkdir -p %D/share/rt38/plugins
-@dirrm share/rt38/plugins
-@dirrm share/rt38/po
-@dirrm share/rt38/html/Widgets/Form
-@dirrm share/rt38/html/Widgets
-@dirrm share/rt38/html/User/Groups
-@dirrm share/rt38/html/User/Elements
-@dirrm share/rt38/html/User
-@dirrm share/rt38/html/Tools/Reports/Elements
-@dirrm share/rt38/html/Tools/Reports
-@dirrm share/rt38/html/Tools/Elements
-@dirrm share/rt38/html/Tools
-@dirrm share/rt38/html/Ticket/Graphs/Elements
-@dirrm share/rt38/html/Ticket/Graphs
-@dirrm share/rt38/html/Ticket/Elements
-@dirrm share/rt38/html/Ticket/Attachment/WithHeaders
-@dirrm share/rt38/html/Ticket/Attachment
-@dirrm share/rt38/html/Ticket
-@dirrm share/rt38/html/SelfService/Elements
-@dirrm share/rt38/html/SelfService/Attachment
-@dirrm share/rt38/html/SelfService
-@dirrm share/rt38/html/Search/Elements
-@dirrm share/rt38/html/Search
-@dirrm share/rt38/html/REST/1.0/ticket
-@dirrm share/rt38/html/REST/1.0/search
-@dirrm share/rt38/html/REST/1.0/NoAuth
-@dirrm share/rt38/html/REST/1.0/Forms/user
-@dirrm share/rt38/html/REST/1.0/Forms/transaction
-@dirrm share/rt38/html/REST/1.0/Forms/ticket
-@dirrm share/rt38/html/REST/1.0/Forms/queue
-@dirrm share/rt38/html/REST/1.0/Forms/group
-@dirrm share/rt38/html/REST/1.0/Forms/attachment
-@dirrm share/rt38/html/REST/1.0/Forms
-@dirrm share/rt38/html/REST/1.0
-@dirrm share/rt38/html/REST
-@dirrm share/rt38/html/Prefs/Elements
-@dirrm share/rt38/html/Prefs
-@dirrm share/rt38/html/NoAuth/js/scriptaculous
-@dirrm share/rt38/html/NoAuth/js/prototype
-@dirrm share/rt38/html/NoAuth/js/IE7
-@dirrm share/rt38/html/NoAuth/js
-@dirrm share/rt38/html/NoAuth/images/css
-@dirrm share/rt38/html/NoAuth/images
-@dirrm share/rt38/html/NoAuth/iCal
-@dirrm share/rt38/html/NoAuth/css/web2/images/source
-@dirrm share/rt38/html/NoAuth/css/web2/images
-@dirrm share/rt38/html/NoAuth/css/web2
-@dirrm share/rt38/html/NoAuth/css/3.5-default
-@dirrm share/rt38/html/NoAuth/css/3.4-compat
-@dirrm share/rt38/html/NoAuth/css
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/tablecommands
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/simplecommands
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/lang
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/dragresizetable
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/bbcode/_sample
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/bbcode
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/autogrow
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/js
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/images
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dtd
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_template/images
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_template
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_select
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_link
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_image
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_flash
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_docprops
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_about/sponsors
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_about
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/common/images
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/common
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/behaviors
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/css
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/wsc
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor
-@dirrm share/rt38/html/NoAuth/RichText
-@dirrm share/rt38/html/NoAuth
-@dirrm share/rt38/html/Install/Elements
-@dirrm share/rt38/html/Install
-@dirrm share/rt38/html/Helpers/Toggle
-@dirrm share/rt38/html/Helpers/Autocomplete
-@dirrm share/rt38/html/Helpers
-@dirrm share/rt38/html/Elements/RT__User
-@dirrm share/rt38/html/Elements/RT__Ticket
-@dirrm share/rt38/html/Elements/RT__Template
-@dirrm share/rt38/html/Elements/RT__Scrip
-@dirrm share/rt38/html/Elements/RT__Queue
-@dirrm share/rt38/html/Elements/RT__Group
-@dirrm share/rt38/html/Elements/GnuPG
-@dirrm share/rt38/html/Elements/CollectionAsTable
-@dirrm share/rt38/html/Elements
-@dirrm share/rt38/html/Download/Tabular
-@dirrm share/rt38/html/Download/CustomFieldValue
-@dirrm share/rt38/html/Download
-@dirrm share/rt38/html/Dashboards/Elements/ShowPortlet
-@dirrm share/rt38/html/Dashboards/Elements
-@dirrm share/rt38/html/Dashboards
-@dirrm share/rt38/html/Approvals/Elements
-@dirrm share/rt38/html/Approvals
-@dirrm share/rt38/html/Admin/Users
-@dirrm share/rt38/html/Admin/Tools/Shredder/Elements/Object
-@dirrm share/rt38/html/Admin/Tools/Shredder/Elements/Error
-@dirrm share/rt38/html/Admin/Tools/Shredder/Elements
-@dirrm share/rt38/html/Admin/Tools/Shredder/Dumps
-@dirrm share/rt38/html/Admin/Tools/Shredder
-@dirrm share/rt38/html/Admin/Tools
-@dirrm share/rt38/html/Admin/Queues
-@dirrm share/rt38/html/Admin/Groups
-@dirrm share/rt38/html/Admin/Global/CustomFields
-@dirrm share/rt38/html/Admin/Global
-@dirrm share/rt38/html/Admin/Elements
-@dirrm share/rt38/html/Admin/CustomFields
-@dirrm share/rt38/html/Admin
-@dirrm share/rt38/html
-@dirrm share/rt38/lib
-@dirrm share/rt38
-%%PORTDOCS%%@dirrm %%DOCSDIR%%
-@dirrm %%SITE_PERL%%/RT/URI
-@dirrm %%SITE_PERL%%/RT/Test
-@dirrm %%SITE_PERL%%/RT/Shredder/Plugin/Base
-@dirrm %%SITE_PERL%%/RT/Shredder/Plugin
-@dirrm %%SITE_PERL%%/RT/Shredder
-@dirrm %%SITE_PERL%%/RT/Search
-@dirrm %%SITE_PERL%%/RT/Report/Tickets
-@dirrm %%SITE_PERL%%/RT/Report
-@dirrm %%SITE_PERL%%/RT/Interface/Web/Standalone
-@dirrm %%SITE_PERL%%/RT/Interface/Web/QueryBuilder
-@dirrm %%SITE_PERL%%/RT/Interface/Web/Menu
-@dirrm %%SITE_PERL%%/RT/Interface/Web
-@dirrm %%SITE_PERL%%/RT/Interface/Email/Filter
-@dirrm %%SITE_PERL%%/RT/Interface/Email/Auth
-@dirrm %%SITE_PERL%%/RT/Interface/Email
-@dirrm %%SITE_PERL%%/RT/Interface
-@dirrm %%SITE_PERL%%/RT/I18N
-@dirrm %%SITE_PERL%%/RT/Graph
-@dirrm %%SITE_PERL%%/RT/CustomFieldValues
-@dirrm %%SITE_PERL%%/RT/Crypt
-@dirrm %%SITE_PERL%%/RT/Condition
-@dirrm %%SITE_PERL%%/RT/Approval/Rule
-@dirrm %%SITE_PERL%%/RT/Approval
-@dirrm %%SITE_PERL%%/RT/Action
-@dirrm %%SITE_PERL%%/RT
-@dirrm etc/rt38
-@dirrmtry www/rt38