svn commit: r339461 - in head/www/rt40: . files

Matthew Seaman matthew at FreeBSD.org
Sat Jan 11 23:04:22 UTC 2014


Author: matthew
Date: Sat Jan 11 23:04:21 2014
New Revision: 339461
URL: http://svnweb.freebsd.org/changeset/ports/339461

Log:
      * OPTIONS helpers
      * Install docs unconditionally to stage
      * DATADIR should be relative to $PREFIX, not $LOCALBASE
      * use CONFLICTS_INSTALL rather than CONFLICTS
      * use @exec/@unexec etc. in pkg-plist and update patch-Makefile.in
        so that staging no longer needs root

Deleted:
  head/www/rt40/files/extra-patch-noportdocs-Makefile.in
  head/www/rt40/files/pkg-install.in
Modified:
  head/www/rt40/Makefile
  head/www/rt40/files/patch-Makefile.in   (contents, props changed)
  head/www/rt40/files/patch-aclocal.m4   (contents, props changed)
  head/www/rt40/files/patch-config.layout   (contents, props changed)
  head/www/rt40/pkg-plist

Modified: head/www/rt40/Makefile
==============================================================================
--- head/www/rt40/Makefile	Sat Jan 11 22:05:57 2014	(r339460)
+++ head/www/rt40/Makefile	Sat Jan 11 23:04:21 2014	(r339461)
@@ -6,13 +6,12 @@ PORTREVISION=	1
 CATEGORIES=	www
 MASTER_SITES=	http://download.bestpractical.com/pub/rt/release/ \
 		SF/requesttracker/
+PKGNAMESUFFIX=	40
 
 MAINTAINER=	matthew at FreeBSD.org
 COMMENT=	RT is an industrial-grade ticketing system written in Perl
 
-CONFLICTS=	rt-3.8* rt42-4.2* brlcad-[0-9]*
-PKGNAMESUFFIX=	40
-NEED_ROOT=	yes
+CONFLICTS_INSTALL=	rt-3.8* rt42-4.2* brlcad-[0-9]*
 
 NO_ARCH=	yes
 
@@ -34,7 +33,7 @@ NO_ARCH=	yes
 # 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
+OPTIONS_DEFINE=		DEV GD GPG GRAPHVIZ SSL_MAILGATE
 OPTIONS_SINGLE=		DB
 OPTIONS_SINGLE_DB=	MYSQL ORACLE PGSQL SQLITE
 OPTIONS_RADIO=		WEB
@@ -42,16 +41,8 @@ OPTIONS_RADIO_WEB=	AP_MODFASTCGI AP_MODP
 
 OPTIONS_DEFAULT=	AP_MODPERL GD GPG MYSQL
 
-AP_MODFASTCGI_DESC=	Deploy with apache and mod_fastcgi
-AP_MODPERL_DESC=	Deploy with apache and mod_perl
-DEV_DESC=		Configure for Developers
-GD_DESC=		Enable GD Graphs and Charts
-GPG_DESC=		Enable GnuPG support
-LIGHTTPD_DESC=		Deploy with lighttpd and mod_fastcgi
-SPAWN_FCGI_DESC=	Deploy with spawn_fcgi
-SSL_MAILGATE_DESC=	Enable HTTPS support for rt-mailgate
-
-GROUPS?=	rt
+USERS?=		www
+GROUPS?=	rt www
 
 BUILD_DEPENDS+=	${LOCALBASE}/bin/jsmin:${PORTSDIR}/devel/jsmin
 
@@ -73,35 +64,71 @@ RUN_DEPENDS:=	${BUILD_DEPENDS}
 USES+=		perl5
 USE_AUTOTOOLS=	autoconf
 
-.include <bsd.port.options.mk>
-
-.if !${PORT_OPTIONS:MDOCS}
-EXTRA_PATCHES+=	${FILESDIR}/extra-patch-noportdocs-Makefile.in
-.endif
-
-.if ${PORT_OPTIONS:MAP_MODPERL}
-BUILD_DEPENDS+=	${MODPERL2_DEPS}
-RUN_DEPENDS+=	${MODPERL2_DEPS}
-CONFIGURE_ARGS+=	--with-apachectl=${LOCALBASE}/sbin/apachectl
-.endif
+RT_ETC_PATH?=	${PREFIX}/etc/${PORTNAME}${PKGNAMESUFFIX}
+RT_LAYOUT=	FreeBSD
+DOCSDIR=	${PREFIX}/share/doc/${PORTNAME}${PKGNAMESUFFIX}
+DATADIR=	${PREFIX}/share/${PORTNAME}${PKGNAMESUFFIX}
 
