summaryrefslogtreecommitdiff
path: root/www/rt38
diff options
context:
space:
mode:
authorWesley Shields <wxs@FreeBSD.org>2009-02-13 14:22:58 +0000
committerWesley Shields <wxs@FreeBSD.org>2009-02-13 14:22:58 +0000
commit9fee9a154c4540f63765a0f62f98acf560746c37 (patch)
tree362b8b352a8d5e3f561790bda5d1ef0c156a20be /www/rt38
parentUpdate to 1.18 (diff)
- Use WWWOWN and WWWGRP [1]
- Switch to using package names rather than checking if a file exists for dependencies [1] - Fix directory permissions [1] - Update to 3.8.2 [2] - Add GraphViz OPTION (default on) [2] PR: [1]: ports/130869 [2]: ports/131167 Submitted by: [1]: Angelo Turetta <aturetta@bestunion.it> [2]: Jo Rhett <jrhett@netconsonance.com> [2]: Boris Samorodov <bsam@ipt.ru> Approved by: Steven Kreuzer <skreuzer@exit2shell.com> (maintainer)
Notes
Notes: svn path=/head/; revision=228202
Diffstat (limited to 'www/rt38')
-rw-r--r--www/rt38/Makefile24
-rw-r--r--www/rt38/Makefile.cpan28
-rw-r--r--www/rt38/distinfo6
-rw-r--r--www/rt38/files/patch-Makefile.in32
-rw-r--r--www/rt38/files/pkg-message.in4
-rw-r--r--www/rt38/pkg-plist248
6 files changed, 225 insertions, 117 deletions
diff --git a/www/rt38/Makefile b/www/rt38/Makefile
index 9cc4f0291491..c8f20bbd40ca 100644
--- a/www/rt38/Makefile
+++ b/www/rt38/Makefile
@@ -6,16 +6,13 @@
# TODO:
# o etc/rt38 files permissions
-# o install etc/rt38/RT_SiteConfig.pm in pkg-plist for packages, fix make install
-# o patch etc/rt38/RT_SiteConfig.pm and -dist perl -c path
# o GRANTS
# o Schema
# - Vhost Config
# o install a sample into etc/apache22/Includes
PORTNAME= rt
-PORTVERSION= 3.8.1
-PORTREVISION= 5
+PORTVERSION= 3.8.2
CATEGORIES= www
MASTER_SITES= http://download.bestpractical.com/pub/rt/release/ \
ftp://ftp.eu.uu.net/pub/unix/ticketing/rt/release/
@@ -40,7 +37,8 @@ OPTIONS= MYSQL "Enable MySQL backend" on \
STANDALONE "Enable standalone server" off \
APACHE "Enable Apache1.3.x server" off \
MODPERL "Enable mod_perl support" off \
- FASTCGI "Enable FastCGI support" off
+ FASTCGI "Enable FastCGI support" off \
+ GRAPHVIZ "Enable GraphViz charts" on
.include "${.CURDIR}/Makefile.cpan"
@@ -49,7 +47,6 @@ BUILD_DEPENDS+= ${CORE_DEPS} \
${DASHBOARD_DEPS} \
${GD_DEPS} \
${GPG_DEPS} \
- ${GRAPHVIZ_DEPS} \
${ICAL_DEPS} \
${MAILGATE_DEPS} \
${MASON_DEPS} \
@@ -85,6 +82,11 @@ BUILD_DEPENDS+= ${LOCALBASE}/${APACHEMODDIR}/mod_fastcgi.so:${PORTSDIR}/www/mod_
RUN_DEPENDS+= ${LOCALBASE}/${APACHEMODDIR}/mod_fastcgi.so:${PORTSDIR}/www/mod_fastcgi
.endif
+.if defined(WITH_GRAPHVIZ)
+BUILD_DEPENDS+= ${GRAPVIZ_DEPS}
+RUN_DEPENDS+= ${GRAPVIZ_DEPS}
+.endif
+
.if defined(WITH_MODPERL2)
BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Apache2/Request.pm:${PORTSDIR}/www/p5-libapreq2 \
${SITE_PERL}/Apache/DBI.pm:${PORTSDIR}/www/p5-Apache-DBI-mp2
@@ -151,8 +153,8 @@ DB_PASSWORD?= rt_pass
DB_HOST?= localhost
DB_DATABASE?= rt3
-WEB_USER?= www
-WEB_GROUP?= www
+WEB_USER?= ${WWWOWN}
+WEB_GROUP?= ${WWWGRP}
LIBS_GROUP?= wheel
LATEST_LINK= rt38
@@ -173,6 +175,7 @@ CONFIGURE_ARGS= --enable-layout=${RT_LAYOUT} \
PKGMESSAGE= ${WRKDIR}/pkg-message
SUB_FILES= pkg-message
+SUB_LIST= RT_ETC_PATH=${RT_ETC_PATH}
run-autotools:: run-autotools-autoconf
@@ -196,14 +199,15 @@ post-patch:
@${RM} -f ${WRKSRC}/lib/RT.pm.in.orig
@${REINPLACE_CMD} -e 's!%%PREFIX%%!${PREFIX}!g' ${WRKSRC}/config.layout
@${REINPLACE_CMD} -e 's!%%SITE_PERL%%!${SITE_PERL}!g' ${WRKSRC}/config.layout
+ @${REINPLACE_CMD} -e 's!/path/to/your/etc!${RT_ETC_PATH}!g' ${WRKSRC}/etc/RT_SiteConfig.pm
pre-install:
@${RM} -f ${WRKSRC}/lib/RT.pm.in
@${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
post-install:
- @[ -f ${RT_ETC_PATH}/RT_SiteConfig.pm-dist ] || \
- ${CP} -p ${RT_ETC_PATH}/RT_SiteConfig.pm ${RT_ETC_PATH}/RT_SiteConfig.pm-dist
+ @[ -f ${RT_ETC_PATH}/RT_SiteConfig.pm ] || \
+ ${CP} -p ${RT_ETC_PATH}/RT_SiteConfig.pm-dist ${RT_ETC_PATH}/RT_SiteConfig.pm
${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>
diff --git a/www/rt38/Makefile.cpan b/www/rt38/Makefile.cpan
index b4cae3277815..7051cd90767a 100644
--- a/www/rt38/Makefile.cpan
+++ b/www/rt38/Makefile.cpan
@@ -6,16 +6,16 @@
### Scalar::Util 1.18 core
### Text::ParseWords 3.24 core
-CLI_DEPS= ${SITE_PERL}/${PERL_ARCH}/Term/ReadKey.pm:${PORTSDIR}/devel/p5-Term-ReadKey \
+CLI_DEPS= p5-Term-ReadKey>=2.30:${PORTSDIR}/devel/p5-Term-ReadKey \
p5-Getopt-Long>=2.24:${PORTSDIR}/devel/p5-Getopt-Long \
- ${SITE_PERL}/LWP.pm:${PORTSDIR}/www/p5-libwww \
- ${SITE_PERL}/Term/ReadLine/Perl.pm:${PORTSDIR}/devel/p5-ReadLine-Perl \
+ p5-libwww>=5.823:${PORTSDIR}/www/p5-libwww \
+ p5-ReadLine-Perl>=1.0302:${PORTSDIR}/devel/p5-ReadLine-Perl \
p5-Net-SSLeay>=1.35:${PORTSDIR}/security/p5-Net-SSLeay
CORE_DEPS= p5-Encode>=2.13:${PORTSDIR}/converters/p5-Encode \
- ${SITE_PERL}/Class/ReturnValue.pm:${PORTSDIR}/devel/p5-Class-ReturnValue \
- ${SITE_PERL}/Text/Quoted.pm:${PORTSDIR}/textproc/p5-Text-Quoted \
- ${SITE_PERL}/CSS/Squish.pm:${PORTSDIR}/textproc/p5-CSS-Squish \
+ p5-Class-ReturnValue>=0.55:${PORTSDIR}/devel/p5-Class-ReturnValue \
+ p5-Text-Quoted>=2.05:${PORTSDIR}/textproc/p5-Text-Quoted \
+ p5-CSS-Squish>=0.07:${PORTSDIR}/textproc/p5-CSS-Squish \
p5-Module-Versions-Report>=1.05:${PORTSDIR}/devel/p5-Module-Versions-Report \
p5-Devel-StackTrace>=1.19:${PORTSDIR}/devel/p5-Devel-StackTrace \
p5-Digest-MD5>=2.27:${PORTSDIR}/security/p5-Digest-MD5 \
@@ -24,8 +24,8 @@ CORE_DEPS= p5-Encode>=2.13:${PORTSDIR}/converters/p5-Encode \
p5-HTML-Scrubber>=0.08:${PORTSDIR}/www/p5-HTML-Scrubber \
p5-DBIx-SearchBuilder>=1.53:${PORTSDIR}/databases/p5-DBIx-SearchBuilder \
p5-Mail-Tools>=1.57:${PORTSDIR}/mail/p5-Mail-Tools \
- ${SITE_PERL}/File/ShareDir.pm:${PORTSDIR}/devel/p5-File-ShareDir \
- ${SITE_PERL}/Cache/Simple/TimedExpiry.pm:${PORTSDIR}/devel/p5-Cache-Simple-TimedExpiry \
+ p5-File-ShareDir>=1.00:${PORTSDIR}/devel/p5-File-ShareDir \
+ p5-Cache-Simple-TimedExpiry>=0.27:${PORTSDIR}/devel/p5-Cache-Simple-TimedExpiry \
${SITE_PERL}/Log/Dispatch.pm:${PORTSDIR}/devel/p5-Log-Dispatch \
${SITE_PERL}/Email/Address.pm:${PORTSDIR}/mail/p5-Email-Address \
${SITE_PERL}/${PERL_ARCH}/HTML/Parser.pm:${PORTSDIR}/www/p5-HTML-Parser \
@@ -42,7 +42,7 @@ CORE_DEPS= p5-Encode>=2.13:${PORTSDIR}/converters/p5-Encode \
${SITE_PERL}/UNIVERSAL/require.pm:${PORTSDIR}/devel/p5-UNIVERSAL-require \
${SITE_PERL}/Test/Warn.pm:${PORTSDIR}/devel/p5-Test-Warn
-DASHBOARD_DEPS= ${SITE_PERL}/MIME/Types.pm:${PORTSDIR}/mail/p5-MIME-Types \
+DASHBOARD_DEPS= p5-MIME-Types>=1.25:${PORTSDIR}/mail/p5-MIME-Types \
p5-HTML-RewriteAttributes>=0.02:${PORTSDIR}/textproc/p5-HTML-RewriteAttributes
DEV_DEPS= ${SITE_PERL}/Log/Dispatch/Perl.pm:${PORTSDIR}/devel/p5-Log-Dispatch-Perl \
@@ -76,10 +76,10 @@ MAILGATE_DEPS= ${SITE_PERL}/HTML/TreeBuilder.pm:${PORTSDIR}/www/p5-HTML-Tree \
${SITE_PERL}/LWP.pm:${PORTSDIR}/www/p5-libwww
MASON_DEPS= p5-Storable>=2.08:${PORTSDIR}/devel/p5-Storable \
- ${SITE_PERL}/CSS/Squish.pm:${PORTSDIR}/textproc/p5-CSS-Squish \
- ${SITE_PERL}/Text/WikiFormat.pm:${PORTSDIR}/textproc/p5-Text-WikiFormat \
+ p5-CSS-Squish>=0.07:${PORTSDIR}/textproc/p5-CSS-Squish \
+ p5-Text-WikiFormat>=0.79:${PORTSDIR}/textproc/p5-Text-WikiFormat \
p5-Digest-MD5>=2.27:${PORTSDIR}/security/p5-Digest-MD5 \
- ${SITE_PERL}/Errno.pm:${PORTSDIR}/devel/p5-Errno \
+ p5-Errno>=1.10:${PORTSDIR}/devel/p5-Errno \
p5-Apache-Session>=1.53:${PORTSDIR}/www/p5-Apache-Session \
p5-Devel-StackTrace>=1.19:${PORTSDIR}/devel/p5-Devel-StackTrace \
p5-CGI.pm>=1.20:${PORTSDIR}/www/p5-CGI.pm \
@@ -87,8 +87,8 @@ MASON_DEPS= p5-Storable>=2.08:${PORTSDIR}/devel/p5-Storable \
p5-XML-RSS>=1.05:${PORTSDIR}/textproc/p5-XML-RSS \
p5-HTML-Mason>=1.36:${PORTSDIR}/www/p5-HTML-Mason
-SMTP_DEPS= ${SITE_PERL}/Net/SMTP.pm:${PORTSDIR}/net/p5-Net
+SMTP_DEPS= p5-Net>=1.22:${PORTSDIR}/net/p5-Net
-STANDALONE_DEPS= ${SITE_PERL}/Net/Server.pm:${PORTSDIR}/net/p5-Net-Server \
+STANDALONE_DEPS= p5-Net-Server>=0.97:${PORTSDIR}/net/p5-Net-Server \
p5-HTTP-Server-Simple>=0.34:${PORTSDIR}/www/p5-HTTP-Server-Simple \
p5-HTTP-Server-Siple-Mason>=0.09:${PORTSDIR}/www/p5-HTTP-Server-Simple-Mason
diff --git a/www/rt38/distinfo b/www/rt38/distinfo
index f599bbb8059d..507c6e21c1bb 100644
--- a/www/rt38/distinfo
+++ b/www/rt38/distinfo
@@ -1,3 +1,3 @@
-MD5 (rt-3.8.1.tar.gz) = 72b4419816e43bde6b50ba68374882e3
-SHA256 (rt-3.8.1.tar.gz) = 0417432a19d2bd3b8fd5a626006050b983714a614a90b68088a27017385678b1
-SIZE (rt-3.8.1.tar.gz) = 2844546
+MD5 (rt-3.8.2.tar.gz) = 100b1fd791e229c4338c0d056c65c12f
+SHA256 (rt-3.8.2.tar.gz) = d1cfc9818622b5b691963ab185292303a285ed4f64d286d8c44d999437803422
+SIZE (rt-3.8.2.tar.gz) = 3175872
diff --git a/www/rt38/files/patch-Makefile.in b/www/rt38/files/patch-Makefile.in
index 78e8dbcf25f9..6e9a774fe097 100644
--- a/www/rt38/files/patch-Makefile.in
+++ b/www/rt38/files/patch-Makefile.in
@@ -1,5 +1,14 @@
---- ./Makefile.in.orig 2008-08-18 11:13:58.000000000 -0400
-+++ ./Makefile.in 2008-12-28 23:12:31.000000000 -0500
+--- Makefile.in.orig 2008-08-18 11:13:58.000000000 -0400
++++ Makefile.in 2009-01-25 11:57:09.000000000 -0500
+@@ -58,7 +58,7 @@
+
+ CONFIG_FILE_PATH = @CONFIG_FILE_PATH_R@
+ CONFIG_FILE = $(CONFIG_FILE_PATH)/RT_Config.pm
+-SITE_CONFIG_FILE = $(CONFIG_FILE_PATH)/RT_SiteConfig.pm
++SITE_CONFIG_FILE = $(CONFIG_FILE_PATH)/RT_SiteConfig.pm-dist
+
+
+ RT_VERSION_MAJOR = @RT_VERSION_MAJOR@
@@ -107,7 +107,7 @@
RT_VAR_PATH = @RT_VAR_PATH_R@
RT_DOC_PATH = @RT_DOC_PATH_R@
@@ -18,12 +27,27 @@
# {{{ dependencies
-@@ -361,9 +361,9 @@
+@@ -301,14 +301,6 @@
+
+ # {{{ fixperms
+ fixperms:
+- # Make the libraries readable
+- chmod $(RT_READABLE_DIR_MODE) $(DESTDIR)$(RT_PATH)
+- chown -R $(LIBS_OWNER) $(DESTDIR)$(RT_LIB_PATH)
+- chgrp -R $(LIBS_GROUP) $(DESTDIR)$(RT_LIB_PATH)
+- chmod -R u+rwX,go-w,go+rX $(DESTDIR)$(RT_LIB_PATH)
+-
+-
+- chmod $(RT_READABLE_DIR_MODE) $(DESTDIR)$(RT_BIN_PATH)
+
+ chmod 0755 $(DESTDIR)$(RT_ETC_PATH)
+ cd $(DESTDIR)$(RT_ETC_PATH) && chmod 0400 $(ETC_FILES)
+@@ -361,9 +353,9 @@
$(INSTALL) -m 0755 -d $(DESTDIR)$(LOCAL_LEXICON_PATH)
# }}}
-install: testdeps config-install dirs files-install fixperms instruct
-+install: config-install dirs files-install
++install: config-install dirs files-install fixperms
-files-install: libs-install etc-install config-install bin-install sbin-install html-install local-install doc-install
+files-install: libs-install etc-install config-install bin-install sbin-install html-install doc-install
diff --git a/www/rt38/files/pkg-message.in b/www/rt38/files/pkg-message.in
index cc3c29fe7561..5d3191dfbc29 100644
--- a/www/rt38/files/pkg-message.in
+++ b/www/rt38/files/pkg-message.in
@@ -2,8 +2,8 @@
To complete the installation of this port, please follow these steps:
-1. Edit %%LOCALBASE%%/etc/rt38/RT_SiteConfig.pm, by referring to
- the default config file (%%LOCALBASE%%/etc/rt38/RT_Config.pm).
+1. Edit %%RT_ETC_PATH%%/RT_SiteConfig.pm, by referring to
+ the default config file (%%RT_ETC_PATH%%/RT_Config.pm).
2. Configure the email and web gateways. Please refer to
'SETTING UP THE MAIL GATEWAY' in %%DOCSDIR%%/README
3. Restart Apache.
diff --git a/www/rt38/pkg-plist b/www/rt38/pkg-plist
index 7366f5b56a13..f882c3881f82 100644
--- a/www/rt38/pkg-plist
+++ b/www/rt38/pkg-plist
@@ -1,4 +1,6 @@
+@comment $FreeBSD$
@unexec if cmp -s %D/etc/rt38/RT_SiteConfig.pm %D/etc/rt38/RT_SiteConfig.pm-dist; then rm -f %D/etc/rt38/RT_SiteConfig.pm; fi
+@exec [ -f %D/etc/rt38/RT_SiteConfig.pm ] || cp %D/rt38/RT_SiteConfig.pm-dist %D/etc/rt38/RT_SiteConfig.pm
bin/mason_handler.fcgi
bin/mason_handler.scgi
bin/mason_handler.svc
@@ -45,6 +47,12 @@ etc/rt38/schema.mysql-4.1
%%SITE_PERL%%/RT/Action/SendEmail.pm
%%SITE_PERL%%/RT/Action/SetPriority.pm
%%SITE_PERL%%/RT/Action/UserDefined.pm
+%%SITE_PERL%%/RT/Approval.pm
+%%SITE_PERL%%/RT/Approval/Rule.pm
+%%SITE_PERL%%/RT/Approval/Rule/Created.pm
+%%SITE_PERL%%/RT/Approval/Rule/NewPending.pm
+%%SITE_PERL%%/RT/Approval/Rule/Passed.pm
+%%SITE_PERL%%/RT/Approval/Rule/Rejected.pm
%%SITE_PERL%%/RT/Attachment.pm
%%SITE_PERL%%/RT/Attachment_Overlay.pm
%%SITE_PERL%%/RT/Attachments.pm
@@ -113,17 +121,17 @@ etc/rt38/schema.mysql-4.1
%%SITE_PERL%%/RT/I18N/id.po
%%SITE_PERL%%/RT/I18N/it.po
%%SITE_PERL%%/RT/I18N/ja.po
+%%SITE_PERL%%/RT/I18N/nb.po
%%SITE_PERL%%/RT/I18N/nl.po
-%%SITE_PERL%%/RT/I18N/no.po
%%SITE_PERL%%/RT/I18N/pl.po
-%%SITE_PERL%%/RT/I18N/pt_br.po
-%%SITE_PERL%%/RT/I18N/pt_pt.po
+%%SITE_PERL%%/RT/I18N/pt.po
+%%SITE_PERL%%/RT/I18N/pt_BR.po
%%SITE_PERL%%/RT/I18N/rt.pot
%%SITE_PERL%%/RT/I18N/ru.po
%%SITE_PERL%%/RT/I18N/sv.po
%%SITE_PERL%%/RT/I18N/tr.po
-%%SITE_PERL%%/RT/I18N/zh_cn.po
-%%SITE_PERL%%/RT/I18N/zh_tw.po
+%%SITE_PERL%%/RT/I18N/zh_CN.po
+%%SITE_PERL%%/RT/I18N/zh_TW.po
%%SITE_PERL%%/RT/Installer.pm
%%SITE_PERL%%/RT/Interface/CLI.pm
%%SITE_PERL%%/RT/Interface/Email.pm
@@ -166,6 +174,8 @@ etc/rt38/schema.mysql-4.1
%%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
@@ -230,6 +240,7 @@ etc/rt38/schema.mysql-4.1
%%SITE_PERL%%/RT/Templates.pm
%%SITE_PERL%%/RT/Templates_Overlay.pm
%%SITE_PERL%%/RT/Test.pm
+%%SITE_PERL%%/RT/Test/Email.pm
%%SITE_PERL%%/RT/Test/Web.pm
%%SITE_PERL%%/RT/Ticket.pm
%%SITE_PERL%%/RT/Ticket_Overlay.pm
@@ -370,12 +381,16 @@ share/rt38/html/Approvals/Elements/Approve
share/rt38/html/Approvals/Elements/PendingMyApproval
share/rt38/html/Approvals/Elements/ShowDependency
share/rt38/html/Approvals/Elements/Tabs
+share/rt38/html/Approvals/autohandler
share/rt38/html/Approvals/index.html
share/rt38/html/CalPopup.html
share/rt38/html/Dashboards/Elements/DashboardsForObject
share/rt38/html/Dashboards/Elements/DashboardsForObjects
+share/rt38/html/Dashboards/Elements/HiddenSearches
share/rt38/html/Dashboards/Elements/SelectPrivacy
share/rt38/html/Dashboards/Elements/ShowDashboards
+share/rt38/html/Dashboards/Elements/ShowPortlet/component
+share/rt38/html/Dashboards/Elements/ShowPortlet/search
share/rt38/html/Dashboards/Elements/ShowSubscription
share/rt38/html/Dashboards/Elements/Tabs
share/rt38/html/Dashboards/Modify.html
@@ -422,6 +437,7 @@ share/rt38/html/Elements/ListActions
share/rt38/html/Elements/ListMenu
share/rt38/html/Elements/Login
share/rt38/html/Elements/Logo
+share/rt38/html/Elements/Logout
share/rt38/html/Elements/MakeClicky
share/rt38/html/Elements/Menu
share/rt38/html/Elements/MessageBox
@@ -482,6 +498,7 @@ share/rt38/html/Elements/ShowMemberships
share/rt38/html/Elements/ShowSearch
share/rt38/html/Elements/ShowUser
share/rt38/html/Elements/ShowUserConcise
+share/rt38/html/Elements/ShowUserEmailFrequency
share/rt38/html/Elements/ShowUserVerbose
share/rt38/html/Elements/SimpleSearch
share/rt38/html/Elements/Submit
@@ -507,6 +524,102 @@ share/rt38/html/Install/autohandler
share/rt38/html/Install/index.html
share/rt38/html/NoAuth/Logout.html
share/rt38/html/NoAuth/Reminder.html
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckcontextmenu.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckdataprocessor.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckdocumentfragment_gecko.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckdocumentfragment_ie.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckdomrange.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckdomrange_gecko.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckdomrange_ie.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckdomrangeiterator.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckeditingarea.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckelementpath.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckenterkey.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckevents.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckhtmliterator.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckicon.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckiecleanup.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckimagepreloader.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckkeystrokehandler.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckmenublock.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckmenublockpanel.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckmenuitem.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckpanel.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckplugin.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckspecialcombo.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckstyle.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbar.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarbreak_gecko.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarbreak_ie.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarbutton.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarbuttonui.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarfontformatcombo.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarfontscombo.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarfontsizecombo.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarpanelbutton.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarspecialcombo.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fcktoolbarstylecombo.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckw3crange.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckxml.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckxml_gecko.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes/fckxml_ie.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fck_othercommands.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckblockquotecommand.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckcorestylecommand.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckfitwindow.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckindentcommands.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckjustifycommands.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fcklistcommands.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fcknamedcommand.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckpasteplaintextcommand.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckpastewordcommand.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckremoveformatcommand.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckshowblocks.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckspellcheckcommand_gecko.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckspellcheckcommand_ie.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fckstylecommand.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fcktablecommand.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses/fcktextcolorcommand.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/fckconstants.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/fckeditorapi.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/fckjscoreextensions.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/fckscriptloader.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fck.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fck_contextmenu.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fck_gecko.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fck_ie.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckbrowserinfo.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckcodeformatter.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckcommands.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckconfig.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckdebug.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckdebug_empty.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckdialog.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckdocumentprocessor.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckdomtools.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcklanguagemanager.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcklisthandler.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcklistslib.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckplugins.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckregexlib.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckselection.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckselection_gecko.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckselection_ie.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckstyles.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcktablehandler.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcktablehandler_gecko.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcktablehandler_ie.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcktoolbaritems.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcktoolbarset.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcktools.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcktools_gecko.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fcktools_ie.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckundo.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckurlparams.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckxhtml.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckxhtml_gecko.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckxhtml_ie.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckxhtmlentities.js
share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/behaviors/disablehandles.htc
share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/behaviors/showtableborders.htc
share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/fck_editorarea.css
@@ -527,6 +640,7 @@ share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_anchor.gif
share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_flashlogo.gif
share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_hiddenfield.gif
share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_pagebreak.gif
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_plugin.gif
share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/common/fck_dialog_common.css
share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/common/fck_dialog_common.js
share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/common/images/locked.gif
@@ -535,10 +649,12 @@ share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/common/images/unlocked.g
share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_about.html
share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_about/logo_fckeditor.gif
share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_about/logo_fredck.gif
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_about/sponsors/spellchecker_net.gif
share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_anchor.html
share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_button.html
share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_checkbox.html
share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_colorselector.html
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_div.html
share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_docprops.html
share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_docprops/fck_document_preview.html
share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_flash.html
@@ -564,6 +680,9 @@ share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages.html
share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html
share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/controlWindow.js
share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/controls.html
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl
share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js
share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html
share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css
@@ -583,77 +702,6 @@ share/rt38/html/NoAuth/RichText/FCKeditor/editor/fckdebug.html
share/rt38/html/NoAuth/RichText/FCKeditor/editor/fckdialog.html
share/rt38/html/NoAuth/RichText/FCKeditor/editor/fckeditor.html
share/rt38/html/NoAuth/RichText/FCKeditor/editor/fckeditor.original.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/browser.css
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/browser.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/frmactualfolder.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/frmcreatefolder.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/frmfolders.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/frmresourceslist.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/frmresourcetype.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/frmupload.html
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/ButtonArrow.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/Folder.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/Folder32.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/FolderOpened.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/FolderOpened32.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/FolderUp.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/ai.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/avi.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/bmp.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/cs.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/default.icon.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/dll.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/doc.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/exe.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/fla.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/gif.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/htm.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/html.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/jpg.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/js.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/mdb.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/mp3.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/pdf.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/png.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/ppt.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/rdp.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/swf.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/swt.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/txt.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/vsd.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/xls.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/xml.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/zip.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/ai.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/avi.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/bmp.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/cs.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/default.icon.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/dll.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/doc.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/exe.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/fla.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/gif.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/htm.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/html.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/jpg.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/js.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/mdb.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/mp3.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/pdf.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/png.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/ppt.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/rdp.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/swf.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/swt.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/txt.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/vsd.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/xls.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/xml.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/zip.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/spacer.gif
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/js/common.js
-share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/js/fckxml.js
share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/anchor.gif
share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/arrow_ltr.gif
share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/arrow_rtl.gif
@@ -680,6 +728,7 @@ share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/tounge_smile.
share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/whatchutalkingabout_smile.gif
share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/wink_smile.gif
share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/spacer.gif
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/js/fckadobeair.js
share/rt38/html/NoAuth/RichText/FCKeditor/editor/js/fckeditorcode_gecko.js
share/rt38/html/NoAuth/RichText/FCKeditor/editor/js/fckeditorcode_ie.js
share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/_translationstatus.txt
@@ -704,8 +753,10 @@ share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/eu.js
share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/fa.js
share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/fi.js
share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/fo.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/fr-ca.js
share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/fr.js
share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/gl.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/gu.js
share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/he.js
share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/hi.js
share/rt38/html/NoAuth/RichText/FCKeditor/editor/lang/hr.js
@@ -746,6 +797,7 @@ share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/fck_placeho
share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/fckplugin.js
share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/lang/de.js
share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/lang/en.js
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/lang/es.js
share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/lang/fr.js
share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/lang/it.js
share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/lang/pl.js
@@ -754,8 +806,14 @@ share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/simplecommands/fckplugi
share/rt38/html/NoAuth/RichText/FCKeditor/editor/plugins/tablecommands/fckplugin.js
share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/_fckviewstrips.html
share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/fck_dialog.css
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/fck_dialog_ie6.js
share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/fck_editor.css
share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/fck_strip.gif
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/dialog.sides.gif
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/dialog.sides.png
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/dialog.sides.rtl.png
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/sprites.gif
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/sprites.png
share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/toolbar.arrowright.gif
share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/toolbar.buttonarrow.gif
share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/toolbar.collapse.gif
@@ -764,8 +822,14 @@ share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/toolbar.ex
share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/toolbar.separator.gif
share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/toolbar.start.gif
share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/fck_dialog.css
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/fck_dialog_ie6.js
share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/fck_editor.css
share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/fck_strip.gif
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/dialog.sides.gif
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/dialog.sides.png
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/dialog.sides.rtl.png
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/sprites.gif
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/sprites.png
share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/toolbar.arrowright.gif
share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/toolbar.bg.gif
share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/toolbar.buttonarrow.gif
@@ -775,8 +839,14 @@ share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/toolbar
share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/toolbar.separator.gif
share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/toolbar.start.gif
share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/fck_dialog.css
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/fck_dialog_ie6.js
share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/fck_editor.css
share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/fck_strip.gif
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/dialog.sides.gif
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/dialog.sides.png
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/dialog.sides.rtl.png
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/sprites.gif
+share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/sprites.png
share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/toolbar.arrowright.gif
share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/toolbar.buttonarrow.gif
share/rt38/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/toolbar.buttonbg.gif
@@ -829,7 +899,6 @@ share/rt38/html/NoAuth/css/web2/admin.css
share/rt38/html/NoAuth/css/web2/base.css
share/rt38/html/NoAuth/css/web2/boxes.css
share/rt38/html/NoAuth/css/web2/forms.css
-share/rt38/html/NoAuth/css/web2/gradient-glossy.png
share/rt38/html/NoAuth/css/web2/images/dhandler
share/rt38/html/NoAuth/css/web2/images/source/background-gradient.png
share/rt38/html/NoAuth/css/web2/layout.css
@@ -873,6 +942,7 @@ share/rt38/html/NoAuth/images/css/rollup-arrow.gif
share/rt38/html/NoAuth/images/empty_star.gif
share/rt38/html/NoAuth/images/favicon.png
share/rt38/html/NoAuth/images/star.gif
+share/rt38/html/NoAuth/images/test.png
share/rt38/html/NoAuth/js/IE7/IE7.js
share/rt38/html/NoAuth/js/IE7/IE8.js
share/rt38/html/NoAuth/js/IE7/blank.gif
@@ -896,8 +966,14 @@ share/rt38/html/Prefs/Other.html
share/rt38/html/Prefs/Quicksearch.html
share/rt38/html/Prefs/Search.html
share/rt38/html/Prefs/SearchOptions.html
+share/rt38/html/REST/1.0/Forms/attachment/default
+share/rt38/html/REST/1.0/Forms/group/customfields
+share/rt38/html/REST/1.0/Forms/group/default
+share/rt38/html/REST/1.0/Forms/group/ns
+share/rt38/html/REST/1.0/Forms/queue/customfields
share/rt38/html/REST/1.0/Forms/queue/default
share/rt38/html/REST/1.0/Forms/queue/ns
+share/rt38/html/REST/1.0/Forms/queue/ticketcustomfields
share/rt38/html/REST/1.0/Forms/ticket/attachments
share/rt38/html/REST/1.0/Forms/ticket/comment
share/rt38/html/REST/1.0/Forms/ticket/default
@@ -1082,6 +1158,8 @@ share/rt38/html/l
@dirrm share/rt38/html/REST/1.0/Forms/transaction
@dirrm share/rt38/html/REST/1.0/Forms/ticket
@dirrm share/rt38/html/REST/1.0/Forms/queue
+@dirrm share/rt38/html/REST/1.0/Forms/group
+@dirrm share/rt38/html/REST/1.0/Forms/attachment
@dirrm share/rt38/html/REST/1.0/Forms
@dirrm share/rt38/html/REST/1.0
@dirrm share/rt38/html/REST
@@ -1121,16 +1199,10 @@ share/rt38/html/l
@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn
@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/images/smiley
@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/images
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/js
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser
-@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/filemanager
@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dtd
@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_template/images
@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_template
+@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts
@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages
@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages
@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_select
@@ -1138,6 +1210,7 @@ share/rt38/html/l
@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_image
@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_flash
@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_docprops
+@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_about/sponsors
@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_about
@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/common/images
@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/dialog/common
@@ -1145,6 +1218,10 @@ share/rt38/html/l
@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/images
@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/css/behaviors
@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/css
+@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/internals
+@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/commandclasses
+@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source/classes
+@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor/_source
@dirrm share/rt38/html/NoAuth/RichText/FCKeditor/editor
@dirrm share/rt38/html/NoAuth/RichText/FCKeditor
@dirrm share/rt38/html/NoAuth/RichText
@@ -1166,6 +1243,7 @@ share/rt38/html/l
@dirrm share/rt38/html/Download/Tabular
@dirrm share/rt38/html/Download/CustomFieldValue
@dirrm share/rt38/html/Download
+@dirrm share/rt38/html/Dashboards/Elements/ShowPortlet
@dirrm share/rt38/html/Dashboards/Elements
@dirrm share/rt38/html/Dashboards
@dirrm share/rt38/html/Approvals/Elements
@@ -1209,6 +1287,8 @@ share/rt38/html/l
@dirrm %%SITE_PERL%%/RT/CustomFieldValues
@dirrm %%SITE_PERL%%/RT/Crypt
@dirrm %%SITE_PERL%%/RT/Condition
+@dirrm %%SITE_PERL%%/RT/Approval/Rule
+@dirrm %%SITE_PERL%%/RT/Approval
@dirrm %%SITE_PERL%%/RT/Action
@dirrm %%SITE_PERL%%/RT
@dirrm etc/rt38