Index: head/www/rt40/Makefile =================================================================== --- head/www/rt40/Makefile (revision 380771) +++ head/www/rt40/Makefile (revision 380772) @@ -1,209 +1,211 @@ # $FreeBSD$ PORTNAME= rt -PORTVERSION= 4.0.22 -PORTREVISION= 1 +PORTVERSION= 4.0.23 CATEGORIES= www MASTER_SITES= http://download.bestpractical.com/pub/rt/release/ PKGNAMESUFFIX= 40 MAINTAINER= matthew@FreeBSD.org COMMENT= RT is an industrial-grade ticketing system written in Perl CONFLICTS_INSTALL= rt-3.8* rt42-4.2* brlcad-[0-9]* NO_ARCH= yes # See doc/web_deployment.pod for info on the choices of webserver / # webapp combinations. Note: if using apache, apache-2.2+ is # recommended. For deployment with nginx, use the SPAWN_FCGI method # or the builtin webserver with a FCGI handler. # # The builtin standalone PSGI based webserver is always available, no # matter what choice of web deployment platform, or none, that you # make. Best Practical state that this is really only suitable for # development usage, although I have heard reports of people using it # successfully for medium sized deployments. If you only want the # builtin webserver, simply deselect all of the web options. # # See doc/full_text_indexing.pod if you need to set up full text # indexes on your ticket database. PostgreSQL or Oracle are # recommended in this case: the MYSQL / SphinxSearch combination # mentioned in the docs is currently unsupported in the ports, but see # http://www.infracaninophile.co.uk/articles/sphinxse.html OPTIONS_DEFINE= DEV GD GPG GRAPHVIZ SSL_MAILGATE DOCS OPTIONS_SINGLE= DB OPTIONS_SINGLE_DB= MYSQL ORACLE PGSQL SQLITE OPTIONS_RADIO= WEB OPTIONS_RADIO_WEB= AP_MODFASTCGI AP_MODPERL LIGHTTPD SPAWN_FCGI OPTIONS_DEFAULT= AP_MODPERL GD GPG MYSQL USERS?= www GROUPS?= rt www RUN_DEPENDS+= ${LOCALBASE}/bin/jsmin:${PORTSDIR}/devel/jsmin .include "${.CURDIR}/Makefile.cpan" RUN_DEPENDS+= ${CORE_DEPS} \ ${MASON_DEPS} \ ${PSGI_DEPS} \ ${MAILGATE_DEPS} \ ${CLI_DEPS} \ ${ICAL_DEPS} \ ${SMTP_DEPS} \ ${DASHBOARDS_DEPS} \ ${USERLOGO_DEPS} \ ${HTML_DOC_DEPS} USES= cpe perl5 CPE_VENDOR= bestpractical -RT_ETC_PATH?= ${PREFIX}/etc/${PORTNAME}${PKGNAMESUFFIX} RT_LAYOUT= FreeBSD +RT_ETC_DIR?= etc/${PORTNAME}${PKGNAMESUFFIX} DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}${PKGNAMESUFFIX} DATADIR= ${PREFIX}/share/${PORTNAME}${PKGNAMESUFFIX} +RT_ETC_PATH= ${PREFIX}/${RT_ETC_DIR} AP_MODPERL_DESC= Deploy with apache and mod_perl AP_MODPERL_RUN_DEPENDS= ${MODPERL2_DEPS} AP_MODPERL_CONFIGURE_ON= --with-apachectl=${LOCALBASE}/sbin/apachectl AP_MODFASTCGI_DESC= Deploy with apache and mod_fastcgi AP_MODFASTCGI_USE= APACHE_RUN=22+ AP_MODFASTCGI_RUN_DEPENDS= ${LOCALBASE}/${APACHEMODDIR}/mod_fastcgi.so:${PORTSDIR}/www/mod_fastcgi \ ${FASTCGI_DEPS} AP_MODFASTCGI_CONFIGURE_ON= --with-apachectl=${LOCALBASE}/sbin/apachectl LIGHTTPD_DESC= Deploy with lighttpd and mod_fastcgi LIGHTTPD_RUN_DEPENDS= ${LOCALBASE}/sbin/lighttpd:${PORTSDIR}/www/lighttpd SPAWN_FCGI_DESC= Deploy with spawn_fcgi SPAWN_FCGI_RUN_DEPENDS= ${LOCALBASE}/bin/spawn-fcgi:${PORTSDIR}/www/spawn-fcgi MYSQL_USE= MYSQL=yes MYSQL_RUN_DEPENDS= ${MYSQL_DEPS} PGSQL_USES= pgsql PGSQL_RUN_DEPENDS= ${PGSQL_DEPS} ORACLE_RUN_DEPENDS= ${ORACLE_DEPS} SQLITE_USE= SQLITE=yes SQLITE_RUN_DEPENDS= ${SQLITE_DEPS} DEV_DESC= Configure for Developers DEV_RUN_DEPENDS= ${DEV_DEPS} DEV_CONFIGURE_ON= --enable-developer-mode SSL_MAILGATE_DESC= Enable HTTPS support for rt-mailgate SSL_MAILGATE_RUN_DEPENDS= ${SSL_MAILGATE_DEPS} SSL_MAILGATE_CONFIGURE_ENABLE= ssl-mailgate GRAPHVIZ_RUN_DEPENDS= ${GRAPHVIZ_DEPS} GRAPHVIZ_CONFIGURE_ENABLE= graphviz GPG_DESC= Enable GnuPG support GPG_RUN_DEPENDS= ${GPG_DEPS} GPG_CONFIGURE_ENABLE= gpg GD_DESC= Enable GD Graphs and Charts GD_RUN_DEPENDS= ${GD_DEPS} GD_CONFIGURE_ENABLE= gd BUILD_DEPENDS+= ${RUN_DEPENDS} .include .if !${PORT_OPTIONS:MMYSQL} && !${PORT_OPTIONS:MPGSQL} && \ ! ${PORT_OPTIONS:MORACLE} && !${PORT_OPTIONS:MSQLITE} IGNORE= please select one of MYSQL, PGSQL, ORACLE or SQLITE .endif .if ${PORT_OPTIONS:MMYSQL} DB_TYPE= mysql .endif .if ${PORT_OPTIONS:MPGSQL} DB_TYPE= Pg .endif .if ${PORT_OPTIONS:MORACLE} DB_TYPE= Oracle .endif .if ${PORT_OPTIONS:MSQLITE} DB_TYPE= SQLite .endif .if ${PORT_OPTIONS:MPGSQL} DB_DBA_USER?= pgsql .else DB_DBA_USER?= root .endif DB_DBA_PASSWORD?= DB_USER?= rt_user DB_PASSWORD?= rt_pass DB_HOST?= localhost DB_DATABASE?= rt4 WEB_USER?= ${WWWOWN} WEB_GROUP?= ${WWWGRP} LIBS_GROUP?= wheel 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} CONFIGURE_ENV+= PERL=${LOCALBASE}/bin/perl PKGMESSAGE= ${WRKDIR}/pkg-message SUB_FILES= pkg-message SUB_LIST= RT_ETC_PATH=${RT_ETC_PATH} +PLIST_SUB= RT_ETC_DIR=${RT_ETC_DIR} 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 (rt4)" @${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 ${PORT_OPTIONS:MSQLITE} @${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%%!${PREFIX}/${SITE_PERL_REL}!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}/lib/RT/Interface/CLI.pm && \ ${RM} ${WRKSRC}/lib/RT/Interface/CLI.pm.bak pre-install: @${RM} -f ${WRKSRC}/lib/RT.pm.in post-install: + @${RM} -rf ${STAGEDIR}/${WWWDIR}${PKGNAMESUFFIX} ${MKDIR} ${STAGEDIR}${DOCSDIR}/upgrade (cd ${WRKSRC}/etc && \ ${COPYTREE_SHARE} upgrade ${STAGEDIR}${DOCSDIR} "! -name *\.in") .include Index: head/www/rt40/Makefile.cpan =================================================================== --- head/www/rt40/Makefile.cpan (revision 380771) +++ head/www/rt40/Makefile.cpan (revision 380772) @@ -1,141 +1,141 @@ ############################################################################### ### 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 ### Term::ReadLine core ### ### Digest::base core ### Time::HiRes core ### Errno core ### CGI 3.38 core ### CGI::Cookie 1.20 core ### Storable 2.08 core ### Getopt::Long 2.24 core ### Pod::Usage core ### File::Find core ### Net::SMTP core ### Digest::MD5 2.39 core ### Digest::SHA 5.47 core ### File::Temp 0.22 core ### Sys::Syslog 0.27 core CORE_DEPS= p5-CSS-Squish>=0.06:${PORTSDIR}/textproc/p5-CSS-Squish \ p5-Cache-Simple-TimedExpiry>0:${PORTSDIR}/devel/p5-Cache-Simple-TimedExpiry \ p5-Class-Accessor>=0.34:${PORTSDIR}/devel/p5-Class-Accessor \ p5-Class-ReturnValue>=0.40:${PORTSDIR}/devel/p5-Class-ReturnValue \ p5-DBI>=1.37:${PORTSDIR}/databases/p5-DBI \ p5-DBIx-SearchBuilder>=1.59:${PORTSDIR}/databases/p5-DBIx-SearchBuilder \ p5-DateTime-Locale>=0.40:${PORTSDIR}/devel/p5-DateTime-Locale \ p5-DateTime>=0.44:${PORTSDIR}/devel/p5-DateTime \ p5-Devel-GlobalDestruction>0:${PORTSDIR}/devel/p5-Devel-GlobalDestruction \ p5-Devel-StackTrace>=1.30:${PORTSDIR}/devel/p5-Devel-StackTrace \ p5-Email-Address>=1.89.5:${PORTSDIR}/mail/p5-Email-Address \ - p5-Encode>=2.39:${PORTSDIR}/converters/p5-Encode \ + p5-Encode>=2.64:${PORTSDIR}/converters/p5-Encode \ p5-File-ShareDir>0:${PORTSDIR}/devel/p5-File-ShareDir \ p5-HTML-Format>0:${PORTSDIR}/textproc/p5-HTML-Format \ p5-HTML-Parser>0:${PORTSDIR}/www/p5-HTML-Parser \ p5-HTML-Quoted>0:${PORTSDIR}/textproc/p5-HTML-Quoted \ p5-HTML-Scrubber>=0.08:${PORTSDIR}/www/p5-HTML-Scrubber \ p5-HTML-Tree>0:${PORTSDIR}/www/p5-HTML-Tree \ p5-List-MoreUtils>0:${PORTSDIR}/lang/p5-List-MoreUtils \ p5-Locale-Maketext-Fuzzy>0:${PORTSDIR}/devel/p5-Locale-Maketext-Fuzzy \ p5-Locale-Maketext-Lexicon>=0.32:${PORTSDIR}/devel/p5-Locale-Maketext-Lexicon \ p5-Locale-Maketext>=1.06:${PORTSDIR}/devel/p5-Locale-Maketext \ p5-Log-Dispatch>=2.23:${PORTSDIR}/devel/p5-Log-Dispatch \ p5-MIME-Tools>=5.425,2:${PORTSDIR}/mail/p5-MIME-Tools \ p5-Mail-Tools>=1.57:${PORTSDIR}/mail/p5-Mail-Tools \ p5-Module-Versions-Report>=1.05:${PORTSDIR}/devel/p5-Module-Versions-Report \ p5-Net-CIDR>0:${PORTSDIR}/net-mgmt/p5-Net-CIDR \ p5-Regexp-Common-net-CIDR>0:${PORTSDIR}/textproc/p5-Regexp-Common-net-CIDR \ p5-Regexp-Common>0:${PORTSDIR}/textproc/p5-Regexp-Common \ p5-Regexp-IPv6>0:${PORTSDIR}/textproc/p5-Regexp-IPv6 \ p5-Text-Password-Pronounceable>0:${PORTSDIR}/security/p5-Text-Password-Pronounceable \ p5-Text-Quoted>=2.02:${PORTSDIR}/textproc/p5-Text-Quoted \ p5-Text-Template>=1.44:${PORTSDIR}/textproc/p5-Text-Template \ p5-Text-Wrapper>0:${PORTSDIR}/textproc/p5-Text-Wrapper \ p5-Time-modules>0:${PORTSDIR}/devel/p5-Time-modules \ p5-Tree-Simple>=1.04:${PORTSDIR}/devel/p5-Tree-Simple \ p5-UNIVERSAL-require>0:${PORTSDIR}/devel/p5-UNIVERSAL-require MASON_DEPS= p5-Apache-Session>=1.53:${PORTSDIR}/www/p5-Apache-Session \ p5-HTML-Mason>=1.43:${PORTSDIR}/www/p5-HTML-Mason \ p5-IPC-Run3>0:${PORTSDIR}/devel/p5-IPC-Run3 \ p5-JSON>0:${PORTSDIR}/converters/p5-JSON \ p5-Text-WikiFormat>=0.76:${PORTSDIR}/textproc/p5-Text-WikiFormat \ p5-XML-RSS>=1.05:${PORTSDIR}/textproc/p5-XML-RSS PSGI_DEPS= p5-CGI-Emulate-PSGI>0:${PORTSDIR}/www/p5-CGI-Emulate-PSGI \ p5-CGI-PSGI>=0.12:${PORTSDIR}/www/p5-CGI-PSGI \ p5-HTML-Mason-PSGIHandler>=0.52:${PORTSDIR}/www/p5-HTML-Mason-PSGIHandler \ p5-Plack>=0.9971:${PORTSDIR}/www/p5-Plack \ p5-Starlet>0:${PORTSDIR}/www/p5-Starlet MAILGATE_DEPS= p5-libwww>6.0:${PORTSDIR}/www/p5-libwww SSL_MAILGATE_DEPS= p5-Crypt-SSLeay>0:${PORTSDIR}/security/p5-Crypt-SSLeay \ p5-LWP-Protocol-https>0:${PORTSDIR}/www/p5-LWP-Protocol-https \ p5-Mozilla-CA>0:${PORTSDIR}/www/p5-Mozilla-CA CLI_DEPS= p5-HTTP-Message>0:${PORTSDIR}/www/p5-HTTP-Message \ p5-libwww>0:${PORTSDIR}/www/p5-libwww \ p5-Term-ReadKey>0:${PORTSDIR}/devel/p5-Term-ReadKey # ports to add: # Test::Email # Test::Builder >= 0.90 DEV_DEPS= p5-Email-Abstract>0:${PORTSDIR}/mail/p5-Email-Abstract \ p5-HTML-Form>0:${PORTSDIR}/www/p5-HTML-Form \ p5-HTML-Parser>0:${PORTSDIR}/www/p5-HTML-Parser \ p5-Log-Dispatch-Perl>0:${PORTSDIR}/devel/p5-Log-Dispatch-Perl \ p5-Module-Refresh>=0.03:${PORTSDIR}/devel/p5-Module-Refresh \ p5-String-ShellQuote>0:${PORTSDIR}/textproc/p5-String-ShellQuote \ p5-Test-Deep>0:${PORTSDIR}/devel/p5-Test-Deep \ p5-Test-Expect>=0.31:${PORTSDIR}/devel/p5-Test-Expect \ p5-Test-LongString>0:${PORTSDIR}/devel/p5-Test-LongString \ p5-Test-MockTime>0:${PORTSDIR}/devel/p5-Test-MockTime \ p5-Test-WWW-Mechanize-PSGI>0:${PORTSDIR}/devel/p5-Test-WWW-Mechanize-PSGI \ p5-Test-WWW-Mechanize>=1.30:${PORTSDIR}/devel/p5-Test-WWW-Mechanize \ p5-Test-Warn>0:${PORTSDIR}devel/p5-Test-Warn \ p5-WWW-Mechanize>=1.52:${PORTSDIR}/www/p5-WWW-Mechanize \ p5-Plack-Middleware-Test-StashWarnings>=0.08:${PORTSDIR}/www/p5-Plack-Middleware-Test-StashWarnings \ p5-XML-Simple>0:${PORTSDIR}/textproc/p5-XML-Simple FASTCGI_DEPS= p5-FCGI-ProcManager>0:${PORTSDIR}/www/p5-FCGI-ProcManager \ p5-FCGI>=0.74:${PORTSDIR}/www/p5-FCGI MODPERL2_DEPS= p5-libapreq2>0:${PORTSDIR}/www/p5-libapreq2 \ p5-Apache-DBI>0:${PORTSDIR}/www/p5-Apache-DBI MYSQL_DEPS= p5-DBD-mysql>=2.1018:${PORTSDIR}/databases/p5-DBD-mysql ORACLE_DEPS= p5-DBD-Oracle>0:${PORTSDIR}/databases/p5-DBD-Oracle PGSQL_DEPS= p5-DBD-Pg>=3.3.1:${PORTSDIR}/databases/p5-DBD-Pg SQLITE_DEPS= p5-DBD-SQLite>=1.00:${PORTSDIR}/databases/p5-DBD-SQLite GPG_DEPS= p5-GnuPG-Interface>0:${PORTSDIR}/security/p5-GnuPG-Interface \ p5-PerlIO-eol>0:${PORTSDIR}/devel/p5-PerlIO-eol ICAL_DEPS= p5-Data-ICal>0:${PORTSDIR}/deskutils/p5-Data-ICal SMTP_DEPS= ## -- only needs perl core modules DASHBOARDS_DEPS= p5-HTML-RewriteAttributes>=0.05:${PORTSDIR}/textproc/p5-HTML-RewriteAttributes \ p5-MIME-Types>0:${PORTSDIR}/mail/p5-MIME-Types \ p5-URI>=1.59:${PORTSDIR}/net/p5-URI GRAPHVIZ_DEPS= p5-GraphViz>0:${PORTSDIR}/graphics/p5-GraphViz \ p5-IPC-Run>=0.90:${PORTSDIR}/devel/p5-IPC-Run GD_DEPS= p5-GD>0:${PORTSDIR}/graphics/p5-GD \ p5-GD-Graph>0:${PORTSDIR}/graphics/p5-GD-Graph \ p5-GD-TextUtil>0:${PORTSDIR}/graphics/p5-GD-TextUtil USERLOGO_DEPS= p5-Convert-Color>0:${PORTSDIR}/graphics/p5-Convert-Color HTML_DOC_DEPS= p5-HTML-Parser>0:${PORTSDIR}/www/p5-HTML-Parser \ p5-Pod-Simple>=3.24:${PORTSDIR}/textproc/p5-Pod-Simple Index: head/www/rt40/distinfo =================================================================== --- head/www/rt40/distinfo (revision 380771) +++ head/www/rt40/distinfo (revision 380772) @@ -1,2 +1,2 @@ -SHA256 (rt-4.0.22.tar.gz) = dfcadacef6e2854a0761b0dbd83e9e8c19e31d933712e9eb21ef3fb0c28ce5aa -SIZE (rt-4.0.22.tar.gz) = 6940740 +SHA256 (rt-4.0.23.tar.gz) = 39e1d161a183d3d97188c87493465331d59332ff878fa328c7642bc4f75df9c9 +SIZE (rt-4.0.23.tar.gz) = 6939622 Index: head/www/rt40/pkg-plist =================================================================== --- head/www/rt40/pkg-plist (revision 380771) +++ head/www/rt40/pkg-plist (revision 380772) @@ -1,1735 +1,1474 @@ @group rt bin/rt bin/rt-crontool bin/rt-mailgate +@dir(root,rt,0750) %%RT_ETC_DIR%% @mode 0440 -etc/rt40/RT_Config.pm -@unexec if cmp -s %D/etc/rt40/RT_SiteConfig.pm-dist %D/etc/rt40/RT_SiteConfig.pm ; then rm -f %D/etc/rt40/RT_SiteConfig.pm; fi -etc/rt40/RT_SiteConfig.pm-dist +%%RT_ETC_DIR%%/RT_Config.pm +@unexec if cmp -s %D/%%RT_ETC_DIR%%/RT_SiteConfig.pm-dist %D/%%RT_ETC_DIR%%/RT_SiteConfig.pm ; then rm -f %D/%%RT_ETC_DIR%%/RT_SiteConfig.pm; fi +%%RT_ETC_DIR%%/RT_SiteConfig.pm-dist @exec [ -f %B/RT_SiteConfig.pm ] || cp -p %D/%F %B/RT_SiteConfig.pm -@mode -etc/rt40/acl.Oracle -etc/rt40/acl.Pg -etc/rt40/acl.mysql -etc/rt40/initialdata -etc/rt40/schema.Oracle -etc/rt40/schema.Pg -etc/rt40/schema.SQLite -etc/rt40/schema.mysql -@exec chmod 0750 %D/etc/rt40 -@exec chgrp rt %D/etc/rt40 +%%RT_ETC_DIR%%/acl.Oracle +%%RT_ETC_DIR%%/acl.Pg +%%RT_ETC_DIR%%/acl.mysql +%%RT_ETC_DIR%%/initialdata +%%RT_ETC_DIR%%/schema.Oracle +%%RT_ETC_DIR%%/schema.Pg +%%RT_ETC_DIR%%/schema.SQLite +%%RT_ETC_DIR%%/schema.mysql @group wheel +@mode %%SITE_PERL%%/RT.pm %%SITE_PERL%%/RT/ACE.pm %%SITE_PERL%%/RT/ACL.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/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/SendEmail.pm %%SITE_PERL%%/RT/Action/SetPriority.pm %%SITE_PERL%%/RT/Action/SetStatus.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/Article.pm %%SITE_PERL%%/RT/Articles.pm %%SITE_PERL%%/RT/Attachment.pm %%SITE_PERL%%/RT/Attachments.pm %%SITE_PERL%%/RT/Attribute.pm %%SITE_PERL%%/RT/Attributes.pm %%SITE_PERL%%/RT/Base.pm %%SITE_PERL%%/RT/CachedGroupMember.pm %%SITE_PERL%%/RT/CachedGroupMembers.pm %%SITE_PERL%%/RT/Class.pm %%SITE_PERL%%/RT/Classes.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/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/CustomFieldValues.pm %%SITE_PERL%%/RT/CustomFieldValues/External.pm %%SITE_PERL%%/RT/CustomFieldValues/Groups.pm %%SITE_PERL%%/RT/CustomFields.pm %%SITE_PERL%%/RT/Dashboard.pm %%SITE_PERL%%/RT/Dashboard/Mailer.pm %%SITE_PERL%%/RT/Dashboards.pm %%SITE_PERL%%/RT/Date.pm %%SITE_PERL%%/RT/EmailParser.pm %%SITE_PERL%%/RT/Generated.pm %%SITE_PERL%%/RT/Generated.pm.in %%SITE_PERL%%/RT/Graph/Tickets.pm %%SITE_PERL%%/RT/Group.pm %%SITE_PERL%%/RT/GroupMember.pm %%SITE_PERL%%/RT/GroupMembers.pm %%SITE_PERL%%/RT/Groups.pm %%SITE_PERL%%/RT/Handle.pm %%SITE_PERL%%/RT/I18N.pm %%SITE_PERL%%/RT/I18N/cs.pm %%SITE_PERL%%/RT/I18N/de.pm %%SITE_PERL%%/RT/I18N/fr.pm %%SITE_PERL%%/RT/I18N/i_default.pm %%SITE_PERL%%/RT/I18N/ru.pm %%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/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/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/Lifecycle.pm %%SITE_PERL%%/RT/Link.pm %%SITE_PERL%%/RT/Links.pm %%SITE_PERL%%/RT/ObjectClass.pm %%SITE_PERL%%/RT/ObjectClasses.pm %%SITE_PERL%%/RT/ObjectCustomField.pm %%SITE_PERL%%/RT/ObjectCustomFieldValue.pm %%SITE_PERL%%/RT/ObjectCustomFieldValues.pm %%SITE_PERL%%/RT/ObjectCustomFields.pm %%SITE_PERL%%/RT/ObjectTopic.pm %%SITE_PERL%%/RT/ObjectTopics.pm %%SITE_PERL%%/RT/Plugin.pm %%SITE_PERL%%/RT/Pod/HTML.pm %%SITE_PERL%%/RT/Pod/HTMLBatch.pm %%SITE_PERL%%/RT/Pod/Search.pm %%SITE_PERL%%/RT/Principal.pm %%SITE_PERL%%/RT/Principals.pm %%SITE_PERL%%/RT/Queue.pm %%SITE_PERL%%/RT/Queues.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/ScripActions.pm %%SITE_PERL%%/RT/ScripCondition.pm %%SITE_PERL%%/RT/ScripConditions.pm %%SITE_PERL%%/RT/Scrips.pm %%SITE_PERL%%/RT/Search.pm %%SITE_PERL%%/RT/Search/ActiveTicketsInQueue.pm %%SITE_PERL%%/RT/Search/FromSQL.pm %%SITE_PERL%%/RT/Search/Googleish.pm %%SITE_PERL%%/RT/SearchBuilder.pm %%SITE_PERL%%/RT/SharedSetting.pm %%SITE_PERL%%/RT/SharedSettings.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/Squish.pm %%SITE_PERL%%/RT/Squish/CSS.pm %%SITE_PERL%%/RT/Squish/JS.pm %%SITE_PERL%%/RT/StyleGuide.pod %%SITE_PERL%%/RT/System.pm %%SITE_PERL%%/RT/Template.pm %%SITE_PERL%%/RT/Templates.pm %%SITE_PERL%%/RT/Test.pm %%SITE_PERL%%/RT/Test/Apache.pm %%SITE_PERL%%/RT/Test/Email.pm %%SITE_PERL%%/RT/Test/GnuPG.pm %%SITE_PERL%%/RT/Test/Web.pm %%SITE_PERL%%/RT/Ticket.pm %%SITE_PERL%%/RT/Tickets.pm %%SITE_PERL%%/RT/Tickets_SQL.pm %%SITE_PERL%%/RT/Topic.pm %%SITE_PERL%%/RT/Topics.pm %%SITE_PERL%%/RT/Transaction.pm %%SITE_PERL%%/RT/Transactions.pm %%SITE_PERL%%/RT/URI.pm %%SITE_PERL%%/RT/URI/a.pm %%SITE_PERL%%/RT/URI/base.pm %%SITE_PERL%%/RT/URI/fsck_com_article.pm %%SITE_PERL%%/RT/URI/fsck_com_rt.pm %%SITE_PERL%%/RT/URI/t.pm %%SITE_PERL%%/RT/User.pm %%SITE_PERL%%/RT/Users.pm %%SITE_PERL%%/RT/Util.pm @group rt sbin/rt-attributes-viewer sbin/rt-clean-sessions sbin/rt-dump-metadata sbin/rt-email-dashboards sbin/rt-email-digest sbin/rt-email-group-admin sbin/rt-fulltext-indexer sbin/rt-preferences-viewer sbin/rt-server sbin/rt-server.fcgi sbin/rt-session-viewer sbin/rt-setup-database sbin/rt-setup-fulltext-index sbin/rt-shredder sbin/rt-test-dependencies sbin/rt-validate-aliases sbin/rt-validator sbin/standalone_httpd @group wheel %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/UPGRADING-2.0 %%PORTDOCS%%%%DOCSDIR%%/UPGRADING-3.0 %%PORTDOCS%%%%DOCSDIR%%/UPGRADING-3.2 %%PORTDOCS%%%%DOCSDIR%%/UPGRADING-3.4 %%PORTDOCS%%%%DOCSDIR%%/UPGRADING-3.6 %%PORTDOCS%%%%DOCSDIR%%/UPGRADING-3.8 %%PORTDOCS%%%%DOCSDIR%%/UPGRADING-4.0 %%PORTDOCS%%%%DOCSDIR%%/UPGRADING.mysql %%PORTDOCS%%%%DOCSDIR%%/automating_rt.pod %%PORTDOCS%%%%DOCSDIR%%/backups.pod %%PORTDOCS%%%%DOCSDIR%%/customizing/approvals.pod %%PORTDOCS%%%%DOCSDIR%%/customizing/articles_introduction.pod %%PORTDOCS%%%%DOCSDIR%%/customizing/lifecycles.pod %%PORTDOCS%%%%DOCSDIR%%/customizing/search_result_columns.pod %%PORTDOCS%%%%DOCSDIR%%/customizing/styling_rt.pod %%PORTDOCS%%%%DOCSDIR%%/customizing/templates.pod %%PORTDOCS%%%%DOCSDIR%%/customizing/timezones_in_charts.pod %%PORTDOCS%%%%DOCSDIR%%/extending/clickable_links.pod %%PORTDOCS%%%%DOCSDIR%%/extending/external_custom_fields.pod %%PORTDOCS%%%%DOCSDIR%%/extending/using_forms_widgets.pod %%PORTDOCS%%%%DOCSDIR%%/full_text_indexing.pod %%PORTDOCS%%%%DOCSDIR%%/glossary.pod %%PORTDOCS%%%%DOCSDIR%%/hacking.pod %%PORTDOCS%%%%DOCSDIR%%/images/action-decline.png %%PORTDOCS%%%%DOCSDIR%%/images/global-lifecycle-group-rights.png %%PORTDOCS%%%%DOCSDIR%%/images/lifecycle-choices.png %%PORTDOCS%%%%DOCSDIR%%/images/order-history-example.png %%PORTDOCS%%%%DOCSDIR%%/images/theme_editor_defaults.png %%PORTDOCS%%%%DOCSDIR%%/initialdata.pod %%PORTDOCS%%%%DOCSDIR%%/network-diagram.svg %%PORTDOCS%%%%DOCSDIR%%/schema.dot %%PORTDOCS%%%%DOCSDIR%%/security.pod %%PORTDOCS%%%%DOCSDIR%%/writing_extensions.pod +%%PORTDOCS%%%%DOCSDIR%%/writing_portlets.pod %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.1.0/acl.Oracle %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.1.0/acl.Pg %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.1.0/acl.SQLite %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.1.0/acl.mysql %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.1.0/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.1.0/schema.Oracle %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.1.0/schema.Pg %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.1.0/schema.SQLite %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.1.0/schema.mysql %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.1.15/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.1.17/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.3.0/acl.Oracle %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.3.0/acl.Pg %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.3.0/acl.SQLite %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.3.0/acl.mysql %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.3.0/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.3.0/schema.Oracle %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.3.0/schema.Pg %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.3.0/schema.mysql %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.3.11/acl.Oracle %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.3.11/acl.Pg %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.3.11/acl.SQLite %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.3.11/acl.mysql %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.3.11/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.3.11/schema.Oracle %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.3.11/schema.Pg %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.3.11/schema.SQLite %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.3.11/schema.mysql %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.5.1/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.7.1/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.7.10/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.7.15/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.7.19/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.7.3/schema.Oracle %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.7.3/schema.Pg %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.7.3/schema.mysql %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.7.81/schema.Oracle %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.7.81/schema.mysql %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.7.82/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.7.85/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.7.86/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.7.87/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.8-ical-extension %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.8.0/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.8.1/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.8.2/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.8.3/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.8.3/schema.Pg %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.8.4/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.8.6/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.8.8/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.8.9/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.9.1/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.9.2/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.9.3/schema.Oracle %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.9.3/schema.Pg %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.9.3/schema.SQLite %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.9.3/schema.mysql %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.9.5/backcompat %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.9.5/schema.Oracle %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.9.5/schema.Pg %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.9.5/schema.SQLite %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.9.5/schema.mysql %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.9.6/schema.Oracle %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.9.6/schema.Pg %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.9.6/schema.SQLite %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.9.6/schema.mysql %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.9.7/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.9.7/schema.Oracle %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.9.7/schema.Pg %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.9.7/schema.SQLite %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.9.7/schema.mysql %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.9.8/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.9.8/schema.Oracle %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.9.8/schema.Pg %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.9.8/schema.SQLite %%PORTDOCS%%%%DOCSDIR%%/upgrade/3.9.8/schema.mysql %%PORTDOCS%%%%DOCSDIR%%/upgrade/4.0-customfield-checkbox-extension %%PORTDOCS%%%%DOCSDIR%%/upgrade/4.0.0rc2/schema.mysql %%PORTDOCS%%%%DOCSDIR%%/upgrade/4.0.0rc4/schema.Oracle %%PORTDOCS%%%%DOCSDIR%%/upgrade/4.0.0rc4/schema.Pg %%PORTDOCS%%%%DOCSDIR%%/upgrade/4.0.0rc4/schema.mysql %%PORTDOCS%%%%DOCSDIR%%/upgrade/4.0.0rc7/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/4.0.1/acl.Pg %%PORTDOCS%%%%DOCSDIR%%/upgrade/4.0.1/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/4.0.3/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/4.0.4/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/4.0.6/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/4.0.6/schema.mysql %%PORTDOCS%%%%DOCSDIR%%/upgrade/4.0.9/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/4.0.12/schema.Pg %%PORTDOCS%%%%DOCSDIR%%/upgrade/4.0.12/schema.mysql %%PORTDOCS%%%%DOCSDIR%%/upgrade/4.0.12/schema.Oracle %%PORTDOCS%%%%DOCSDIR%%/upgrade/4.0.13/schema.Pg %%PORTDOCS%%%%DOCSDIR%%/upgrade/4.0.13/schema.mysql %%PORTDOCS%%%%DOCSDIR%%/upgrade/4.0.13/schema.Oracle %%PORTDOCS%%%%DOCSDIR%%/upgrade/4.0.18/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/4.0.19/content %%PORTDOCS%%%%DOCSDIR%%/upgrade/4.0.19/schema.mysql %%PORTDOCS%%%%DOCSDIR%%/upgrade/generate-rtaddressregexp %%PORTDOCS%%%%DOCSDIR%%/upgrade/sanity-check-stylesheets.pl %%PORTDOCS%%%%DOCSDIR%%/upgrade/shrink_cgm_table.pl %%PORTDOCS%%%%DOCSDIR%%/upgrade/shrink_transactions_table.pl %%PORTDOCS%%%%DOCSDIR%%/upgrade/split-out-cf-categories %%PORTDOCS%%%%DOCSDIR%%/upgrade/upgrade-articles %%PORTDOCS%%%%DOCSDIR%%/upgrade/upgrade-mysql-schema.pl %%PORTDOCS%%%%DOCSDIR%%/upgrade/vulnerable-passwords %%PORTDOCS%%%%DOCSDIR%%/web_deployment.pod +@dir %%DATADIR%%/etc %%DATADIR%%/fonts/Droid.README %%DATADIR%%/fonts/DroidSans.ttf %%DATADIR%%/fonts/DroidSansFallback.ttf %%DATADIR%%/html/Admin/Articles/Classes/CustomFields.html %%DATADIR%%/html/Admin/Articles/Classes/GroupRights.html %%DATADIR%%/html/Admin/Articles/Classes/Modify.html %%DATADIR%%/html/Admin/Articles/Classes/Objects.html %%DATADIR%%/html/Admin/Articles/Classes/Topics.html %%DATADIR%%/html/Admin/Articles/Classes/UserRights.html %%DATADIR%%/html/Admin/Articles/Classes/index.html %%DATADIR%%/html/Admin/Articles/Elements/Topics %%DATADIR%%/html/Admin/Articles/index.html %%DATADIR%%/html/Admin/CustomFields/GroupRights.html %%DATADIR%%/html/Admin/CustomFields/Modify.html %%DATADIR%%/html/Admin/CustomFields/Objects.html %%DATADIR%%/html/Admin/CustomFields/UserRights.html %%DATADIR%%/html/Admin/CustomFields/index.html %%DATADIR%%/html/Admin/Elements/AddCustomFieldValue %%DATADIR%%/html/Admin/Elements/ConfigureMyRT %%DATADIR%%/html/Admin/Elements/CreateUserCalled %%DATADIR%%/html/Admin/Elements/EditCustomField %%DATADIR%%/html/Admin/Elements/EditCustomFieldValues %%DATADIR%%/html/Admin/Elements/EditCustomFieldValuesSource %%DATADIR%%/html/Admin/Elements/EditCustomFields %%DATADIR%%/html/Admin/Elements/EditQueueWatcherGroup %%DATADIR%%/html/Admin/Elements/EditQueueWatchers %%DATADIR%%/html/Admin/Elements/EditRights %%DATADIR%%/html/Admin/Elements/EditRightsCategoryTabs %%DATADIR%%/html/Admin/Elements/EditScrip %%DATADIR%%/html/Admin/Elements/EditScrips %%DATADIR%%/html/Admin/Elements/EditTemplates %%DATADIR%%/html/Admin/Elements/EditUserComments %%DATADIR%%/html/Admin/Elements/Header %%DATADIR%%/html/Admin/Elements/ListGlobalCustomFields %%DATADIR%%/html/Admin/Elements/ListGlobalScrips %%DATADIR%%/html/Admin/Elements/ModifyTemplate %%DATADIR%%/html/Admin/Elements/PickCustomFields %%DATADIR%%/html/Admin/Elements/PickObjects %%DATADIR%%/html/Admin/Elements/Portal %%DATADIR%%/html/Admin/Elements/QueueRightsForUser %%DATADIR%%/html/Admin/Elements/SelectCustomField %%DATADIR%%/html/Admin/Elements/SelectCustomFieldLookupType %%DATADIR%%/html/Admin/Elements/SelectCustomFieldRenderType %%DATADIR%%/html/Admin/Elements/SelectCustomFieldType %%DATADIR%%/html/Admin/Elements/SelectGroups %%DATADIR%%/html/Admin/Elements/SelectModifyGroup %%DATADIR%%/html/Admin/Elements/SelectModifyQueue %%DATADIR%%/html/Admin/Elements/SelectModifyUser %%DATADIR%%/html/Admin/Elements/SelectNewGroupMembers %%DATADIR%%/html/Admin/Elements/SelectRights %%DATADIR%%/html/Admin/Elements/SelectScrip %%DATADIR%%/html/Admin/Elements/SelectScripAction %%DATADIR%%/html/Admin/Elements/SelectScripCondition %%DATADIR%%/html/Admin/Elements/SelectSingleOrMultiple %%DATADIR%%/html/Admin/Elements/SelectStage %%DATADIR%%/html/Admin/Elements/SelectTemplate %%DATADIR%%/html/Admin/Elements/SelectUsers %%DATADIR%%/html/Admin/Elements/ShowKeyInfo %%DATADIR%%/html/Admin/Global/CustomFields/Class-Article.html %%DATADIR%%/html/Admin/Global/CustomFields/Groups.html %%DATADIR%%/html/Admin/Global/CustomFields/Queue-Tickets.html %%DATADIR%%/html/Admin/Global/CustomFields/Queue-Transactions.html %%DATADIR%%/html/Admin/Global/CustomFields/Queues.html %%DATADIR%%/html/Admin/Global/CustomFields/Users.html %%DATADIR%%/html/Admin/Global/CustomFields/index.html %%DATADIR%%/html/Admin/Global/GroupRights.html %%DATADIR%%/html/Admin/Global/MyRT.html %%DATADIR%%/html/Admin/Global/Scrip.html %%DATADIR%%/html/Admin/Global/Scrips.html %%DATADIR%%/html/Admin/Global/Template.html %%DATADIR%%/html/Admin/Global/Templates.html %%DATADIR%%/html/Admin/Global/Topics.html %%DATADIR%%/html/Admin/Global/UserRights.html %%DATADIR%%/html/Admin/Global/index.html %%DATADIR%%/html/Admin/Groups/GroupRights.html %%DATADIR%%/html/Admin/Groups/History.html %%DATADIR%%/html/Admin/Groups/Members.html %%DATADIR%%/html/Admin/Groups/Modify.html %%DATADIR%%/html/Admin/Groups/UserRights.html %%DATADIR%%/html/Admin/Groups/index.html %%DATADIR%%/html/Admin/Queues/CustomField.html %%DATADIR%%/html/Admin/Queues/CustomFields.html %%DATADIR%%/html/Admin/Queues/GroupRights.html %%DATADIR%%/html/Admin/Queues/History.html %%DATADIR%%/html/Admin/Queues/Modify.html %%DATADIR%%/html/Admin/Queues/People.html %%DATADIR%%/html/Admin/Queues/Scrip.html %%DATADIR%%/html/Admin/Queues/Scrips.html %%DATADIR%%/html/Admin/Queues/Template.html %%DATADIR%%/html/Admin/Queues/Templates.html %%DATADIR%%/html/Admin/Queues/UserRights.html %%DATADIR%%/html/Admin/Queues/index.html %%DATADIR%%/html/Admin/Tools/Configuration.html %%DATADIR%%/html/Admin/Tools/Queries.html %%DATADIR%%/html/Admin/Tools/Shredder/Dumps/dhandler %%DATADIR%%/html/Admin/Tools/Shredder/Elements/DumpFileLink %%DATADIR%%/html/Admin/Tools/Shredder/Elements/Error/NoRights %%DATADIR%%/html/Admin/Tools/Shredder/Elements/Error/NoStorage %%DATADIR%%/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment %%DATADIR%%/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket %%DATADIR%%/html/Admin/Tools/Shredder/Elements/Object/RT--User %%DATADIR%%/html/Admin/Tools/Shredder/Elements/ObjectCheckBox %%DATADIR%%/html/Admin/Tools/Shredder/Elements/PluginArguments %%DATADIR%%/html/Admin/Tools/Shredder/Elements/PluginHelp %%DATADIR%%/html/Admin/Tools/Shredder/Elements/SelectObjects %%DATADIR%%/html/Admin/Tools/Shredder/Elements/SelectPlugin %%DATADIR%%/html/Admin/Tools/Shredder/autohandler %%DATADIR%%/html/Admin/Tools/Shredder/index.html %%DATADIR%%/html/Admin/Tools/Theme.html %%DATADIR%%/html/Admin/Tools/index.html %%DATADIR%%/html/Admin/Users/CustomFields.html %%DATADIR%%/html/Admin/Users/GnuPG.html %%DATADIR%%/html/Admin/Users/History.html %%DATADIR%%/html/Admin/Users/Memberships.html %%DATADIR%%/html/Admin/Users/Modify.html %%DATADIR%%/html/Admin/Users/MyRT.html %%DATADIR%%/html/Admin/Users/index.html %%DATADIR%%/html/Admin/autohandler %%DATADIR%%/html/Admin/index.html %%DATADIR%%/html/Approvals/Display.html %%DATADIR%%/html/Approvals/Elements/Approve %%DATADIR%%/html/Approvals/Elements/PendingMyApproval %%DATADIR%%/html/Approvals/Elements/ShowDependency %%DATADIR%%/html/Approvals/autohandler %%DATADIR%%/html/Approvals/index.html %%DATADIR%%/html/Articles/Article/Delete.html %%DATADIR%%/html/Articles/Article/Display.html %%DATADIR%%/html/Articles/Article/Edit.html %%DATADIR%%/html/Articles/Article/Elements/EditBasics %%DATADIR%%/html/Articles/Article/Elements/EditCustomFields %%DATADIR%%/html/Articles/Article/Elements/EditLinks %%DATADIR%%/html/Articles/Article/Elements/EditTopics %%DATADIR%%/html/Articles/Article/Elements/LinkEntryInstructions %%DATADIR%%/html/Articles/Article/Elements/Preformatted %%DATADIR%%/html/Articles/Article/Elements/SearchByCustomField %%DATADIR%%/html/Articles/Article/Elements/SelectSavedSearches %%DATADIR%%/html/Articles/Article/Elements/SelectSearchPrivacy %%DATADIR%%/html/Articles/Article/Elements/ShowHistory %%DATADIR%%/html/Articles/Article/Elements/ShowLinks %%DATADIR%%/html/Articles/Article/Elements/ShowSavedSearches %%DATADIR%%/html/Articles/Article/Elements/ShowSearchCriteria %%DATADIR%%/html/Articles/Article/Elements/ShowTopics %%DATADIR%%/html/Articles/Article/ExtractFromTicket.html %%DATADIR%%/html/Articles/Article/ExtractIntoClass.html %%DATADIR%%/html/Articles/Article/ExtractIntoTopic.html %%DATADIR%%/html/Articles/Article/History.html %%DATADIR%%/html/Articles/Article/PreCreate.html %%DATADIR%%/html/Articles/Article/Search.html %%DATADIR%%/html/Articles/Elements/BeforeMessageBox %%DATADIR%%/html/Articles/Elements/CheckSkipCreate %%DATADIR%%/html/Articles/Elements/CreateArticle %%DATADIR%%/html/Articles/Elements/GotoArticle %%DATADIR%%/html/Articles/Elements/IncludeArticle %%DATADIR%%/html/Articles/Elements/NewestArticles %%DATADIR%%/html/Articles/Elements/QuickSearch %%DATADIR%%/html/Articles/Elements/SelectClass %%DATADIR%%/html/Articles/Elements/ShowTopic %%DATADIR%%/html/Articles/Elements/ShowTopicLink %%DATADIR%%/html/Articles/Elements/UpdatedArticles %%DATADIR%%/html/Articles/Topics.html %%DATADIR%%/html/Articles/index.html %%DATADIR%%/html/Dashboards/Elements/DashboardsForObject %%DATADIR%%/html/Dashboards/Elements/Deleted %%DATADIR%%/html/Dashboards/Elements/HiddenSearches %%DATADIR%%/html/Dashboards/Elements/ListOfDashboards %%DATADIR%%/html/Dashboards/Elements/SelectPrivacy %%DATADIR%%/html/Dashboards/Elements/ShowDashboards %%DATADIR%%/html/Dashboards/Elements/ShowPortlet/component %%DATADIR%%/html/Dashboards/Elements/ShowPortlet/dashboard %%DATADIR%%/html/Dashboards/Elements/ShowPortlet/search %%DATADIR%%/html/Dashboards/Modify.html %%DATADIR%%/html/Dashboards/Queries.html %%DATADIR%%/html/Dashboards/Render.html %%DATADIR%%/html/Dashboards/Subscription.html %%DATADIR%%/html/Dashboards/dhandler %%DATADIR%%/html/Dashboards/index.html %%DATADIR%%/html/Download/CustomFieldValue/dhandler %%DATADIR%%/html/Elements/BevelBoxRaisedEnd %%DATADIR%%/html/Elements/BevelBoxRaisedStart %%DATADIR%%/html/Elements/CSRF %%DATADIR%%/html/Elements/Callback %%DATADIR%%/html/Elements/Checkbox %%DATADIR%%/html/Elements/CollectionAsTable/Header %%DATADIR%%/html/Elements/CollectionAsTable/ParseFormat %%DATADIR%%/html/Elements/CollectionAsTable/Row %%DATADIR%%/html/Elements/CollectionList %%DATADIR%%/html/Elements/CollectionListPaging %%DATADIR%%/html/Elements/ColumnMap %%DATADIR%%/html/Elements/CreateTicket %%DATADIR%%/html/Elements/Dashboards %%DATADIR%%/html/Elements/EditCustomField %%DATADIR%%/html/Elements/EditCustomFieldAutocomplete %%DATADIR%%/html/Elements/EditCustomFieldBinary %%DATADIR%%/html/Elements/EditCustomFieldCombobox %%DATADIR%%/html/Elements/EditCustomFieldDate %%DATADIR%%/html/Elements/EditCustomFieldDateTime %%DATADIR%%/html/Elements/EditCustomFieldFreeform %%DATADIR%%/html/Elements/EditCustomFieldIPAddress %%DATADIR%%/html/Elements/EditCustomFieldIPAddressRange %%DATADIR%%/html/Elements/EditCustomFieldImage %%DATADIR%%/html/Elements/EditCustomFieldSelect %%DATADIR%%/html/Elements/EditCustomFieldText %%DATADIR%%/html/Elements/EditCustomFieldWikitext %%DATADIR%%/html/Elements/EditLinks %%DATADIR%%/html/Elements/EditPassword %%DATADIR%%/html/Elements/EditTimeValue %%DATADIR%%/html/Elements/EmailInput %%DATADIR%%/html/Elements/Error %%DATADIR%%/html/Elements/Footer %%DATADIR%%/html/Elements/Framekiller %%DATADIR%%/html/Elements/GnuPG/KeyIssues %%DATADIR%%/html/Elements/GnuPG/SelectKeyForEncryption %%DATADIR%%/html/Elements/GnuPG/SelectKeyForSigning %%DATADIR%%/html/Elements/GnuPG/SignEncryptWidget %%DATADIR%%/html/Elements/GotoTicket %%DATADIR%%/html/Elements/Header %%DATADIR%%/html/Elements/HeaderJavascript %%DATADIR%%/html/Elements/ListActions %%DATADIR%%/html/Elements/ListMenu %%DATADIR%%/html/Elements/Login %%DATADIR%%/html/Elements/LoginRedirectWarning %%DATADIR%%/html/Elements/Logo %%DATADIR%%/html/Elements/MakeClicky %%DATADIR%%/html/Elements/Menu %%DATADIR%%/html/Elements/MessageBox %%DATADIR%%/html/Elements/MyAdminQueues %%DATADIR%%/html/Elements/MyRT %%DATADIR%%/html/Elements/MyReminders %%DATADIR%%/html/Elements/MyRequests %%DATADIR%%/html/Elements/MySupportQueues %%DATADIR%%/html/Elements/MyTickets %%DATADIR%%/html/Elements/PageLayout %%DATADIR%%/html/Elements/PersonalQuickbar %%DATADIR%%/html/Elements/QueriesAsComment %%DATADIR%%/html/Elements/QueryString %%DATADIR%%/html/Elements/QueueSummaryByLifecycle %%DATADIR%%/html/Elements/QueueSummaryByStatus %%DATADIR%%/html/Elements/QuickCreate %%DATADIR%%/html/Elements/Quicksearch %%DATADIR%%/html/Elements/RT__Article/ColumnMap %%DATADIR%%/html/Elements/RT__Class/ColumnMap %%DATADIR%%/html/Elements/RT__CustomField/ColumnMap %%DATADIR%%/html/Elements/RT__Dashboard/ColumnMap %%DATADIR%%/html/Elements/RT__Group/ColumnMap %%DATADIR%%/html/Elements/RT__Queue/ColumnMap %%DATADIR%%/html/Elements/RT__SavedSearch/ColumnMap %%DATADIR%%/html/Elements/RT__Scrip/ColumnMap %%DATADIR%%/html/Elements/RT__Template/ColumnMap %%DATADIR%%/html/Elements/RT__Ticket/ColumnMap %%DATADIR%%/html/Elements/RT__User/ColumnMap %%DATADIR%%/html/Elements/Refresh %%DATADIR%%/html/Elements/RefreshHomepage %%DATADIR%%/html/Elements/SavedSearches %%DATADIR%%/html/Elements/ScrubHTML %%DATADIR%%/html/Elements/Section %%DATADIR%%/html/Elements/SelectAttachmentField %%DATADIR%%/html/Elements/SelectBoolean %%DATADIR%%/html/Elements/SelectCustomFieldOperator %%DATADIR%%/html/Elements/SelectCustomFieldValue %%DATADIR%%/html/Elements/SelectDate %%DATADIR%%/html/Elements/SelectDateRelation %%DATADIR%%/html/Elements/SelectDateType %%DATADIR%%/html/Elements/SelectEqualityOperator %%DATADIR%%/html/Elements/SelectGroups %%DATADIR%%/html/Elements/SelectIPRelation %%DATADIR%%/html/Elements/SelectLang %%DATADIR%%/html/Elements/SelectLinkType %%DATADIR%%/html/Elements/SelectMatch %%DATADIR%%/html/Elements/SelectNewTicketQueue %%DATADIR%%/html/Elements/SelectOwner %%DATADIR%%/html/Elements/SelectOwnerAutocomplete %%DATADIR%%/html/Elements/SelectOwnerDropdown %%DATADIR%%/html/Elements/SelectPriority %%DATADIR%%/html/Elements/SelectQueue %%DATADIR%%/html/Elements/SelectResultsPerPage %%DATADIR%%/html/Elements/SelectSortOrder %%DATADIR%%/html/Elements/SelectStatus %%DATADIR%%/html/Elements/SelectTicketSortBy %%DATADIR%%/html/Elements/SelectTicketTypes %%DATADIR%%/html/Elements/SelectTimeUnits %%DATADIR%%/html/Elements/SelectTimezone %%DATADIR%%/html/Elements/SelectUsers %%DATADIR%%/html/Elements/SelectWatcherType %%DATADIR%%/html/Elements/SetupSessionCookie %%DATADIR%%/html/Elements/ShowCustomFieldBinary %%DATADIR%%/html/Elements/ShowCustomFieldDate %%DATADIR%%/html/Elements/ShowCustomFieldDateTime %%DATADIR%%/html/Elements/ShowCustomFieldImage %%DATADIR%%/html/Elements/ShowCustomFieldText %%DATADIR%%/html/Elements/ShowCustomFieldWikitext %%DATADIR%%/html/Elements/ShowCustomFields %%DATADIR%%/html/Elements/ShowLink %%DATADIR%%/html/Elements/ShowLinks %%DATADIR%%/html/Elements/ShowMemberships %%DATADIR%%/html/Elements/ShowRelationLabel %%DATADIR%%/html/Elements/ShowReminders %%DATADIR%%/html/Elements/ShowSearch %%DATADIR%%/html/Elements/ShowUser %%DATADIR%%/html/Elements/ShowUserConcise %%DATADIR%%/html/Elements/ShowUserEmailFrequency %%DATADIR%%/html/Elements/ShowUserVerbose %%DATADIR%%/html/Elements/SimpleSearch %%DATADIR%%/html/Elements/Submit %%DATADIR%%/html/Elements/Tabs %%DATADIR%%/html/Elements/TicketList %%DATADIR%%/html/Elements/TitleBox %%DATADIR%%/html/Elements/TitleBoxEnd %%DATADIR%%/html/Elements/TitleBoxStart %%DATADIR%%/html/Elements/ValidateCustomFields %%DATADIR%%/html/Elements/WidgetBar %%DATADIR%%/html/Helpers/Autocomplete/CustomFieldValues %%DATADIR%%/html/Helpers/Autocomplete/Groups %%DATADIR%%/html/Helpers/Autocomplete/Owners %%DATADIR%%/html/Helpers/Autocomplete/Users %%DATADIR%%/html/Helpers/Autocomplete/autohandler %%DATADIR%%/html/Helpers/TicketHistory %%DATADIR%%/html/Helpers/Toggle/ShowRequestor %%DATADIR%%/html/Helpers/Toggle/TicketBookmark %%DATADIR%%/html/Helpers/autohandler %%DATADIR%%/html/Install/Basics.html %%DATADIR%%/html/Install/DatabaseDetails.html %%DATADIR%%/html/Install/DatabaseType.html %%DATADIR%%/html/Install/Elements/Errors %%DATADIR%%/html/Install/Elements/Wrapper %%DATADIR%%/html/Install/Finish.html %%DATADIR%%/html/Install/Global.html %%DATADIR%%/html/Install/Initialize.html %%DATADIR%%/html/Install/Sendmail.html %%DATADIR%%/html/Install/autohandler %%DATADIR%%/html/Install/index.html %%DATADIR%%/html/NoAuth/Helpers/CustomLogo/dhandler %%DATADIR%%/html/NoAuth/Login.html %%DATADIR%%/html/NoAuth/Logout.html %%DATADIR%%/html/NoAuth/Reminder.html %%DATADIR%%/html/NoAuth/RichText/autohandler %%DATADIR%%/html/NoAuth/RichText/ckeditor/LICENSE.html %%DATADIR%%/html/NoAuth/RichText/ckeditor/adapters/jquery.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/ckeditor.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/config.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/contents.css %%DATADIR%%/html/NoAuth/RichText/ckeditor/images/spacer.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/_languages.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/_translationstatus.txt %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/af.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/ar.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/bg.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/bn.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/bs.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/ca.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/cs.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/cy.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/da.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/de.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/el.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/en-au.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/en-ca.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/en-gb.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/en.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/eo.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/es.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/et.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/eu.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/fa.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/fi.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/fo.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/fr-ca.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/fr.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/gl.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/gu.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/he.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/hi.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/hr.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/hu.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/id.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/is.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/it.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/ja.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/ka.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/km.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/ko.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/ku.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/lt.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/lv.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/mk.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/mn.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/ms.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/nb.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/nl.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/no.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/pl.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/pt-br.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/pt.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/ro.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/ru.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/sk.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/sl.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/sr-latn.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/sr.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/sv.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/th.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/tr.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/ug.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/uk.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/vi.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/zh-cn.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang/zh.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/_translationstatus.txt %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/cs.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/cy.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/da.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/de.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/el.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/en.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/eo.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/fa.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/fi.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/fr.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/gu.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/he.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/it.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/ku.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/lv.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/mk.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/nb.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/nl.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/no.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/pt-br.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/ro.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/sk.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/tr.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/ug.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/vi.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/zh-cn.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/about/dialogs/about.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/about/dialogs/logo_ckeditor.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/adobeair/plugin.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/ajax/plugin.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/autogrow/plugin.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/bbcode/plugin.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/clipboard/dialogs/paste.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/colordialog/dialogs/colordialog.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/_translationstatus.txt %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/bg.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/cs.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/cy.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/da.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/de.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/el.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/en.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/eo.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/et.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/fa.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/fi.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/fr.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/gu.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/he.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/hr.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/it.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/ku.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/lv.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/nb.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/nl.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/no.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/pl.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/pt-br.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/sk.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/tr.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/ug.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/uk.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/vi.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/zh-cn.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/plugin.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/dialog/dialogDefinition.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/div/dialogs/div.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/docprops/dialogs/docprops.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/docprops/plugin.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/find/dialogs/find.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/flash/dialogs/flash.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/flash/images/placeholder.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/forms/dialogs/button.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/forms/dialogs/checkbox.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/forms/dialogs/form.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/forms/dialogs/hiddenfield.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/forms/dialogs/radio.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/forms/dialogs/select.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/forms/dialogs/textarea.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/forms/dialogs/textfield.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/forms/images/hiddenfield.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/iframe/dialogs/iframe.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/iframe/images/placeholder.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/iframedialog/plugin.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/image/dialogs/image.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/link/dialogs/anchor.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/link/dialogs/link.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/link/images/anchor.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/liststyle/dialogs/liststyle.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/pagebreak/images/pagebreak.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/pastefromword/filter/default.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/pastetext/dialogs/pastetext.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/dialogs/placeholder.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/_translationstatus.txt %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/bg.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/cs.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/cy.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/da.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/de.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/el.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/en.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/eo.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/et.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/fa.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/fi.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/fr.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/he.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/hr.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/it.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/ku.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/lv.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/nb.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/nl.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/no.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/pl.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/pt-br.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/sk.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/tr.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/ug.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/uk.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/vi.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/zh-cn.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/placeholder.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/plugin.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/preview/preview.html %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/scayt/dialogs/options.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/scayt/dialogs/toolbar.css %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_address.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_blockquote.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_div.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_h1.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_h2.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_h3.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_h4.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_h5.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_h6.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_p.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_pre.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/smiley/dialogs/smiley.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/smiley/images/angel_smile.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/smiley/images/angry_smile.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/smiley/images/broken_heart.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/smiley/images/confused_smile.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/smiley/images/cry_smile.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/smiley/images/devil_smile.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/smiley/images/embaressed_smile.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/smiley/images/envelope.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/smiley/images/heart.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/smiley/images/kiss.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/smiley/images/lightbulb.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/smiley/images/omg_smile.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/smiley/images/regular_smile.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/smiley/images/sad_smile.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/smiley/images/shades_smile.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/smiley/images/teeth_smile.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/smiley/images/thumbs_down.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/smiley/images/thumbs_up.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/smiley/images/tounge_smile.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/smiley/images/wink_smile.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/specialchar/dialogs/specialchar.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/_translationstatus.txt %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/cs.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/cy.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/de.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/el.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/en.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/eo.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/et.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/fa.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/fi.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/fr.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/he.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/hr.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/it.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/ku.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/lv.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/nb.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/nl.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/no.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/pt-br.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/sk.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/tr.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/ug.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/zh-cn.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/styles/styles/default.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/stylesheetparser/plugin.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/table/dialogs/table.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/tableresize/plugin.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/tabletools/dialogs/tableCell.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/templates/dialogs/templates.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/templates/templates/default.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/templates/templates/images/template1.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/templates/templates/images/template2.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/templates/templates/images/template3.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/dialogs/uicolor.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/_translationstatus.txt %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/bg.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/cs.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/cy.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/da.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/de.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/el.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/en.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/eo.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/et.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/fa.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/fi.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/fr.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/he.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/hr.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/it.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/ku.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/lv.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/mk.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/nb.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/nl.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/no.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/pl.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/pt-br.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/sk.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/tr.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/ug.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/uk.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/vi.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/zh-cn.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/plugin.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/uicolor.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/yui/assets/hue_bg.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/yui/assets/picker_mask.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/yui/assets/yui.css %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/yui/yui.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/wsc/dialogs/ciframe.html %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/wsc/dialogs/tmpFrameset.html %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/wsc/dialogs/wsc.css %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/wsc/dialogs/wsc.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/xml/plugin.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/kama/dialog.css %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/kama/editor.css %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/kama/icons.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/kama/icons_rtl.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/kama/images/dialog_sides.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/kama/images/dialog_sides.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/kama/images/dialog_sides_rtl.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/kama/images/mini.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/kama/images/noimage.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/kama/images/sprites.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/kama/images/sprites_ie6.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/kama/images/toolbar_start.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/kama/skin.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/kama/templates.css %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/office2003/dialog.css %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/office2003/editor.css %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/office2003/icons.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/office2003/icons_rtl.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/office2003/images/dialog_sides.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/office2003/images/dialog_sides.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/office2003/images/dialog_sides_rtl.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/office2003/images/mini.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/office2003/images/noimage.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/office2003/images/sprites.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/office2003/images/sprites_ie6.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/office2003/skin.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/office2003/templates.css %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/v2/dialog.css %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/v2/editor.css %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/v2/icons.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/v2/icons_rtl.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/v2/images/dialog_sides.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/v2/images/dialog_sides.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/v2/images/dialog_sides_rtl.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/v2/images/mini.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/v2/images/noimage.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/v2/images/sprites.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/v2/images/sprites_ie6.png %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/v2/images/toolbar_start.gif %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/v2/skin.js %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/v2/templates.css %%DATADIR%%/html/NoAuth/RichText/ckeditor/themes/default/theme.js %%DATADIR%%/html/NoAuth/RichText/dhandler %%DATADIR%%/html/NoAuth/css/aileron/InHeader %%DATADIR%%/html/NoAuth/css/aileron/base.css %%DATADIR%%/html/NoAuth/css/aileron/boxes.css %%DATADIR%%/html/NoAuth/css/aileron/forms.css %%DATADIR%%/html/NoAuth/css/aileron/images/dhandler %%DATADIR%%/html/NoAuth/css/aileron/images/source/background-gradient.png %%DATADIR%%/html/NoAuth/css/aileron/layout.css %%DATADIR%%/html/NoAuth/css/aileron/login.css %%DATADIR%%/html/NoAuth/css/aileron/main.css %%DATADIR%%/html/NoAuth/css/aileron/misc.css %%DATADIR%%/html/NoAuth/css/aileron/msie.css %%DATADIR%%/html/NoAuth/css/aileron/msie6.css %%DATADIR%%/html/NoAuth/css/aileron/nav.css %%DATADIR%%/html/NoAuth/css/aileron/ticket-lists.css %%DATADIR%%/html/NoAuth/css/aileron/ticket-search.css %%DATADIR%%/html/NoAuth/css/aileron/ticket.css %%DATADIR%%/html/NoAuth/css/autohandler %%DATADIR%%/html/NoAuth/css/ballard/InHeader %%DATADIR%%/html/NoAuth/css/ballard/base.css %%DATADIR%%/html/NoAuth/css/ballard/boxes.css %%DATADIR%%/html/NoAuth/css/ballard/images/dhandler %%DATADIR%%/html/NoAuth/css/ballard/images/source/background-gradient.png %%DATADIR%%/html/NoAuth/css/ballard/layout.css %%DATADIR%%/html/NoAuth/css/ballard/main.css %%DATADIR%%/html/NoAuth/css/ballard/misc.css %%DATADIR%%/html/NoAuth/css/ballard/msie.css %%DATADIR%%/html/NoAuth/css/ballard/msie6.css %%DATADIR%%/html/NoAuth/css/ballard/nav.css %%DATADIR%%/html/NoAuth/css/ballard/ticket-lists.css %%DATADIR%%/html/NoAuth/css/ballard/ticket-search.css %%DATADIR%%/html/NoAuth/css/ballard/ticket.css %%DATADIR%%/html/NoAuth/css/base/admin.css %%DATADIR%%/html/NoAuth/css/base/articles.css %%DATADIR%%/html/NoAuth/css/base/collection.css %%DATADIR%%/html/NoAuth/css/base/farbtastic.css %%DATADIR%%/html/NoAuth/css/base/forms.css %%DATADIR%%/html/NoAuth/css/base/history-folding.css %%DATADIR%%/html/NoAuth/css/base/jquery-ui-timepicker-addon.css %%DATADIR%%/html/NoAuth/css/base/jquery-ui.css %%DATADIR%%/html/NoAuth/css/base/jquery-ui.custom.modified.css %%DATADIR%%/html/NoAuth/css/base/login.css %%DATADIR%%/html/NoAuth/css/base/main.css %%DATADIR%%/html/NoAuth/css/base/misc.css %%DATADIR%%/html/NoAuth/css/base/msie6.css %%DATADIR%%/html/NoAuth/css/base/nav.css %%DATADIR%%/html/NoAuth/css/base/portlets.css %%DATADIR%%/html/NoAuth/css/base/rights-editor.css %%DATADIR%%/html/NoAuth/css/base/superfish-navbar.css %%DATADIR%%/html/NoAuth/css/base/superfish-vertical.css %%DATADIR%%/html/NoAuth/css/base/superfish.css %%DATADIR%%/html/NoAuth/css/base/tablesorter.css %%DATADIR%%/html/NoAuth/css/base/theme-editor.css %%DATADIR%%/html/NoAuth/css/base/ticket-form.css %%DATADIR%%/html/NoAuth/css/base/ticket.css %%DATADIR%%/html/NoAuth/css/base/tools.css %%DATADIR%%/html/NoAuth/css/base/yui-fonts.css %%DATADIR%%/html/NoAuth/css/dhandler %%DATADIR%%/html/NoAuth/css/images/arrows-ffffff.gif %%DATADIR%%/html/NoAuth/css/images/arrows-ffffff.png %%DATADIR%%/html/NoAuth/css/images/arrows-grey.gif %%DATADIR%%/html/NoAuth/css/images/arrows-grey.png %%DATADIR%%/html/NoAuth/css/images/shadow.gif %%DATADIR%%/html/NoAuth/css/images/shadow.png %%DATADIR%%/html/NoAuth/css/print.css %%DATADIR%%/html/NoAuth/css/web2/InHeader %%DATADIR%%/html/NoAuth/css/web2/base.css %%DATADIR%%/html/NoAuth/css/web2/boxes.css %%DATADIR%%/html/NoAuth/css/web2/images/dhandler %%DATADIR%%/html/NoAuth/css/web2/images/source/background-gradient.png %%DATADIR%%/html/NoAuth/css/web2/layout.css %%DATADIR%%/html/NoAuth/css/web2/main.css %%DATADIR%%/html/NoAuth/css/web2/misc.css %%DATADIR%%/html/NoAuth/css/web2/msie.css %%DATADIR%%/html/NoAuth/css/web2/msie6.css %%DATADIR%%/html/NoAuth/css/web2/nav.css %%DATADIR%%/html/NoAuth/css/web2/ticket-lists.css %%DATADIR%%/html/NoAuth/css/web2/ticket-search.css %%DATADIR%%/html/NoAuth/css/web2/ticket.css %%DATADIR%%/html/NoAuth/iCal/dhandler %%DATADIR%%/html/NoAuth/images/autohandler %%DATADIR%%/html/NoAuth/images/bpslogo.png %%DATADIR%%/html/NoAuth/images/css/cb-light.gif %%DATADIR%%/html/NoAuth/images/css/cb.gif %%DATADIR%%/html/NoAuth/images/css/cbr-b2g.gif %%DATADIR%%/html/NoAuth/images/css/cbr-b2lb.gif %%DATADIR%%/html/NoAuth/images/css/cbr-gray.gif %%DATADIR%%/html/NoAuth/images/css/cbr-trans.gif %%DATADIR%%/html/NoAuth/images/css/cbr.gif %%DATADIR%%/html/NoAuth/images/css/ct-light.gif %%DATADIR%%/html/NoAuth/images/css/ct.gif %%DATADIR%%/html/NoAuth/images/css/ctr-b2g.gif %%DATADIR%%/html/NoAuth/images/css/ctr-b2lb.gif %%DATADIR%%/html/NoAuth/images/css/ctr-gray.gif %%DATADIR%%/html/NoAuth/images/css/ctr-trans.gif %%DATADIR%%/html/NoAuth/images/css/ctr.gif %%DATADIR%%/html/NoAuth/images/css/dark-arrow-up.png %%DATADIR%%/html/NoAuth/images/css/dark-arrow.png %%DATADIR%%/html/NoAuth/images/css/fieldbg-autocomplete.gif %%DATADIR%%/html/NoAuth/images/css/light-arrow-up.png %%DATADIR%%/html/NoAuth/images/css/light-arrow.png %%DATADIR%%/html/NoAuth/images/css/rolldown-arrow.gif %%DATADIR%%/html/NoAuth/images/css/rolldown-arrow.png %%DATADIR%%/html/NoAuth/images/css/rollup-arrow.gif %%DATADIR%%/html/NoAuth/images/empty_star.gif %%DATADIR%%/html/NoAuth/images/farbtastic/marker.png %%DATADIR%%/html/NoAuth/images/farbtastic/mask.png %%DATADIR%%/html/NoAuth/images/farbtastic/wheel.png %%DATADIR%%/html/NoAuth/images/favicon.png %%DATADIR%%/html/NoAuth/images/jquery_ui/ui-anim_basic_16x16.gif %%DATADIR%%/html/NoAuth/images/jquery_ui/ui-bg_diagonals-thick_18_b81900_40x40.png %%DATADIR%%/html/NoAuth/images/jquery_ui/ui-bg_diagonals-thick_20_666666_40x40.png %%DATADIR%%/html/NoAuth/images/jquery_ui/ui-bg_flat_0_aaaaaa_40x100.png %%DATADIR%%/html/NoAuth/images/jquery_ui/ui-bg_flat_10_000000_40x100.png %%DATADIR%%/html/NoAuth/images/jquery_ui/ui-bg_flat_75_ffffff_40x100.png %%DATADIR%%/html/NoAuth/images/jquery_ui/ui-bg_glass_100_f6f6f6_1x400.png %%DATADIR%%/html/NoAuth/images/jquery_ui/ui-bg_glass_100_fdf5ce_1x400.png %%DATADIR%%/html/NoAuth/images/jquery_ui/ui-bg_glass_55_fbf9ee_1x400.png %%DATADIR%%/html/NoAuth/images/jquery_ui/ui-bg_glass_65_ffffff_1x400.png %%DATADIR%%/html/NoAuth/images/jquery_ui/ui-bg_glass_75_dadada_1x400.png %%DATADIR%%/html/NoAuth/images/jquery_ui/ui-bg_glass_75_e6e6e6_1x400.png %%DATADIR%%/html/NoAuth/images/jquery_ui/ui-bg_glass_95_fef1ec_1x400.png %%DATADIR%%/html/NoAuth/images/jquery_ui/ui-bg_gloss-wave_35_f6a828_500x100.png %%DATADIR%%/html/NoAuth/images/jquery_ui/ui-bg_highlight-soft_100_eeeeee_1x100.png %%DATADIR%%/html/NoAuth/images/jquery_ui/ui-bg_highlight-soft_75_cccccc_1x100.png %%DATADIR%%/html/NoAuth/images/jquery_ui/ui-bg_highlight-soft_75_ffe45c_1x100.png %%DATADIR%%/html/NoAuth/images/jquery_ui/ui-icons_222222_256x240.png %%DATADIR%%/html/NoAuth/images/jquery_ui/ui-icons_228ef1_256x240.png %%DATADIR%%/html/NoAuth/images/jquery_ui/ui-icons_2e83ff_256x240.png %%DATADIR%%/html/NoAuth/images/jquery_ui/ui-icons_4488cc_256x240.png %%DATADIR%%/html/NoAuth/images/jquery_ui/ui-icons_454545_256x240.png %%DATADIR%%/html/NoAuth/images/jquery_ui/ui-icons_888888_256x240.png %%DATADIR%%/html/NoAuth/images/jquery_ui/ui-icons_cd0a0a_256x240.png %%DATADIR%%/html/NoAuth/images/jquery_ui/ui-icons_ef8c08_256x240.png %%DATADIR%%/html/NoAuth/images/jquery_ui/ui-icons_ffd27a_256x240.png %%DATADIR%%/html/NoAuth/images/jquery_ui/ui-icons_ffffff_256x240.png %%DATADIR%%/html/NoAuth/images/star.gif %%DATADIR%%/html/NoAuth/images/tablesorter/asc.gif %%DATADIR%%/html/NoAuth/images/tablesorter/bg.gif %%DATADIR%%/html/NoAuth/images/tablesorter/desc.gif %%DATADIR%%/html/NoAuth/images/test.png %%DATADIR%%/html/NoAuth/js/autohandler %%DATADIR%%/html/NoAuth/js/cascaded.js %%DATADIR%%/html/NoAuth/js/class.js %%DATADIR%%/html/NoAuth/js/combobox.js %%DATADIR%%/html/NoAuth/js/dhandler %%DATADIR%%/html/NoAuth/js/farbtastic.js %%DATADIR%%/html/NoAuth/js/history-folding.js %%DATADIR%%/html/NoAuth/js/jquery-1.4.2.min.js %%DATADIR%%/html/NoAuth/js/jquery-ui-1.8.4.custom.min.js %%DATADIR%%/html/NoAuth/js/jquery-ui-patch-datepicker.js %%DATADIR%%/html/NoAuth/js/jquery-ui-timepicker-addon.js %%DATADIR%%/html/NoAuth/js/jquery.cookie.js %%DATADIR%%/html/NoAuth/js/jquery.event.hover-1.0.js %%DATADIR%%/html/NoAuth/js/jquery.supposition.js %%DATADIR%%/html/NoAuth/js/jquery.tablesorter.min.js %%DATADIR%%/html/NoAuth/js/jquery_noconflict.js %%DATADIR%%/html/NoAuth/js/late.js %%DATADIR%%/html/NoAuth/js/list.js %%DATADIR%%/html/NoAuth/js/superfish.js %%DATADIR%%/html/NoAuth/js/supersubs.js %%DATADIR%%/html/NoAuth/js/titlebox-state.js %%DATADIR%%/html/NoAuth/js/userautocomplete.js %%DATADIR%%/html/NoAuth/js/util.js %%DATADIR%%/html/NoAuth/rss/dhandler %%DATADIR%%/html/Prefs/MyRT.html %%DATADIR%%/html/Prefs/Other.html %%DATADIR%%/html/Prefs/Quicksearch.html %%DATADIR%%/html/Prefs/Search.html %%DATADIR%%/html/Prefs/SearchOptions.html %%DATADIR%%/html/REST/1.0/Forms/attachment/default %%DATADIR%%/html/REST/1.0/Forms/group/customfields %%DATADIR%%/html/REST/1.0/Forms/group/default %%DATADIR%%/html/REST/1.0/Forms/group/ns %%DATADIR%%/html/REST/1.0/Forms/queue/customfields %%DATADIR%%/html/REST/1.0/Forms/queue/default %%DATADIR%%/html/REST/1.0/Forms/queue/ns %%DATADIR%%/html/REST/1.0/Forms/queue/ticketcustomfields %%DATADIR%%/html/REST/1.0/Forms/ticket/attachments %%DATADIR%%/html/REST/1.0/Forms/ticket/comment %%DATADIR%%/html/REST/1.0/Forms/ticket/default %%DATADIR%%/html/REST/1.0/Forms/ticket/history %%DATADIR%%/html/REST/1.0/Forms/ticket/links %%DATADIR%%/html/REST/1.0/Forms/ticket/merge %%DATADIR%%/html/REST/1.0/Forms/ticket/take %%DATADIR%%/html/REST/1.0/Forms/transaction/default %%DATADIR%%/html/REST/1.0/Forms/user/default %%DATADIR%%/html/REST/1.0/Forms/user/ns %%DATADIR%%/html/REST/1.0/NoAuth/mail-gateway %%DATADIR%%/html/REST/1.0/autohandler %%DATADIR%%/html/REST/1.0/dhandler %%DATADIR%%/html/REST/1.0/logout %%DATADIR%%/html/REST/1.0/search/dhandler %%DATADIR%%/html/REST/1.0/search/ticket %%DATADIR%%/html/REST/1.0/ticket/comment %%DATADIR%%/html/REST/1.0/ticket/link %%DATADIR%%/html/REST/1.0/ticket/merge %%DATADIR%%/html/Search/Article.html %%DATADIR%%/html/Search/Build.html %%DATADIR%%/html/Search/Bulk.html %%DATADIR%%/html/Search/Chart %%DATADIR%%/html/Search/Chart.html %%DATADIR%%/html/Search/Edit.html %%DATADIR%%/html/Search/Elements/Article %%DATADIR%%/html/Search/Elements/BuildFormatString %%DATADIR%%/html/Search/Elements/Chart %%DATADIR%%/html/Search/Elements/ConditionRow %%DATADIR%%/html/Search/Elements/DisplayOptions %%DATADIR%%/html/Search/Elements/EditFormat %%DATADIR%%/html/Search/Elements/EditQuery %%DATADIR%%/html/Search/Elements/EditSearches %%DATADIR%%/html/Search/Elements/EditSort %%DATADIR%%/html/Search/Elements/Graph %%DATADIR%%/html/Search/Elements/NewListActions %%DATADIR%%/html/Search/Elements/PickBasics %%DATADIR%%/html/Search/Elements/PickCFs %%DATADIR%%/html/Search/Elements/PickCriteria %%DATADIR%%/html/Search/Elements/PickTicketCFs %%DATADIR%%/html/Search/Elements/ResultsRSSView %%DATADIR%%/html/Search/Elements/SearchPrivacy %%DATADIR%%/html/Search/Elements/SearchesForObject %%DATADIR%%/html/Search/Elements/SelectAndOr %%DATADIR%%/html/Search/Elements/SelectChartType %%DATADIR%%/html/Search/Elements/SelectGroup %%DATADIR%%/html/Search/Elements/SelectGroupBy %%DATADIR%%/html/Search/Elements/SelectLinks %%DATADIR%%/html/Search/Elements/SelectPersonType %%DATADIR%%/html/Search/Elements/SelectSearchObject %%DATADIR%%/html/Search/Elements/SelectSearchesForObjects %%DATADIR%%/html/Search/Graph.html %%DATADIR%%/html/Search/Results.html %%DATADIR%%/html/Search/Results.rdf %%DATADIR%%/html/Search/Results.tsv %%DATADIR%%/html/Search/Simple.html %%DATADIR%%/html/SelfService/Article/Display.html %%DATADIR%%/html/SelfService/Article/Search.html %%DATADIR%%/html/SelfService/Article/autohandler %%DATADIR%%/html/SelfService/Attachment/dhandler %%DATADIR%%/html/SelfService/Closed.html %%DATADIR%%/html/SelfService/Create.html %%DATADIR%%/html/SelfService/CreateTicketInQueue.html %%DATADIR%%/html/SelfService/Display.html %%DATADIR%%/html/SelfService/Elements/GotoTicket %%DATADIR%%/html/SelfService/Elements/Header %%DATADIR%%/html/SelfService/Elements/MyRequests %%DATADIR%%/html/SelfService/Elements/SearchArticle %%DATADIR%%/html/SelfService/Error.html %%DATADIR%%/html/SelfService/Prefs.html %%DATADIR%%/html/SelfService/Update.html %%DATADIR%%/html/SelfService/index.html %%DATADIR%%/html/Ticket/Attachment/WithHeaders/dhandler %%DATADIR%%/html/Ticket/Attachment/dhandler %%DATADIR%%/html/Ticket/Create.html %%DATADIR%%/html/Ticket/Display.html %%DATADIR%%/html/Ticket/Elements/AddAttachments %%DATADIR%%/html/Ticket/Elements/AddWatchers %%DATADIR%%/html/Ticket/Elements/Bookmark %%DATADIR%%/html/Ticket/Elements/BulkLinks %%DATADIR%%/html/Ticket/Elements/ClickToShowHistory %%DATADIR%%/html/Ticket/Elements/EditBasics %%DATADIR%%/html/Ticket/Elements/EditCustomFields %%DATADIR%%/html/Ticket/Elements/EditDates %%DATADIR%%/html/Ticket/Elements/EditPeople %%DATADIR%%/html/Ticket/Elements/EditTransactionCustomFields %%DATADIR%%/html/Ticket/Elements/EditWatchers %%DATADIR%%/html/Ticket/Elements/FindAttachments %%DATADIR%%/html/Ticket/Elements/FindTransactions %%DATADIR%%/html/Ticket/Elements/FoldStanzaJS %%DATADIR%%/html/Ticket/Elements/LoadTextAttachments %%DATADIR%%/html/Ticket/Elements/PreviewScrips %%DATADIR%%/html/Ticket/Elements/Reminders %%DATADIR%%/html/Ticket/Elements/ShowAttachments %%DATADIR%%/html/Ticket/Elements/ShowBasics %%DATADIR%%/html/Ticket/Elements/ShowCustomFields %%DATADIR%%/html/Ticket/Elements/ShowDates %%DATADIR%%/html/Ticket/Elements/ShowDependencies %%DATADIR%%/html/Ticket/Elements/ShowGnuPGStatus %%DATADIR%%/html/Ticket/Elements/ShowGroupMembers %%DATADIR%%/html/Ticket/Elements/ShowHistory %%DATADIR%%/html/Ticket/Elements/ShowMembers %%DATADIR%%/html/Ticket/Elements/ShowMessageHeaders %%DATADIR%%/html/Ticket/Elements/ShowMessageStanza %%DATADIR%%/html/Ticket/Elements/ShowParents %%DATADIR%%/html/Ticket/Elements/ShowPeople %%DATADIR%%/html/Ticket/Elements/ShowPriority %%DATADIR%%/html/Ticket/Elements/ShowQueue %%DATADIR%%/html/Ticket/Elements/ShowRequestor %%DATADIR%%/html/Ticket/Elements/ShowRequestorExtraInfo %%DATADIR%%/html/Ticket/Elements/ShowRequestorTickets %%DATADIR%%/html/Ticket/Elements/ShowRequestorTicketsActive %%DATADIR%%/html/Ticket/Elements/ShowRequestorTicketsAll %%DATADIR%%/html/Ticket/Elements/ShowRequestorTicketsInactive %%DATADIR%%/html/Ticket/Elements/ShowSimplifiedRecipients %%DATADIR%%/html/Ticket/Elements/ShowSummary %%DATADIR%%/html/Ticket/Elements/ShowTime %%DATADIR%%/html/Ticket/Elements/ShowTransaction %%DATADIR%%/html/Ticket/Elements/ShowTransactionAttachments %%DATADIR%%/html/Ticket/Elements/ShowUpdateStatus %%DATADIR%%/html/Ticket/Elements/ShowUserEntry %%DATADIR%%/html/Ticket/Elements/UpdateCc %%DATADIR%%/html/Ticket/Forward.html %%DATADIR%%/html/Ticket/GnuPG.html %%DATADIR%%/html/Ticket/Graphs/Elements/EditGraphProperties %%DATADIR%%/html/Ticket/Graphs/Elements/ShowGraph %%DATADIR%%/html/Ticket/Graphs/Elements/ShowLegends %%DATADIR%%/html/Ticket/Graphs/dhandler %%DATADIR%%/html/Ticket/Graphs/index.html %%DATADIR%%/html/Ticket/History.html %%DATADIR%%/html/Ticket/Modify.html %%DATADIR%%/html/Ticket/ModifyAll.html %%DATADIR%%/html/Ticket/ModifyDates.html %%DATADIR%%/html/Ticket/ModifyLinks.html %%DATADIR%%/html/Ticket/ModifyPeople.html %%DATADIR%%/html/Ticket/Reminders.html %%DATADIR%%/html/Ticket/ShowEmailRecord.html %%DATADIR%%/html/Ticket/Update.html %%DATADIR%%/html/Ticket/autohandler %%DATADIR%%/html/Tools/MyDay.html %%DATADIR%%/html/Tools/MyReminders.html %%DATADIR%%/html/Tools/Offline.html %%DATADIR%%/html/Tools/index.html %%DATADIR%%/html/User/Prefs.html %%DATADIR%%/html/Widgets/BulkEdit %%DATADIR%%/html/Widgets/BulkProcess %%DATADIR%%/html/Widgets/ComboBox %%DATADIR%%/html/Widgets/FinalizeWidgetArguments %%DATADIR%%/html/Widgets/Form/Boolean %%DATADIR%%/html/Widgets/Form/Integer %%DATADIR%%/html/Widgets/Form/Select %%DATADIR%%/html/Widgets/Form/String %%DATADIR%%/html/Widgets/SavedSearch %%DATADIR%%/html/Widgets/SelectionBox %%DATADIR%%/html/Widgets/TitleBox %%DATADIR%%/html/Widgets/TitleBoxEnd %%DATADIR%%/html/Widgets/TitleBoxStart %%DATADIR%%/html/autohandler %%DATADIR%%/html/dhandler %%DATADIR%%/html/index.html %%DATADIR%%/html/l %%DATADIR%%/html/l_unsafe %%DATADIR%%/html/m/_elements/footer %%DATADIR%%/html/m/_elements/full_site_link %%DATADIR%%/html/m/_elements/header %%DATADIR%%/html/m/_elements/login %%DATADIR%%/html/m/_elements/menu %%DATADIR%%/html/m/_elements/raw_style %%DATADIR%%/html/m/_elements/ticket_list %%DATADIR%%/html/m/_elements/ticket_menu %%DATADIR%%/html/m/_elements/wrapper %%DATADIR%%/html/m/dhandler %%DATADIR%%/html/m/index.html %%DATADIR%%/html/m/logout %%DATADIR%%/html/m/style.css %%DATADIR%%/html/m/ticket/autohandler %%DATADIR%%/html/m/ticket/create %%DATADIR%%/html/m/ticket/history %%DATADIR%%/html/m/ticket/reply %%DATADIR%%/html/m/ticket/select_create_queue %%DATADIR%%/html/m/ticket/show %%DATADIR%%/html/m/tickets/search +@dir %%DATADIR%%/lib +@dir %%DATADIR%%/plugins %%DATADIR%%/po/ar.po %%DATADIR%%/po/bg.po %%DATADIR%%/po/ca.po %%DATADIR%%/po/cs.po %%DATADIR%%/po/da.po %%DATADIR%%/po/de.po %%DATADIR%%/po/el.po %%DATADIR%%/po/en.po %%DATADIR%%/po/en_GB.po %%DATADIR%%/po/es.po %%DATADIR%%/po/et.po %%DATADIR%%/po/fi.po %%DATADIR%%/po/fr.po %%DATADIR%%/po/he.po %%DATADIR%%/po/hr.po %%DATADIR%%/po/hu.po %%DATADIR%%/po/id.po %%DATADIR%%/po/is.po %%DATADIR%%/po/it.po %%DATADIR%%/po/ja.po %%DATADIR%%/po/lt.po %%DATADIR%%/po/lv.po %%DATADIR%%/po/mk.po %%DATADIR%%/po/nb.po %%DATADIR%%/po/nl.po %%DATADIR%%/po/nn.po %%DATADIR%%/po/oc.po %%DATADIR%%/po/pl.po %%DATADIR%%/po/pt.po %%DATADIR%%/po/pt_BR.po %%DATADIR%%/po/pt_PT.po %%DATADIR%%/po/rt.pot %%DATADIR%%/po/ru.po %%DATADIR%%/po/sk.po %%DATADIR%%/po/sl.po %%DATADIR%%/po/sv.po %%DATADIR%%/po/tr.po %%DATADIR%%/po/zh_CN.po %%DATADIR%%/po/zh_TW.po -@exec mkdir -p /var/run/rt40/session_data -@exec mkdir -p /var/run/rt40/mason_data/obj -@exec mkdir -p /var/run/rt40/mason_data/etc -@exec mkdir -p /var/run/rt40/mason_data/cache -@exec chmod -R 0750 /var/run/rt40/session_data /var/run/rt40/mason_data -@exec chown -R www:www /var/run/rt40/session_data /var/run/rt40/mason_data -@unexec rmdir "/var/run/rt40/session_data" >/dev/null 2>&1 || : -@unexec rmdir "/var/run/rt40/mason_data/obj" >/dev/null 2>&1 || : -@unexec rmdir "/var/run/rt40/mason_data/etc" >/dev/null 2>&1 || : -@unexec rmdir "/var/run/rt40/mason_data/cache" >/dev/null 2>&1 || : -@unexec rmdir "/var/run/rt40/mason_data" >/dev/null 2>&1 || : -@unexec rmdir "/var/run/rt40" >/dev/null 2>&1 || : -@dirrmtry www/rt40 -@dirrm %%DATADIR%%/po -@exec mkdir -p %D/%%DATADIR%%/etc -@exec mkdir -p %D/%%DATADIR%%/lib -@exec mkdir -p %D/%%DATADIR%%/plugins -@dirrmtry %%DATADIR%%/plugins -@dirrmtry %%DATADIR%%/lib -@dirrmtry %%DATADIR%%/html/m/tickets -@dirrmtry %%DATADIR%%/html/m/ticket -@dirrmtry %%DATADIR%%/html/m/_elements -@dirrmtry %%DATADIR%%/html/m -@dirrmtry %%DATADIR%%/html/Widgets/Form -@dirrmtry %%DATADIR%%/html/Widgets -@dirrmtry %%DATADIR%%/html/User -@dirrmtry %%DATADIR%%/html/Tools -@dirrmtry %%DATADIR%%/html/Ticket/Graphs/Elements -@dirrmtry %%DATADIR%%/html/Ticket/Graphs -@dirrmtry %%DATADIR%%/html/Ticket/Elements -@dirrmtry %%DATADIR%%/html/Ticket/Attachment/WithHeaders -@dirrmtry %%DATADIR%%/html/Ticket/Attachment -@dirrmtry %%DATADIR%%/html/Ticket -@dirrmtry %%DATADIR%%/html/SelfService/Elements -@dirrmtry %%DATADIR%%/html/SelfService/Attachment -@dirrmtry %%DATADIR%%/html/SelfService/Article -@dirrmtry %%DATADIR%%/html/SelfService -@dirrmtry %%DATADIR%%/html/Search/Elements -@dirrmtry %%DATADIR%%/html/Search -@dirrmtry %%DATADIR%%/html/REST/1.0/ticket -@dirrmtry %%DATADIR%%/html/REST/1.0/search -@dirrmtry %%DATADIR%%/html/REST/1.0/NoAuth -@dirrmtry %%DATADIR%%/html/REST/1.0/Forms/user -@dirrmtry %%DATADIR%%/html/REST/1.0/Forms/transaction -@dirrmtry %%DATADIR%%/html/REST/1.0/Forms/ticket -@dirrmtry %%DATADIR%%/html/REST/1.0/Forms/queue -@dirrmtry %%DATADIR%%/html/REST/1.0/Forms/group -@dirrmtry %%DATADIR%%/html/REST/1.0/Forms/attachment -@dirrmtry %%DATADIR%%/html/REST/1.0/Forms -@dirrmtry %%DATADIR%%/html/REST/1.0 -@dirrmtry %%DATADIR%%/html/REST -@dirrmtry %%DATADIR%%/html/Prefs -@dirrmtry %%DATADIR%%/html/NoAuth/rss -@dirrmtry %%DATADIR%%/html/NoAuth/js -@dirrmtry %%DATADIR%%/html/NoAuth/images/tablesorter -@dirrmtry %%DATADIR%%/html/NoAuth/images/jquery_ui -@dirrmtry %%DATADIR%%/html/NoAuth/images/farbtastic -@dirrmtry %%DATADIR%%/html/NoAuth/images/css -@dirrmtry %%DATADIR%%/html/NoAuth/images -@dirrmtry %%DATADIR%%/html/NoAuth/iCal -@dirrmtry %%DATADIR%%/html/NoAuth/css/web2/images/source -@dirrmtry %%DATADIR%%/html/NoAuth/css/web2/images -@dirrmtry %%DATADIR%%/html/NoAuth/css/web2 -@dirrmtry %%DATADIR%%/html/NoAuth/css/images -@dirrmtry %%DATADIR%%/html/NoAuth/css/base -@dirrmtry %%DATADIR%%/html/NoAuth/css/ballard/images/source -@dirrmtry %%DATADIR%%/html/NoAuth/css/ballard/images -@dirrmtry %%DATADIR%%/html/NoAuth/css/ballard -@dirrmtry %%DATADIR%%/html/NoAuth/css/aileron/images/source -@dirrmtry %%DATADIR%%/html/NoAuth/css/aileron/images -@dirrmtry %%DATADIR%%/html/NoAuth/css/aileron -@dirrmtry %%DATADIR%%/html/NoAuth/css -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/themes/default -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/themes -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/v2/images -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/v2 -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/office2003/images -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/office2003 -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/kama/images -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins/kama -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/skins -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/xml -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/wsc/dialogs -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/wsc -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/yui/assets -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/yui -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor/dialogs -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/uicolor -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/templates/templates/images -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/templates/templates -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/templates/dialogs -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/templates -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/tabletools/dialogs -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/tabletools -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/tableresize -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/table/dialogs -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/table -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/stylesheetparser -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/styles/styles -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/styles -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/specialchar/dialogs -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/specialchar -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/smiley/images -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/smiley/dialogs -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/smiley -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/showblocks/images -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/showblocks -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/scayt/dialogs -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/scayt -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/preview -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder/dialogs -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/placeholder -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/pastetext/dialogs -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/pastetext -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/pastefromword/filter -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/pastefromword -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/pagebreak/images -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/pagebreak -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/liststyle/dialogs -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/liststyle -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/link/images -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/link/dialogs -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/link -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/image/dialogs -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/image -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/iframedialog -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/iframe/images -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/iframe/dialogs -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/iframe -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/forms/images -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/forms/dialogs -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/forms -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/flash/images -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/flash/dialogs -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/flash -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/find/dialogs -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/find -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/docprops/dialogs -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/docprops -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/div/dialogs -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/div -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/dialog -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools/lang -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/devtools -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/colordialog/dialogs -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/colordialog -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/clipboard/dialogs -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/clipboard -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/bbcode -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/autogrow -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/ajax -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/adobeair -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/about/dialogs -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/about -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/dialogs -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins/a11yhelp -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/plugins -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/lang -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/images -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor/adapters -@dirrmtry %%DATADIR%%/html/NoAuth/RichText/ckeditor -@dirrmtry %%DATADIR%%/html/NoAuth/RichText -@dirrmtry %%DATADIR%%/html/NoAuth/Helpers/CustomLogo -@dirrmtry %%DATADIR%%/html/NoAuth/Helpers -@dirrmtry %%DATADIR%%/html/NoAuth -@dirrmtry %%DATADIR%%/html/Install/Elements -@dirrmtry %%DATADIR%%/html/Install -@dirrmtry %%DATADIR%%/html/Helpers/Toggle -@dirrmtry %%DATADIR%%/html/Helpers/Autocomplete -@dirrmtry %%DATADIR%%/html/Helpers -@dirrmtry %%DATADIR%%/html/Elements/RT__User -@dirrmtry %%DATADIR%%/html/Elements/RT__Ticket -@dirrmtry %%DATADIR%%/html/Elements/RT__Template -@dirrmtry %%DATADIR%%/html/Elements/RT__Scrip -@dirrmtry %%DATADIR%%/html/Elements/RT__SavedSearch -@dirrmtry %%DATADIR%%/html/Elements/RT__Queue -@dirrmtry %%DATADIR%%/html/Elements/RT__Group -@dirrmtry %%DATADIR%%/html/Elements/RT__Dashboard -@dirrmtry %%DATADIR%%/html/Elements/RT__CustomField -@dirrmtry %%DATADIR%%/html/Elements/RT__Class -@dirrmtry %%DATADIR%%/html/Elements/RT__Article -@dirrmtry %%DATADIR%%/html/Elements/GnuPG -@dirrmtry %%DATADIR%%/html/Elements/CollectionAsTable -@dirrmtry %%DATADIR%%/html/Elements -@dirrmtry %%DATADIR%%/html/Download/CustomFieldValue -@dirrmtry %%DATADIR%%/html/Download -@dirrmtry %%DATADIR%%/html/Dashboards/Elements/ShowPortlet -@dirrmtry %%DATADIR%%/html/Dashboards/Elements -@dirrmtry %%DATADIR%%/html/Dashboards -@dirrmtry %%DATADIR%%/html/Articles/Elements -@dirrmtry %%DATADIR%%/html/Articles/Article/Elements -@dirrmtry %%DATADIR%%/html/Articles/Article -@dirrmtry %%DATADIR%%/html/Articles -@dirrmtry %%DATADIR%%/html/Approvals/Elements -@dirrmtry %%DATADIR%%/html/Approvals -@dirrmtry %%DATADIR%%/html/Admin/Users -@dirrmtry %%DATADIR%%/html/Admin/Tools/Shredder/Elements/Object -@dirrmtry %%DATADIR%%/html/Admin/Tools/Shredder/Elements/Error -@dirrmtry %%DATADIR%%/html/Admin/Tools/Shredder/Elements -@dirrmtry %%DATADIR%%/html/Admin/Tools/Shredder/Dumps -@dirrmtry %%DATADIR%%/html/Admin/Tools/Shredder -@dirrmtry %%DATADIR%%/html/Admin/Tools -@dirrmtry %%DATADIR%%/html/Admin/Queues -@dirrmtry %%DATADIR%%/html/Admin/Groups -@dirrmtry %%DATADIR%%/html/Admin/Global/CustomFields -@dirrmtry %%DATADIR%%/html/Admin/Global -@dirrmtry %%DATADIR%%/html/Admin/Elements -@dirrmtry %%DATADIR%%/html/Admin/CustomFields -@dirrmtry %%DATADIR%%/html/Admin/Articles/Elements -@dirrmtry %%DATADIR%%/html/Admin/Articles/Classes -@dirrmtry %%DATADIR%%/html/Admin/Articles -@dirrmtry %%DATADIR%%/html/Admin -@dirrmtry %%DATADIR%%/html -@dirrmtry %%DATADIR%%/fonts -@dirrmtry %%DATADIR%%/etc -@dirrmtry %%DATADIR%% -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.0.19 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.0.18 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.0.13 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.0.12 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.0.9 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.0.6 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.0.4 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.0.3 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.0.1 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.0.0rc7 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.0.0rc4 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/4.0.0rc2 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.9.8 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.9.7 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.9.6 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.9.5 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.9.3 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.9.2 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.9.1 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.8.9 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.8.8 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.8.6 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.8.4 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.8.3 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.8.2 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.8.1 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.8.0 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.7.87 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.7.86 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.7.85 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.7.82 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.7.81 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.7.3 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.7.19 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.7.15 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.7.10 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.7.1 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.5.1 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.3.11 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.3.0 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.1.17 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.1.15 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade/3.1.0 -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/upgrade -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/images -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/extending -%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/customizing -%%PORTDOCS%%@dirrmtry %%DOCSDIR%% -@dirrmtry etc/rt40 - +@dir(www,www,755) /var/run/rt40/mason_data/cache +@dir(www,www,755) /var/run/rt40/mason_data/etc +@dir(www,www,755) /var/run/rt40/mason_data/obj +@dir(www,www,755) /var/run/rt40/mason_data +@dir(www,www,755) /var/run/rt40/session_data +@dir /var/run/rt40