-.if ${PORT_OPTIONS:MAP_MODFASTCGI}
-USE_APACHE_RUN=	22+
-BUILD_DEPENDS+=	${LOCALBASE}/${APACHEMODDIR}/mod_fastcgi.so:${PORTSDIR}/www/mod_fastcgi
-RUN_DEPENDS+=	${LOCALBASE}/${APACHEMODDIR}/mod_fastcgi.so:${PORTSDIR}/www/mod_fastcgi \
-		${FASTCGI_DEPS}
-CONFIGURE_ARGS+=	--with-apachectl=${LOCALBASE}/sbin/apachectl
-.endif
+AP_MODPERL_DESC=		Deploy with apache and mod_perl
+AP_MODPERL_BUILD_DEPENDS=	${MODPERL2_DEPS}
+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_BUILD_DEPENDS=	${LOCALBASE}/${APACHEMODDIR}/mod_fastcgi.so:${PORTSDIR}/www/mod_fastcgi
+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_BUILD_DEPENDS=		${LOCALBASE}/sbin/lighttpd:${PORTSDIR}/www/lighttpd
+LIGHTTPD_RUN_DEPENDS=		${LOCALBASE}/sbin/lighttpd:${PORTSDIR}/www/lighttpd
+
+SPAWN_FCGI_DESC=		Deploy with spawn_fcgi
+SPAWN_FCGI_BUILD_DEPENDS=	${LOCALBASE}/bin/spawn-fcgi:${PORTSDIR}/www/spawn-fcgi
+SPAWN_FCGI_RUN_DEPENDS=		${LOCALBASE}/bin/spawn-fcgi:${PORTSDIR}/www/spawn-fcgi
+
+MYSQL_USE=			MYSQL=yes
+MYSQL_BUILD_DEPENDS=		${MYSQL_DEPS}
+MYSQL_RUN_DEPENDS=		${MYSQL_DEPS}
+
+PGSQL_USE=			PGSQL=yes
+PGSQL_BUILD_DEPENDS=		${PGSQL_DEPS}
+PGSQL_RUN_DEPENDS=		${PGSQL_DEPS}
+
+ORACLE_BUILD_DEPENDS=		${ORACLE_DEPS}
+ORACLE_RUN_DEPENDS=		${ORACLE_DEPS}
+
+SQLITE_USE=			SQLITE=yes
+SQLITE_BUILD_DEPENDS=		${SQLITE_DEPS}
+SQLITE_RUN_DEPENDS=		${SQLITE_DEPS}
+
+DEV_DESC=			Configure for Developers
+DEV_BUILD_DEPENDS=		${DEV_DEPS}
+DEV_RUN_DEPENDS=		${DEV_DEPS}
+DEV_CONFIGURE_ON=		--enable-developer-mode
+
+SSL_MAILGATE_DESC=		Enable HTTPS support for rt-mailgate
+SSL_MAILGATE_BUILD_DEPENDS=	${SSL_MAILGATE_DEPS}
+SSL_MAILGATE_RUN_DEPENDS=	${SSL_MAILGATE_DEPS}
+SSL_MAILGATE_CONFIGURE_ENABLE=	ssl-mailgate
+
+GRAPHVIZ_BUILD_DEPENDS=		${GRAPHVIZ_DEPS}
+GRAPHVIZ_RUN_DEPENDS=		${GRAPHVIZ_DEPS}
+GRAPHVIZ_CONFIGURE_ENABLE=	graphviz
+
+GPG_DESC=			Enable GnuPG support
+GPG_BUILD_DEPENDS=		${GPG_DEPS}
+GPG_RUN_DEPENDS=		${GPG_DEPS}
+GPG_CONFIGURE_ENABLE=		gpg
+
+GD_DESC=			Enable GD Graphs and Charts
+GD_BUILD_DEPENDS=		${GD_DEPS}
+GD_RUN_DEPENDS=			${GD_DEPS}
+GD_CONFIGURE_ENABLE=		gd
 
-.if ${PORT_OPTIONS:MLIGHTTPD}
-BUILD_DEPENDS+=	${LOCALBASE}/sbin/lighttpd:${PORTSDIR}/www/lighttpd
-RUN_DEPENDS+=	${LOCALBASE}/sbin/lighttpd:${PORTSDIR}/www/lighttpd
-.endif
-
-.if ${PORT_OPTIONS:MSPAWN_FCGI}
-BUILD_DEPENDS+=	${LOCALBASE}/bin/spawn-fcgi:${PORTSDIR}/www/spawn-fcgi
-RUN_DEPENDS+=	${LOCALBASE}/bin/spawn-fcgi:${PORTSDIR}/www/spawn-fcgi
-.endif
+.include <bsd.port.options.mk>
 
 .if !${PORT_OPTIONS:MMYSQL} && !${PORT_OPTIONS:MPGSQL} && \
 	! ${PORT_OPTIONS:MORACLE} && !${PORT_OPTIONS:MSQLITE}
@@ -110,66 +137,26 @@ IGNORE=	please select one of MYSQL, PGSQ
 
 .if ${PORT_OPTIONS:MMYSQL}
 DB_TYPE=	mysql
-USE_MYSQL=	yes
-BUILD_DEPENDS+=	${MYSQL_DEPS}
-RUN_DEPENDS+=	${MYSQL_DEPS}
 .endif
 
 .if ${PORT_OPTIONS:MPGSQL}
 DB_TYPE=	Pg
-USE_PGSQL=	yes
-BUILD_DEPENDS+=	${PGSQL_DEPS}
-RUN_DEPENDS+=	${PGSQL_DEPS}
 .endif
 
 .if ${PORT_OPTIONS:MORACLE}
 DB_TYPE=	Oracle
-BUILD_DEPENDS+=	${ORACLE_DEPS}
-RUN_DEPENDS+=	${ORACLE_DEPS}
 .endif
 
 .if ${PORT_OPTIONS:MSQLITE}
 DB_TYPE=	SQLite
-USE_SQLITE=	yes
-BUILD_DEPENDS+=	${SQLITE_DEPS}
-RUN_DEPENDS+=	${SQLITE_DEPS}
 .endif
 
-.if ${PORT_OPTIONS:MDEV}
-BUILD_DEPENDS+=	${DEV_DEPS}
-RUN_DEPENDS+=	${DEV_DEPS}
-CONFIGURE_ARGS+=	--enable-developer-mode
-.endif
-
-.if ${PORT_OPTIONS:MSSL_MAILGATE}
-BUILD_DEPENDS+=	${SSL_MAILGATE_DEPS}
-RUN_DEPENDS+=	${SSL_MAILGATE_DEPS}
-CONFIGURE_ARGS+=	--enable-ssl-mailgate
-.endif
-
-.if ${PORT_OPTIONS:MGRAPHVIZ}
-BUILD_DEPENDS+=	${GRAPHVIZ_DEPS}
-RUN_DEPENDS+=	${GRAPHVIZ_DEPS}
-CONFIGURE_ARGS+=	--enable-graphviz
-.endif
-
-.if ${PORT_OPTIONS:MGPG}
-BUILD_DEPENDS+=	${GPG_DEPS}
-RUN_DEPENDS+=	${GPG_DEPS}
-CONFIGURE_ARGS+=	--enable-gpg
-.endif
-
-.if ${PORT_OPTIONS:MGD}
-BUILD_DEPENDS+=	${GD_DEPS}
-RUN_DEPENDS+=	${GD_DEPS}
-CONFIGURE_ARGS+=	--enable-gd
-.endif
-
-RT_ETC_PATH?=	${PREFIX}/etc/${PORTNAME}40
-RT_LAYOUT=	FreeBSD
-DOCSDIR=	${PREFIX}/share/doc/${PORTNAME}40
 
+.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
@@ -198,9 +185,8 @@ CONFIGURE_ARGS+=	--enable-layout=${RT_LA
 CONFIGURE_ENV+=	PERL=${LOCALBASE}/bin/perl
 
 PKGMESSAGE=	${WRKDIR}/pkg-message
-SUB_FILES=	pkg-message pkg-install
-SUB_LIST=	RT_ETC_PATH=${RT_ETC_PATH} \
-		CFG_FILE=${RT_ETC_PATH}/RT_SiteConfig.pm
+SUB_FILES=	pkg-message
+SUB_LIST=	RT_ETC_PATH=${RT_ETC_PATH}
 
 run-autotools:	run-autotools-autoconf
 
@@ -232,10 +218,8 @@ pre-install:
 	@${RM} -f ${WRKSRC}/lib/RT.pm.in
 
 post-install:
-.if ${PORT_OPTIONS:MDOCS}
 	${MKDIR} ${STAGEDIR}${DOCSDIR}/upgrade
 	(cd ${WRKSRC}/etc && \
 	    ${COPYTREE_SHARE} upgrade ${STAGEDIR}${DOCSDIR} "! -name *\.in")
-.endif
 
 .include <bsd.port.mk>

Modified: head/www/rt40/files/patch-Makefile.in
==============================================================================
--- head/www/rt40/files/patch-Makefile.in	Sat Jan 11 22:05:57 2014	(r339460)
+++ head/www/rt40/files/patch-Makefile.in	Sat Jan 11 23:04:21 2014	(r339461)
@@ -1,8 +1,5 @@
-
-$FreeBSD$
-
---- Makefile.in.orig
-+++ Makefile.in
+--- ./Makefile.in.orig	2013-09-27 21:23:08.000000000 +0100
++++ ./Makefile.in	2014-01-11 21:26:46.919231510 +0000
 @@ -59,7 +59,7 @@
  
  CONFIG_FILE_PATH	=	@CONFIG_FILE_PATH_R@
@@ -54,16 +51,27 @@ $FreeBSD$
  	# Make the web ui readable by all. 
  	chmod -R  u+rwX,go-w,go+rX 	$(DESTDIR)$(MASON_HTML_PATH) \
  					$(DESTDIR)$(MASON_LOCAL_HTML_PATH) \
-@@ -348,7 +337,7 @@
+@@ -346,14 +335,14 @@
+ 	$(INSTALL) -m 0755 -d $(DESTDIR)$(LOCAL_PLUGIN_PATH)
+ 	$(INSTALL) -m 0755 -d $(DESTDIR)$(LOCAL_LEXICON_PATH)
  
- install: testdeps config-install dirs files-install fixperms instruct
+-install: testdeps config-install dirs files-install fixperms instruct
++install: config-install dirs files-install
  
 -files-install: libs-install etc-install config-install bin-install sbin-install html-install local-install doc-install font-install po-install
 +files-install: libs-install etc-install config-install bin-install sbin-install html-install doc-install font-install po-install
  
  config-install:
- @COMMENT_INPLACE_LAYOUT@	$(INSTALL) -m 0755 -o $(BIN_OWNER) -g $(RTGROUP) -d $(DESTDIR)$(CONFIG_FILE_PATH)
-@@ -435,13 +424,6 @@
+- at COMMENT_INPLACE_LAYOUT@	$(INSTALL) -m 0755 -o $(BIN_OWNER) -g $(RTGROUP) -d $(DESTDIR)$(CONFIG_FILE_PATH)
+- at COMMENT_INPLACE_LAYOUT@	-$(INSTALL) -m 0440 -o $(BIN_OWNER) -g $(RTGROUP)  etc/RT_Config.pm $(DESTDIR)$(CONFIG_FILE)
+- at COMMENT_INPLACE_LAYOUT@	[ -f $(DESTDIR)$(SITE_CONFIG_FILE) ] || $(INSTALL) -m 0640 -o $(BIN_OWNER) -g $(RTGROUP) etc/RT_SiteConfig.pm $(DESTDIR)$(SITE_CONFIG_FILE) 
++ at COMMENT_INPLACE_LAYOUT@	$(INSTALL) -m 0755 -d $(DESTDIR)$(CONFIG_FILE_PATH)
++ at COMMENT_INPLACE_LAYOUT@	-$(INSTALL) -m 0440 etc/RT_Config.pm $(DESTDIR)$(CONFIG_FILE)
++ at COMMENT_INPLACE_LAYOUT@	[ -f $(DESTDIR)$(SITE_CONFIG_FILE) ] || $(INSTALL) -m 0640 etc/RT_SiteConfig.pm $(DESTDIR)$(SITE_CONFIG_FILE) 
+ @COMMENT_INPLACE_LAYOUT@	@echo "Installed configuration. About to install RT in  $(RT_PATH)"
+ 
+ test: 
+@@ -435,19 +424,12 @@
  @COMMENT_INPLACE_LAYOUT@	for file in $(ETC_FILES) ; do \
  @COMMENT_INPLACE_LAYOUT@	    $(INSTALL) -m 0644 "etc/$$file" "$(DESTDIR)$(RT_ETC_PATH)/" ; \
  @COMMENT_INPLACE_LAYOUT@	done
@@ -77,3 +85,19 @@ $FreeBSD$
  
  
  sbin-install:
+ @COMMENT_INPLACE_LAYOUT@	$(INSTALL) -m 0755 -d $(DESTDIR)$(RT_SBIN_PATH)
+ @COMMENT_INPLACE_LAYOUT@	for file in $(SYSTEM_BINARIES) ; do \
+- at COMMENT_INPLACE_LAYOUT@	    $(INSTALL) -o $(BIN_OWNER) -g $(RTGROUP) -m 0755 "sbin/$$file" "$(DESTDIR)$(RT_SBIN_PATH)/" ; \
++ at COMMENT_INPLACE_LAYOUT@	    $(INSTALL) -m 0755 "sbin/$$file" "$(DESTDIR)$(RT_SBIN_PATH)/" ; \
+ @COMMENT_INPLACE_LAYOUT@	done
+ 
+ 
+@@ -455,7 +437,7 @@
+ bin-install:
+ @COMMENT_INPLACE_LAYOUT@	$(INSTALL) -m 0755 -d $(DESTDIR)$(RT_BIN_PATH)
+ @COMMENT_INPLACE_LAYOUT@	for file in $(BINARIES) ; do \
+- at COMMENT_INPLACE_LAYOUT@	    $(INSTALL) -o $(BIN_OWNER) -g $(RTGROUP) -m 0755 "bin/$$file" "$(DESTDIR)$(RT_BIN_PATH)/" ; \
++ at COMMENT_INPLACE_LAYOUT@	    $(INSTALL) -m 0755 "bin/$$file" "$(DESTDIR)$(RT_BIN_PATH)/" ; \
+ @COMMENT_INPLACE_LAYOUT@	done
+ 
+ local-install:

Modified: head/www/rt40/files/patch-aclocal.m4
==============================================================================
--- head/www/rt40/files/patch-aclocal.m4	Sat Jan 11 22:05:57 2014	(r339460)
+++ head/www/rt40/files/patch-aclocal.m4	Sat Jan 11 23:04:21 2014	(r339461)
@@ -1,8 +1,5 @@
-
-$FreeBSD$
-
---- aclocal.m4.orig
-+++ aclocal.m4
+--- ./aclocal.m4.orig	2013-09-27 21:23:08.000000000 +0100
++++ ./aclocal.m4	2014-01-11 21:26:46.920231299 +0000
 @@ -79,7 +79,7 @@
  		s/^#.*$//m;
  		s/^\s+//gim;

Modified: head/www/rt40/files/patch-config.layout
==============================================================================
--- head/www/rt40/files/patch-config.layout	Sat Jan 11 22:05:57 2014	(r339460)
+++ head/www/rt40/files/patch-config.layout	Sat Jan 11 23:04:21 2014	(r339461)
@@ -1,5 +1,5 @@
---- config.layout.bak	2011-09-13 10:04:25.217275668 +0100
-+++ config.layout	2011-09-13 10:24:01.478295836 +0100
+--- ./config.layout.orig	2013-09-27 21:23:08.000000000 +0100
++++ ./config.layout	2014-01-11 21:27:42.364253818 +0000
 @@ -97,14 +97,14 @@
  </Layout>
  

Modified: head/www/rt40/pkg-plist
==============================================================================
--- head/www/rt40/pkg-plist	Sat Jan 11 22:05:57 2014	(r339460)
+++ head/www/rt40/pkg-plist	Sat Jan 11 23:04:21 2014	(r339461)
@@ -1,8 +1,13 @@
+ at group rt
 bin/rt
 bin/rt-crontool
 bin/rt-mailgate
+ at mode 0440
 etc/rt40/RT_Config.pm
+ at 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
+ at exec [ -f %B/RT_SiteConfig.pm ] || cp -p %D/%F %B/RT_SiteConfig.pm
+ at mode
 etc/rt40/acl.Oracle
 etc/rt40/acl.Pg
 etc/rt40/acl.mysql
@@ -11,6 +16,9 @@ etc/rt40/schema.Oracle
 etc/rt40/schema.Pg
 etc/rt40/schema.SQLite
 etc/rt40/schema.mysql
+ at exec chmod 0750 %D/etc/rt40
+ at exec chgrp rt %D/etc/rt40
+ at group
 %%SITE_PERL%%/RT.pm
 %%SITE_PERL%%/RT/ACE.pm
 %%SITE_PERL%%/RT/ACL.pm
@@ -205,6 +213,7 @@ etc/rt40/schema.mysql
 %%SITE_PERL%%/RT/User.pm
 %%SITE_PERL%%/RT/Users.pm
 %%SITE_PERL%%/RT/Util.pm
+ at group rt
 sbin/rt-attributes-viewer
 sbin/rt-clean-sessions
 sbin/rt-dump-metadata
@@ -223,6 +232,7 @@ sbin/rt-test-dependencies
 sbin/rt-validate-aliases
 sbin/rt-validator
 sbin/standalone_httpd
+ at group
 %%PORTDOCS%%%%DOCSDIR%%/README
 %%PORTDOCS%%%%DOCSDIR%%/UPGRADING-2.0
 %%PORTDOCS%%%%DOCSDIR%%/UPGRADING-3.0
@@ -359,1371 +369,1383 @@ sbin/standalone_httpd
 %%PORTDOCS%%%%DOCSDIR%%/upgrade/upgrade-mysql-schema.pl
 %%PORTDOCS%%%%DOCSDIR%%/upgrade/vulnerable-passwords
 %%PORTDOCS%%%%DOCSDIR%%/web_deployment.pod
-share/rt40/fonts/Droid.README
-share/rt40/fonts/DroidSans.ttf
-share/rt40/fonts/DroidSansFallback.ttf
-share/rt40/html/Admin/Articles/Classes/CustomFields.html
-share/rt40/html/Admin/Articles/Classes/GroupRights.html
-share/rt40/html/Admin/Articles/Classes/Modify.html
-share/rt40/html/Admin/Articles/Classes/Objects.html
-share/rt40/html/Admin/Articles/Classes/Topics.html
-share/rt40/html/Admin/Articles/Classes/UserRights.html
-share/rt40/html/Admin/Articles/Classes/index.html
-share/rt40/html/Admin/Articles/Elements/Topics
-share/rt40/html/Admin/Articles/index.html
-share/rt40/html/Admin/CustomFields/GroupRights.html
-share/rt40/html/Admin/CustomFields/Modify.html
-share/rt40/html/Admin/CustomFields/Objects.html
-share/rt40/html/Admin/CustomFields/UserRights.html
-share/rt40/html/Admin/CustomFields/index.html
-share/rt40/html/Admin/Elements/AddCustomFieldValue
-share/rt40/html/Admin/Elements/ConfigureMyRT
-share/rt40/html/Admin/Elements/CreateUserCalled
-share/rt40/html/Admin/Elements/EditCustomField
-share/rt40/html/Admin/Elements/EditCustomFieldValues
-share/rt40/html/Admin/Elements/EditCustomFieldValuesSource
-share/rt40/html/Admin/Elements/EditCustomFields
-share/rt40/html/Admin/Elements/EditQueueWatcherGroup
-share/rt40/html/Admin/Elements/EditQueueWatchers
-share/rt40/html/Admin/Elements/EditRights
-share/rt40/html/Admin/Elements/EditRightsCategoryTabs
-share/rt40/html/Admin/Elements/EditScrip
-share/rt40/html/Admin/Elements/EditScrips
-share/rt40/html/Admin/Elements/EditTemplates
-share/rt40/html/Admin/Elements/EditUserComments
-share/rt40/html/Admin/Elements/Header
-share/rt40/html/Admin/Elements/ListGlobalCustomFields
-share/rt40/html/Admin/Elements/ListGlobalScrips
-share/rt40/html/Admin/Elements/ModifyTemplate
-share/rt40/html/Admin/Elements/PickCustomFields
-share/rt40/html/Admin/Elements/PickObjects
-share/rt40/html/Admin/Elements/Portal
-share/rt40/html/Admin/Elements/QueueRightsForUser
-share/rt40/html/Admin/Elements/SelectCustomField
-share/rt40/html/Admin/Elements/SelectCustomFieldLookupType
-share/rt40/html/Admin/Elements/SelectCustomFieldRenderType
-share/rt40/html/Admin/Elements/SelectCustomFieldType
-share/rt40/html/Admin/Elements/SelectGroups
-share/rt40/html/Admin/Elements/SelectModifyGroup
-share/rt40/html/Admin/Elements/SelectModifyQueue
-share/rt40/html/Admin/Elements/SelectModifyUser
-share/rt40/html/Admin/Elements/SelectNewGroupMembers
-share/rt40/html/Admin/Elements/SelectRights
-share/rt40/html/Admin/Elements/SelectScrip
-share/rt40/html/Admin/Elements/SelectScripAction
-share/rt40/html/Admin/Elements/SelectScripCondition
-share/rt40/html/Admin/Elements/SelectSingleOrMultiple
-share/rt40/html/Admin/Elements/SelectStage
-share/rt40/html/Admin/Elements/SelectTemplate
-share/rt40/html/Admin/Elements/SelectUsers
-share/rt40/html/Admin/Elements/ShowKeyInfo
-share/rt40/html/Admin/Global/CustomFields/Class-Article.html
-share/rt40/html/Admin/Global/CustomFields/Groups.html
-share/rt40/html/Admin/Global/CustomFields/Queue-Tickets.html
-share/rt40/html/Admin/Global/CustomFields/Queue-Transactions.html
-share/rt40/html/Admin/Global/CustomFields/Queues.html
-share/rt40/html/Admin/Global/CustomFields/Users.html
-share/rt40/html/Admin/Global/CustomFields/index.html
-share/rt40/html/Admin/Global/GroupRights.html
-share/rt40/html/Admin/Global/MyRT.html
-share/rt40/html/Admin/Global/Scrip.html
-share/rt40/html/Admin/Global/Scrips.html
-share/rt40/html/Admin/Global/Template.html
-share/rt40/html/Admin/Global/Templates.html
-share/rt40/html/Admin/Global/Topics.html
-share/rt40/html/Admin/Global/UserRights.html
-share/rt40/html/Admin/Global/index.html
-share/rt40/html/Admin/Groups/GroupRights.html
-share/rt40/html/Admin/Groups/History.html
-share/rt40/html/Admin/Groups/Members.html
-share/rt40/html/Admin/Groups/Modify.html
-share/rt40/html/Admin/Groups/UserRights.html
-share/rt40/html/Admin/Groups/index.html
-share/rt40/html/Admin/Queues/CustomField.html
-share/rt40/html/Admin/Queues/CustomFields.html
-share/rt40/html/Admin/Queues/GroupRights.html
-share/rt40/html/Admin/Queues/History.html
-share/rt40/html/Admin/Queues/Modify.html
-share/rt40/html/Admin/Queues/People.html
-share/rt40/html/Admin/Queues/Scrip.html
-share/rt40/html/Admin/Queues/Scrips.html
-share/rt40/html/Admin/Queues/Template.html
-share/rt40/html/Admin/Queues/Templates.html
-share/rt40/html/Admin/Queues/UserRights.html
-share/rt40/html/Admin/Queues/index.html
-share/rt40/html/Admin/Tools/Configuration.html
-share/rt40/html/Admin/Tools/Queries.html
-share/rt40/html/Admin/Tools/Shredder/Dumps/dhandler
-share/rt40/html/Admin/Tools/Shredder/Elements/DumpFileLink
-share/rt40/html/Admin/Tools/Shredder/Elements/Error/NoRights
-share/rt40/html/Admin/Tools/Shredder/Elements/Error/NoStorage
-share/rt40/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment
-share/rt40/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket
-share/rt40/html/Admin/Tools/Shredder/Elements/Object/RT--User
-share/rt40/html/Admin/Tools/Shredder/Elements/ObjectCheckBox
-share/rt40/html/Admin/Tools/Shredder/Elements/PluginArguments
-share/rt40/html/Admin/Tools/Shredder/Elements/PluginHelp
-share/rt40/html/Admin/Tools/Shredder/Elements/SelectObjects
-share/rt40/html/Admin/Tools/Shredder/Elements/SelectPlugin
-share/rt40/html/Admin/Tools/Shredder/autohandler
-share/rt40/html/Admin/Tools/Shredder/index.html
-share/rt40/html/Admin/Tools/Theme.html
-share/rt40/html/Admin/Tools/index.html
-share/rt40/html/Admin/Users/CustomFields.html
-share/rt40/html/Admin/Users/GnuPG.html
-share/rt40/html/Admin/Users/History.html
-share/rt40/html/Admin/Users/Memberships.html
-share/rt40/html/Admin/Users/Modify.html
-share/rt40/html/Admin/Users/MyRT.html
-share/rt40/html/Admin/Users/index.html
-share/rt40/html/Admin/autohandler
-share/rt40/html/Admin/index.html
-share/rt40/html/Approvals/Display.html
-share/rt40/html/Approvals/Elements/Approve
-share/rt40/html/Approvals/Elements/PendingMyApproval
-share/rt40/html/Approvals/Elements/ShowDependency
-share/rt40/html/Approvals/autohandler
-share/rt40/html/Approvals/index.html
-share/rt40/html/Articles/Article/Delete.html
-share/rt40/html/Articles/Article/Display.html
-share/rt40/html/Articles/Article/Edit.html
-share/rt40/html/Articles/Article/Elements/EditBasics
-share/rt40/html/Articles/Article/Elements/EditCustomFields
-share/rt40/html/Articles/Article/Elements/EditLinks
-share/rt40/html/Articles/Article/Elements/EditTopics
-share/rt40/html/Articles/Article/Elements/LinkEntryInstructions
-share/rt40/html/Articles/Article/Elements/Preformatted
-share/rt40/html/Articles/Article/Elements/SearchByCustomField
-share/rt40/html/Articles/Article/Elements/SelectSavedSearches
-share/rt40/html/Articles/Article/Elements/SelectSearchPrivacy
-share/rt40/html/Articles/Article/Elements/ShowHistory
-share/rt40/html/Articles/Article/Elements/ShowLinks
-share/rt40/html/Articles/Article/Elements/ShowSavedSearches
-share/rt40/html/Articles/Article/Elements/ShowSearchCriteria
-share/rt40/html/Articles/Article/Elements/ShowTopics
-share/rt40/html/Articles/Article/ExtractFromTicket.html
-share/rt40/html/Articles/Article/ExtractIntoClass.html
-share/rt40/html/Articles/Article/ExtractIntoTopic.html
-share/rt40/html/Articles/Article/History.html
-share/rt40/html/Articles/Article/PreCreate.html
-share/rt40/html/Articles/Article/Search.html
-share/rt40/html/Articles/Elements/BeforeMessageBox
-share/rt40/html/Articles/Elements/CheckSkipCreate
-share/rt40/html/Articles/Elements/CreateArticle
-share/rt40/html/Articles/Elements/GotoArticle
-share/rt40/html/Articles/Elements/IncludeArticle
-share/rt40/html/Articles/Elements/NewestArticles
-share/rt40/html/Articles/Elements/QuickSearch
-share/rt40/html/Articles/Elements/SelectClass
-share/rt40/html/Articles/Elements/ShowTopic
-share/rt40/html/Articles/Elements/ShowTopicLink
-share/rt40/html/Articles/Elements/UpdatedArticles
-share/rt40/html/Articles/Topics.html
-share/rt40/html/Articles/index.html
-share/rt40/html/Dashboards/Elements/DashboardsForObject
-share/rt40/html/Dashboards/Elements/Deleted
-share/rt40/html/Dashboards/Elements/HiddenSearches
-share/rt40/html/Dashboards/Elements/ListOfDashboards
-share/rt40/html/Dashboards/Elements/SelectPrivacy
-share/rt40/html/Dashboards/Elements/ShowDashboards
-share/rt40/html/Dashboards/Elements/ShowPortlet/component
-share/rt40/html/Dashboards/Elements/ShowPortlet/dashboard
-share/rt40/html/Dashboards/Elements/ShowPortlet/search
-share/rt40/html/Dashboards/Modify.html
-share/rt40/html/Dashboards/Queries.html
-share/rt40/html/Dashboards/Render.html
-share/rt40/html/Dashboards/Subscription.html
-share/rt40/html/Dashboards/dhandler
-share/rt40/html/Dashboards/index.html
-share/rt40/html/Download/CustomFieldValue/dhandler
-share/rt40/html/Elements/BevelBoxRaisedEnd
-share/rt40/html/Elements/BevelBoxRaisedStart
-share/rt40/html/Elements/Callback
-share/rt40/html/Elements/Checkbox
-share/rt40/html/Elements/CollectionAsTable/Header
-share/rt40/html/Elements/CollectionAsTable/ParseFormat
-share/rt40/html/Elements/CollectionAsTable/Row
-share/rt40/html/Elements/CollectionList
-share/rt40/html/Elements/CollectionListPaging
-share/rt40/html/Elements/ColumnMap
-share/rt40/html/Elements/CreateTicket
-share/rt40/html/Elements/CSRF
-share/rt40/html/Elements/Dashboards
-share/rt40/html/Elements/EditCustomField
-share/rt40/html/Elements/EditCustomFieldAutocomplete
-share/rt40/html/Elements/EditCustomFieldBinary
-share/rt40/html/Elements/EditCustomFieldCombobox
-share/rt40/html/Elements/EditCustomFieldDate
-share/rt40/html/Elements/EditCustomFieldDateTime
-share/rt40/html/Elements/EditCustomFieldFreeform
-share/rt40/html/Elements/EditCustomFieldIPAddress
-share/rt40/html/Elements/EditCustomFieldIPAddressRange
-share/rt40/html/Elements/EditCustomFieldImage
-share/rt40/html/Elements/EditCustomFieldSelect
-share/rt40/html/Elements/EditCustomFieldText
-share/rt40/html/Elements/EditCustomFieldWikitext
-share/rt40/html/Elements/EditLinks
-share/rt40/html/Elements/EditPassword
-share/rt40/html/Elements/EditTimeValue
-share/rt40/html/Elements/EmailInput
-share/rt40/html/Elements/Error
-share/rt40/html/Elements/Footer
-share/rt40/html/Elements/Framekiller
-share/rt40/html/Elements/GnuPG/KeyIssues
-share/rt40/html/Elements/GnuPG/SelectKeyForEncryption
-share/rt40/html/Elements/GnuPG/SelectKeyForSigning
-share/rt40/html/Elements/GnuPG/SignEncryptWidget
-share/rt40/html/Elements/GotoTicket
-share/rt40/html/Elements/Header
-share/rt40/html/Elements/HeaderJavascript
-share/rt40/html/Elements/ListActions
-share/rt40/html/Elements/ListMenu
-share/rt40/html/Elements/Login
-share/rt40/html/Elements/LoginRedirectWarning
-share/rt40/html/Elements/Logo
-share/rt40/html/Elements/MakeClicky
-share/rt40/html/Elements/Menu
-share/rt40/html/Elements/MessageBox
-share/rt40/html/Elements/MyAdminQueues
-share/rt40/html/Elements/MyRT
-share/rt40/html/Elements/MyReminders
-share/rt40/html/Elements/MyRequests
-share/rt40/html/Elements/MySupportQueues
-share/rt40/html/Elements/MyTickets
-share/rt40/html/Elements/PageLayout
-share/rt40/html/Elements/PersonalQuickbar
-share/rt40/html/Elements/QueriesAsComment
-share/rt40/html/Elements/QueryString
-share/rt40/html/Elements/QueueSummaryByLifecycle
-share/rt40/html/Elements/QueueSummaryByStatus
-share/rt40/html/Elements/QuickCreate
-share/rt40/html/Elements/Quicksearch
-share/rt40/html/Elements/RT__Article/ColumnMap
-share/rt40/html/Elements/RT__Class/ColumnMap
-share/rt40/html/Elements/RT__CustomField/ColumnMap
-share/rt40/html/Elements/RT__Dashboard/ColumnMap
-share/rt40/html/Elements/RT__Group/ColumnMap
-share/rt40/html/Elements/RT__Queue/ColumnMap
-share/rt40/html/Elements/RT__SavedSearch/ColumnMap
-share/rt40/html/Elements/RT__Scrip/ColumnMap
-share/rt40/html/Elements/RT__Template/ColumnMap
-share/rt40/html/Elements/RT__Ticket/ColumnMap
-share/rt40/html/Elements/RT__User/ColumnMap
-share/rt40/html/Elements/Refresh
-share/rt40/html/Elements/RefreshHomepage
-share/rt40/html/Elements/SavedSearches
-share/rt40/html/Elements/ScrubHTML
-share/rt40/html/Elements/Section
-share/rt40/html/Elements/SelectAttachmentField
-share/rt40/html/Elements/SelectBoolean
-share/rt40/html/Elements/SelectCustomFieldOperator
-share/rt40/html/Elements/SelectCustomFieldValue
-share/rt40/html/Elements/SelectDate
-share/rt40/html/Elements/SelectDateRelation
-share/rt40/html/Elements/SelectDateType
-share/rt40/html/Elements/SelectEqualityOperator
-share/rt40/html/Elements/SelectGroups
-share/rt40/html/Elements/SelectIPRelation
-share/rt40/html/Elements/SelectLang
-share/rt40/html/Elements/SelectLinkType
-share/rt40/html/Elements/SelectMatch
-share/rt40/html/Elements/SelectNewTicketQueue
-share/rt40/html/Elements/SelectOwner
-share/rt40/html/Elements/SelectOwnerAutocomplete
-share/rt40/html/Elements/SelectOwnerDropdown
-share/rt40/html/Elements/SelectPriority
-share/rt40/html/Elements/SelectQueue
-share/rt40/html/Elements/SelectResultsPerPage
-share/rt40/html/Elements/SelectSortOrder
-share/rt40/html/Elements/SelectStatus
-share/rt40/html/Elements/SelectTicketSortBy
-share/rt40/html/Elements/SelectTicketTypes
-share/rt40/html/Elements/SelectTimeUnits
-share/rt40/html/Elements/SelectTimezone
-share/rt40/html/Elements/SelectUsers
-share/rt40/html/Elements/SelectWatcherType
-share/rt40/html/Elements/SetupSessionCookie
-share/rt40/html/Elements/ShowCustomFieldBinary
-share/rt40/html/Elements/ShowCustomFieldDate
-share/rt40/html/Elements/ShowCustomFieldDateTime
-share/rt40/html/Elements/ShowCustomFieldImage
-share/rt40/html/Elements/ShowCustomFieldText
-share/rt40/html/Elements/ShowCustomFieldWikitext
-share/rt40/html/Elements/ShowCustomFields
-share/rt40/html/Elements/ShowLink
-share/rt40/html/Elements/ShowLinks
-share/rt40/html/Elements/ShowMemberships
-share/rt40/html/Elements/ShowRelationLabel
-share/rt40/html/Elements/ShowReminders
-share/rt40/html/Elements/ShowSearch
-share/rt40/html/Elements/ShowUser
-share/rt40/html/Elements/ShowUserConcise
-share/rt40/html/Elements/ShowUserEmailFrequency
-share/rt40/html/Elements/ShowUserVerbose
-share/rt40/html/Elements/SimpleSearch
-share/rt40/html/Elements/Submit
-share/rt40/html/Elements/Tabs
-share/rt40/html/Elements/TicketList
-share/rt40/html/Elements/TitleBox
-share/rt40/html/Elements/TitleBoxEnd
-share/rt40/html/Elements/TitleBoxStart
-share/rt40/html/Elements/ValidateCustomFields
-share/rt40/html/Elements/WidgetBar
-share/rt40/html/Helpers/Autocomplete/CustomFieldValues
-share/rt40/html/Helpers/Autocomplete/Groups
-share/rt40/html/Helpers/Autocomplete/Owners
-share/rt40/html/Helpers/Autocomplete/Users
-share/rt40/html/Helpers/Autocomplete/autohandler
-share/rt40/html/Helpers/TicketHistory
-share/rt40/html/Helpers/Toggle/ShowRequestor
-share/rt40/html/Helpers/Toggle/TicketBookmark
-share/rt40/html/Helpers/autohandler
-share/rt40/html/Install/Basics.html
-share/rt40/html/Install/DatabaseDetails.html
-share/rt40/html/Install/DatabaseType.html
-share/rt40/html/Install/Elements/Errors
-share/rt40/html/Install/Elements/Wrapper
-share/rt40/html/Install/Finish.html
-share/rt40/html/Install/Global.html
-share/rt40/html/Install/Initialize.html
-share/rt40/html/Install/Sendmail.html
-share/rt40/html/Install/autohandler
-share/rt40/html/Install/index.html
-share/rt40/html/NoAuth/Helpers/CustomLogo/dhandler
-share/rt40/html/NoAuth/Login.html
-share/rt40/html/NoAuth/Logout.html
-share/rt40/html/NoAuth/Reminder.html
-share/rt40/html/NoAuth/RichText/autohandler
-share/rt40/html/NoAuth/RichText/ckeditor/LICENSE.html
-share/rt40/html/NoAuth/RichText/ckeditor/adapters/jquery.js
-share/rt40/html/NoAuth/RichText/ckeditor/ckeditor.js
-share/rt40/html/NoAuth/RichText/ckeditor/config.js
-share/rt40/html/NoAuth/RichText/ckeditor/contents.css
-share/rt40/html/NoAuth/RichText/ckeditor/images/spacer.gif
-share/rt40/html/NoAuth/RichText/ckeditor/lang/_languages.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/_translationstatus.txt
-share/rt40/html/NoAuth/RichText/ckeditor/lang/af.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/ar.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/bg.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/bn.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/bs.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/ca.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/cs.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/cy.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/da.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/de.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/el.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/en-au.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/en-ca.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/en-gb.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/en.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/eo.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/es.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/et.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/eu.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/fa.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/fi.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/fo.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/fr-ca.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/fr.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/gl.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/gu.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/he.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/hi.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/hr.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/hu.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/id.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/is.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/it.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/ja.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/ka.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/km.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/ko.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/ku.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/lt.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/lv.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/mk.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/mn.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/ms.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/nb.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/nl.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/no.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/pl.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/pt-br.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/pt.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/ro.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/ru.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/sk.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/sl.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/sr-latn.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/sr.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/sv.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/th.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/tr.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/ug.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/uk.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/vi.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/zh-cn.js
-share/rt40/html/NoAuth/RichText/ckeditor/lang/zh.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/_translationstatus.txt
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/cs.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/cy.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/da.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/de.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/el.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/en.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/eo.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/fa.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/fi.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/fr.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/gu.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/he.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/it.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/ku.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/lv.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/mk.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/nb.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/nl.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/no.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/pt-br.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/ro.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/sk.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/tr.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/ug.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/vi.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/a11yhelp/lang/zh-cn.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/about/dialogs/about.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/about/dialogs/logo_ckeditor.png
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/adobeair/plugin.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/ajax/plugin.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/autogrow/plugin.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/bbcode/plugin.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/clipboard/dialogs/paste.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/colordialog/dialogs/colordialog.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/_translationstatus.txt
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/bg.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/cs.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/cy.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/da.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/de.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/el.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/en.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/eo.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/et.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/fa.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/fi.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/fr.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/gu.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/he.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/hr.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/it.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/ku.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/lv.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/nb.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/nl.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/no.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/pl.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/pt-br.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/sk.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/tr.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/ug.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/uk.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/vi.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/lang/zh-cn.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/devtools/plugin.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/dialog/dialogDefinition.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/div/dialogs/div.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/docprops/dialogs/docprops.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/docprops/plugin.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/find/dialogs/find.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/flash/dialogs/flash.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/flash/images/placeholder.png
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/forms/dialogs/button.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/forms/dialogs/checkbox.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/forms/dialogs/form.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/forms/dialogs/hiddenfield.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/forms/dialogs/radio.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/forms/dialogs/select.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/forms/dialogs/textarea.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/forms/dialogs/textfield.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/forms/images/hiddenfield.gif
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/iframe/dialogs/iframe.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/iframe/images/placeholder.png
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/iframedialog/plugin.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/image/dialogs/image.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/link/dialogs/anchor.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/link/dialogs/link.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/link/images/anchor.gif
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/liststyle/dialogs/liststyle.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/pagebreak/images/pagebreak.gif
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/pastefromword/filter/default.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/pastetext/dialogs/pastetext.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/dialogs/placeholder.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/_translationstatus.txt
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/bg.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/cs.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/cy.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/da.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/de.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/el.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/en.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/eo.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/et.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/fa.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/fi.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/fr.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/he.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/hr.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/it.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/ku.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/lv.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/nb.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/nl.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/no.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/pl.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/pt-br.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/sk.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/tr.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/ug.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/uk.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/vi.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/lang/zh-cn.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/placeholder.gif
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/placeholder/plugin.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/preview/preview.html
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/scayt/dialogs/options.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/scayt/dialogs/toolbar.css
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_address.png
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_blockquote.png
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_div.png
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_h1.png
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_h2.png
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_h3.png
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_h4.png
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_h5.png
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_h6.png
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_p.png
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/showblocks/images/block_pre.png
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/smiley/dialogs/smiley.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/smiley/images/angel_smile.gif
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/smiley/images/angry_smile.gif
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/smiley/images/broken_heart.gif
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/smiley/images/confused_smile.gif
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/smiley/images/cry_smile.gif
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/smiley/images/devil_smile.gif
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/smiley/images/embaressed_smile.gif
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/smiley/images/envelope.gif
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/smiley/images/heart.gif
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/smiley/images/kiss.gif
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/smiley/images/lightbulb.gif
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/smiley/images/omg_smile.gif
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/smiley/images/regular_smile.gif
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/smiley/images/sad_smile.gif
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/smiley/images/shades_smile.gif
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/smiley/images/teeth_smile.gif
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/smiley/images/thumbs_down.gif
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/smiley/images/thumbs_up.gif
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/smiley/images/tounge_smile.gif
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/smiley/images/wink_smile.gif
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/specialchar/dialogs/specialchar.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/_translationstatus.txt
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/cs.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/cy.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/de.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/el.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/en.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/eo.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/et.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/fa.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/fi.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/fr.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/he.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/hr.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/it.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/ku.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/lv.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/nb.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/nl.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/no.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/pt-br.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/sk.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/tr.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/ug.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/specialchar/lang/zh-cn.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/styles/styles/default.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/stylesheetparser/plugin.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/table/dialogs/table.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/tableresize/plugin.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/tabletools/dialogs/tableCell.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/templates/dialogs/templates.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/templates/templates/default.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/templates/templates/images/template1.gif
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/templates/templates/images/template2.gif
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/templates/templates/images/template3.gif
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/uicolor/dialogs/uicolor.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/_translationstatus.txt
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/bg.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/cs.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/cy.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/da.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/de.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/el.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/en.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/eo.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/et.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/fa.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/fi.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/fr.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/he.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/hr.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/it.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/ku.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/lv.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/mk.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/nb.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/nl.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/no.js
-share/rt40/html/NoAuth/RichText/ckeditor/plugins/uicolor/lang/pl.js

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***


More information about the svn-ports-all mailing list