diff options
author | tonnerre <tonnerre@pkgsrc.org> | 2008-08-23 23:58:29 +0000 |
---|---|---|
committer | tonnerre <tonnerre@pkgsrc.org> | 2008-08-23 23:58:29 +0000 |
commit | 694bbd41541f7de17630c4ae5f20477eb3c2eed3 (patch) | |
tree | 6aef0c7fcd9d9b7497a711060cddc4bb1c909ab4 /devel | |
parent | 1ff1cd21a2e316891c194ade2a77150f659ae406 (diff) | |
download | pkgsrc-694bbd41541f7de17630c4ae5f20477eb3c2eed3.tar.gz |
Update rt3 to version 3.8.1 (from 3.6.6). Changes are:
* New visual style (web2).
* Rich text mails.
* Email signatures and encryption.
* User settings for:
- Ticket history ordering.
- Timezones.
- Date and time format.
- Username format.
- Default queue.
- Size of message text boxes.
* Charts of ticket relationships.
* Breeze through upgrades with new upgrade tools.
* Subscribe to iCalendar feeds of ticket due dates.
* Bookmark frequently-used tickets.
* Turn off mail from RT when you go on vacation.
* Get your mail from RT as a daily or weekly batch.
* Delete historical or spam tickets with RT::Shredder (only as a superuser).
* Set up more configurable business rules with new Scrip Conditions and
Actions.
* Forward tickets to third-parties from within RT.
* Enable and Disable RT extensions with the new Plugins system.
* Automatically log out inactive users with rt-clean-sessions.
* Run faster with less memory, thanks to numerous performance improvements
and bug fixes.
* Fixed a potential HTML injection attck via user's properties.
* Better support for installation on Solaris and FreeBSD (non-GNU make).
* Updates to documentation and scripts for upgrading from MySQL 4.0
* Updated upgrade documentation for the new Queue Tag and bookmarks features.
* Multiple bugs in iCal support fixed.
* Backwards compatibility fixes for extensions developed against 3.6
* Added support for external links in tabs and targets.
* Addition of a new callback before ticket creation so you can implement
custom validation or stop creation for another reason.
* Missing documentation to external authentication configuration variable
in bin/rt and make it possible to set it via ENV.
* Merged method in RT::Ticket.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/rt3/Makefile | 21 | ||||
-rw-r--r-- | devel/rt3/Makefile.install | 11 | ||||
-rw-r--r-- | devel/rt3/PLIST | 688 | ||||
-rw-r--r-- | devel/rt3/dirs.mk | 10 | ||||
-rw-r--r-- | devel/rt3/distinfo | 11 | ||||
-rw-r--r-- | devel/rt3/options.mk | 4 | ||||
-rw-r--r-- | devel/rt3/patches/patch-aa | 4 | ||||
-rw-r--r-- | devel/rt3/patches/patch-ac | 13 |
8 files changed, 634 insertions, 128 deletions
diff --git a/devel/rt3/Makefile b/devel/rt3/Makefile index 5a184330da9..7e6c9c2a316 100644 --- a/devel/rt3/Makefile +++ b/devel/rt3/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.33 2008/07/23 18:00:55 seb Exp $ +# $NetBSD: Makefile,v 1.34 2008/08/23 23:58:29 tonnerre Exp $ -DISTNAME= rt-3.6.6 -PKGREVISION= 4 +DISTNAME= rt-3.8.1 CATEGORIES= devel MASTER_SITES= http://download.bestpractical.com/pub/rt/release/ @@ -12,6 +11,7 @@ COMMENT= Industrial-grade ticketing system .include "options.mk" USE_TOOLS+= perl:run +USE_LANGUAGES+= c # Core dependencies: DEPENDS+= p5-Digest-[0-9]*:../../security/p5-Digest @@ -23,13 +23,17 @@ DEPENDS+= p5-DBIx-SearchBuilder>=1.50:../../databases/p5-DBIx-SearchBuilder DEPENDS+= p5-Text-Template>=1.43:../../textproc/p5-Text-Template DEPENDS+= p5-HTML-Parser>=3.35:../../www/p5-HTML-Parser DEPENDS+= p5-HTML-Scrubber>=0.08:../../www/p5-HTML-Scrubber +DEPENDS+= p5-HTTP-Server-Simple>=0.34:../../www/p5-HTTP-Server-Simple +DEPENDS+= p5-HTTP-Server-Simple-Mason>=0.09:../../www/p5-HTTP-Server-Simple-Mason DEPENDS+= p5-Log-Dispatch>=2.0:../../devel/p5-Log-Dispatch DEPENDS+= p5-Locale-Maketext>=1.06:../../misc/p5-Locale-Maketext DEPENDS+= p5-Locale-Maketext-Lexicon>=0.32:../../misc/p5-Locale-Maketext-Lexicon DEPENDS+= p5-Locale-Maketext-Fuzzy>=0.02:../../misc/p5-Locale-Maketext-Fuzzy DEPENDS+= p5-MIME-tools>=5.411.1:../../mail/p5-MIME-tools DEPENDS+= p5-MailTools>=1.57:../../mail/p5-MailTools +DEPENDS+= p5-Email-Address-[0-9]*:../../mail/p5-Email-Address DEPENDS+= p5-Net>=1.15:../../net/p5-Net +DEPENDS+= p5-Net-Server-[0-9]*:../../net/p5-Net-Server DEPENDS+= p5-Text-Wrapper>=1.0:../../textproc/p5-Text-Wrapper DEPENDS+= p5-Time>=101.062101:../../time/p5-Time DEPENDS+= p5-Text-Autoformat>=1.04:../../textproc/p5-Text-Autoformat @@ -58,6 +62,17 @@ DEPENDS+= p5-HTML-Format>=2.03:../../www/p5-HTML-Format DEPENDS+= p5-libwww>=5.76:../../www/p5-libwww DEPENDS+= p5-Term-ReadKey>=2.21:../../devel/p5-Term-ReadKey +# Dashboard dependencies: +DEPENDS+= p5-MIME-Types-[0-9]*:../../mail/p5-MIME-Types +DEPENDS+= p5-HTML-RewriteAttributes>=0.02:../../www/p5-HTML-RewriteAttributes + +# ICAL dependencies: +DEPENDS+= p5-Data-ICal-[0-9]*:../../time/p5-Data-ICal + +# GPG dependencies: +DEPENDS+= p5-PerlIO-eol-[0-9]*:../../devel/p5-PerlIO-eol +DEPENDS+= p5-GnuPG-Interface-[0-9]*:../../security/p5-GnuPG-Interface + # Front-end dependencies: .if !empty(PKG_OPTIONS:Mmodperl1) DEPENDS+= p5-libapreq>=1.2:../../www/p5-libapreq diff --git a/devel/rt3/Makefile.install b/devel/rt3/Makefile.install index c9c79a89774..72015cf9356 100644 --- a/devel/rt3/Makefile.install +++ b/devel/rt3/Makefile.install @@ -1,7 +1,10 @@ -# $NetBSD: Makefile.install,v 1.10 2008/07/23 18:00:55 seb Exp $ +# $NetBSD: Makefile.install,v 1.11 2008/08/23 23:58:29 tonnerre Exp $ .include "dirs.mk" +BUILD_DEFS+= APACHE_USER APACHE_GROUP +INSTALLATION_DIRS+= sbin + OWN_DIRS+= ${RT_VAR_DIR} ${RT_LOCAL_DIR} ${RT_LOCAL_DIR}/etc OWN_DIRS+= ${RT_LOCAL_DIR}/lib ${RT_LOCAL_DIR}/po OWN_DIRS+= ${RT_LOCAL_DIR}/html @@ -41,7 +44,8 @@ CONF_FILES_PERMS+= ${RT_EXAMPLE_DIR}/${_file_} \ RT_ETC_FILES= acl.Oracle acl.Pg acl.mysql constraints.mysql \ drop.Oracle initialdata schema.Oracle schema.Pg \ schema.SQLite schema.mysql -RT_UPGRADE_DIRS= 3.3.0 3.3.11 3.5.1 +RT_UPGRADE_DIRS= 3.3.0 3.3.11 3.5.1 3.7.1 3.7.3 3.7.10 3.7.15 \ + 3.7.19 3.7.81 3.7.82 3.7.85 3.7.86 3.7.87 MESSAGE_SUBST+= RTVARDIR=${RT_VAR_DIR:Q} RTSHAREDIR=${RT_SHARE_DIR:Q} @@ -74,13 +78,12 @@ do-install: ${WRKSRC}/bin/standalone_httpd ${WRKSRC}/bin/mason_handler.svc \ ${WRKSRC}/bin/rt ${WRKSRC}/bin/webmux.pl \ ${PREFIX}/bin - ${INSTALL_SCRIPT_DIR} ${PREFIX}/sbin ${INSTALL_SCRIPT} ${WRKSRC}/sbin/rt-dump-database \ ${WRKSRC}/sbin/rt-setup-database \ ${WRKSRC}/sbin/rt-test-dependencies ${PREFIX}/sbin @${ECHO} "=> HTML documents" ${INSTALL_DATA_DIR} ${RT_HTML_DIR} - cd ${WRKSRC}/html && ${FIND} . -type f ! -name '*.orig' 2>/dev/null | pax -rw ${RT_HTML_DIR} + cd ${WRKSRC}/share/html && ${FIND} . -type f ! -name '*.orig' 2>/dev/null | pax -rw ${RT_HTML_DIR} @${ECHO} "=> Documentation" ${INSTALL_DATA_DIR} ${RT_DOC_DIR} ${INSTALL_DATA} ${WRKSRC}/README ${RT_DOC_DIR} diff --git a/devel/rt3/PLIST b/devel/rt3/PLIST index 1d1e4445a39..fadcacc32fe 100644 --- a/devel/rt3/PLIST +++ b/devel/rt3/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.11 2008/04/12 22:43:00 jlam Exp $ +@comment $NetBSD: PLIST,v 1.12 2008/08/23 23:58:29 tonnerre Exp $ bin/mason_handler.fcgi ${PLIST.speedycgi}bin/mason_handler.scgi bin/mason_handler.svc @@ -13,13 +13,18 @@ lib/rt3/RT/ACE.pm lib/rt3/RT/ACE_Overlay.pm lib/rt3/RT/ACL.pm lib/rt3/RT/ACL_Overlay.pm +lib/rt3/RT/Action.pm lib/rt3/RT/Action/AutoOpen.pm lib/rt3/RT/Action/Autoreply.pm lib/rt3/RT/Action/CreateTickets.pm lib/rt3/RT/Action/EscalatePriority.pm +lib/rt3/RT/Action/ExtractSubjectTag.pm lib/rt3/RT/Action/Generic.pm +lib/rt3/RT/Action/LinearEscalate.pm lib/rt3/RT/Action/Notify.pm lib/rt3/RT/Action/NotifyAsComment.pm +lib/rt3/RT/Action/NotifyGroup.pm +lib/rt3/RT/Action/NotifyGroupAsComment.pm lib/rt3/RT/Action/RecordComment.pm lib/rt3/RT/Action/RecordCorrespondence.pm lib/rt3/RT/Action/ResolveMembers.pm @@ -39,27 +44,36 @@ lib/rt3/RT/CachedGroupMember.pm lib/rt3/RT/CachedGroupMember_Overlay.pm lib/rt3/RT/CachedGroupMembers.pm lib/rt3/RT/CachedGroupMembers_Overlay.pm +lib/rt3/RT/Condition.pm lib/rt3/RT/Condition/AnyTransaction.pm lib/rt3/RT/Condition/BeforeDue.pm +lib/rt3/RT/Condition/CloseTicket.pm lib/rt3/RT/Condition/Generic.pm lib/rt3/RT/Condition/Overdue.pm lib/rt3/RT/Condition/OwnerChange.pm lib/rt3/RT/Condition/PriorityChange.pm lib/rt3/RT/Condition/PriorityExceeds.pm lib/rt3/RT/Condition/QueueChange.pm +lib/rt3/RT/Condition/ReopenTicket.pm lib/rt3/RT/Condition/StatusChange.pm lib/rt3/RT/Condition/UserDefined.pm +lib/rt3/RT/Config.pm +lib/rt3/RT/Crypt/GnuPG.pm lib/rt3/RT/CurrentUser.pm lib/rt3/RT/CustomField.pm lib/rt3/RT/CustomFieldValue.pm lib/rt3/RT/CustomFieldValue_Overlay.pm lib/rt3/RT/CustomFieldValues.pm +lib/rt3/RT/CustomFieldValues/External.pm +lib/rt3/RT/CustomFieldValues/Groups.pm lib/rt3/RT/CustomFieldValues_Overlay.pm lib/rt3/RT/CustomField_Overlay.pm lib/rt3/RT/CustomFields.pm lib/rt3/RT/CustomFields_Overlay.pm +lib/rt3/RT/Dashboard.pm lib/rt3/RT/Date.pm lib/rt3/RT/EmailParser.pm +lib/rt3/RT/Graph/Tickets.pm lib/rt3/RT/Group.pm lib/rt3/RT/GroupMember.pm lib/rt3/RT/GroupMember_Overlay.pm @@ -79,6 +93,7 @@ lib/rt3/RT/I18N/es.po lib/rt3/RT/I18N/fi.po lib/rt3/RT/I18N/fr.po lib/rt3/RT/I18N/he.po +lib/rt3/RT/I18N/hr.po lib/rt3/RT/I18N/hu.po lib/rt3/RT/I18N/i_default.pm lib/rt3/RT/I18N/id.po @@ -88,11 +103,14 @@ lib/rt3/RT/I18N/nl.po lib/rt3/RT/I18N/no.po lib/rt3/RT/I18N/pl.po lib/rt3/RT/I18N/pt_br.po +lib/rt3/RT/I18N/pt_pt.po +lib/rt3/RT/I18N/rt.pot lib/rt3/RT/I18N/ru.po lib/rt3/RT/I18N/sv.po lib/rt3/RT/I18N/tr.po lib/rt3/RT/I18N/zh_cn.po lib/rt3/RT/I18N/zh_tw.po +lib/rt3/RT/Installer.pm lib/rt3/RT/Interface/CLI.pm lib/rt3/RT/Interface/Email.pm lib/rt3/RT/Interface/Email/Auth/GnuPG.pm @@ -105,7 +123,10 @@ lib/rt3/RT/Interface/Web/Menu.pm lib/rt3/RT/Interface/Web/Menu/Item.pm lib/rt3/RT/Interface/Web/QueryBuilder.pm lib/rt3/RT/Interface/Web/QueryBuilder/Tree.pm +lib/rt3/RT/Interface/Web/Request.pm +lib/rt3/RT/Interface/Web/Session.pm lib/rt3/RT/Interface/Web/Standalone.pm +lib/rt3/RT/Interface/Web/Standalone/PreFork.pm lib/rt3/RT/Link.pm lib/rt3/RT/Link_Overlay.pm lib/rt3/RT/Links.pm @@ -118,6 +139,7 @@ lib/rt3/RT/ObjectCustomFieldValues_Overlay.pm lib/rt3/RT/ObjectCustomField_Overlay.pm lib/rt3/RT/ObjectCustomFields.pm lib/rt3/RT/ObjectCustomFields_Overlay.pm +lib/rt3/RT/Plugin.pm lib/rt3/RT/Principal.pm lib/rt3/RT/Principal_Overlay.pm lib/rt3/RT/Principals.pm @@ -130,6 +152,7 @@ lib/rt3/RT/Record.pm lib/rt3/RT/Reminders.pm lib/rt3/RT/Report/Tickets.pm lib/rt3/RT/Report/Tickets/Entry.pm +lib/rt3/RT/SQL.pm lib/rt3/RT/SavedSearch.pm lib/rt3/RT/SavedSearches.pm lib/rt3/RT/Scrip.pm @@ -144,17 +167,56 @@ lib/rt3/RT/ScripConditions_Overlay.pm lib/rt3/RT/Scrip_Overlay.pm lib/rt3/RT/Scrips.pm lib/rt3/RT/Scrips_Overlay.pm +lib/rt3/RT/Search.pm lib/rt3/RT/Search/ActiveTicketsInQueue.pm lib/rt3/RT/Search/FromSQL.pm lib/rt3/RT/Search/Generic.pm lib/rt3/RT/Search/Googleish.pm lib/rt3/RT/SearchBuilder.pm +lib/rt3/RT/SharedSetting.pm +lib/rt3/RT/Shredder.pm +lib/rt3/RT/Shredder/ACE.pm +lib/rt3/RT/Shredder/Attachment.pm +lib/rt3/RT/Shredder/CachedGroupMember.pm +lib/rt3/RT/Shredder/Constants.pm +lib/rt3/RT/Shredder/CustomField.pm +lib/rt3/RT/Shredder/CustomFieldValue.pm +lib/rt3/RT/Shredder/Dependencies.pm +lib/rt3/RT/Shredder/Dependency.pm +lib/rt3/RT/Shredder/Exceptions.pm +lib/rt3/RT/Shredder/Group.pm +lib/rt3/RT/Shredder/GroupMember.pm +lib/rt3/RT/Shredder/Link.pm +lib/rt3/RT/Shredder/ObjectCustomFieldValue.pm +lib/rt3/RT/Shredder/POD.pm +lib/rt3/RT/Shredder/Plugin.pm +lib/rt3/RT/Shredder/Plugin/Attachments.pm +lib/rt3/RT/Shredder/Plugin/Base.pm +lib/rt3/RT/Shredder/Plugin/Base/Dump.pm +lib/rt3/RT/Shredder/Plugin/Base/Search.pm +lib/rt3/RT/Shredder/Plugin/Objects.pm +lib/rt3/RT/Shredder/Plugin/SQLDump.pm +lib/rt3/RT/Shredder/Plugin/Summary.pm +lib/rt3/RT/Shredder/Plugin/Tickets.pm +lib/rt3/RT/Shredder/Plugin/Users.pm +lib/rt3/RT/Shredder/Principal.pm +lib/rt3/RT/Shredder/Queue.pm +lib/rt3/RT/Shredder/Record.pm +lib/rt3/RT/Shredder/Scrip.pm +lib/rt3/RT/Shredder/ScripAction.pm +lib/rt3/RT/Shredder/ScripCondition.pm +lib/rt3/RT/Shredder/Template.pm +lib/rt3/RT/Shredder/Ticket.pm +lib/rt3/RT/Shredder/Transaction.pm +lib/rt3/RT/Shredder/User.pm lib/rt3/RT/StyleGuide.pod lib/rt3/RT/System.pm lib/rt3/RT/Template.pm lib/rt3/RT/Template_Overlay.pm lib/rt3/RT/Templates.pm lib/rt3/RT/Templates_Overlay.pm +lib/rt3/RT/Test.pm +lib/rt3/RT/Test/Web.pm lib/rt3/RT/Ticket.pm lib/rt3/RT/Ticket_Overlay.pm lib/rt3/RT/Tickets.pm @@ -172,73 +234,7 @@ lib/rt3/RT/User.pm lib/rt3/RT/User_Overlay.pm lib/rt3/RT/Users.pm lib/rt3/RT/Users_Overlay.pm -lib/rt3/t/00smoke.t -lib/rt3/t/create_data.pl -lib/rt3/t/data/8859-15-message-series/dir -lib/rt3/t/data/8859-15-message-series/msg1 -lib/rt3/t/data/8859-15-message-series/msg2 -lib/rt3/t/data/8859-15-message-series/msg3 -lib/rt3/t/data/8859-15-message-series/msg4 -lib/rt3/t/data/8859-15-message-series/msg5 -lib/rt3/t/data/8859-15-message-series/msg6 -lib/rt3/t/data/8859-15-message-series/msg7 -lib/rt3/t/data/crashes-file-based-parser -lib/rt3/t/data/lorem-ipsum -lib/rt3/t/data/multipart-alternative-with-umlaut -lib/rt3/t/data/multipart-report -lib/rt3/t/data/nested-mime-sample -lib/rt3/t/data/nested-rfc-822 -lib/rt3/t/data/new-ticket-from-iso-8859-1 -lib/rt3/t/data/new-ticket-from-iso-8859-1-full -lib/rt3/t/data/notes-uuencoded -lib/rt3/t/data/rt-send-cc -lib/rt3/t/data/russian-subject-no-content-type -lib/rt3/t/data/subject-with-folding-ws -lib/rt3/t/data/text-html-in-russian -lib/rt3/t/data/text-html-with-umlaut -lib/rt3/t/data/very-long-subject -lib/rt3/t/regression/00-mason-syntax.t -lib/rt3/t/regression/01ticket_link_searching.t -lib/rt3/t/regression/02basic_web.t -lib/rt3/t/regression/03web_compiliation_errors.t -lib/rt3/t/regression/04send_email.t -lib/rt3/t/regression/05cronsupport.t -lib/rt3/t/regression/06-mime_decoding.t -lib/rt3/t/regression/06mailgateway.t -lib/rt3/t/regression/07acl.t -lib/rt3/t/regression/07rights.t -lib/rt3/t/regression/08web_cf_access.t -lib/rt3/t/regression/09record_cf_api.t -lib/rt3/t/regression/10merge.t -lib/rt3/t/regression/11-template-insert.t -lib/rt3/t/regression/12-search.t -lib/rt3/t/regression/13-attribute-tests.t -lib/rt3/t/regression/14linking.t -lib/rt3/t/regression/14merge.t -lib/rt3/t/regression/15cf_combo_cascade.t -lib/rt3/t/regression/15cf_pattern.t -lib/rt3/t/regression/15cf_single_values_are_single.t -lib/rt3/t/regression/16-transaction_cf_tests.t -lib/rt3/t/regression/17custom_search.t -lib/rt3/t/regression/17multiple_deleg_revocation.t -lib/rt3/t/regression/18custom_frontpage.t -lib/rt3/t/regression/18stale_delegations_cleanup.t -lib/rt3/t/regression/19-rtname.t -lib/rt3/t/regression/19quicksearch.t -lib/rt3/t/regression/20-sort-by-requestor.t -lib/rt3/t/regression/20savedsearch.t -lib/rt3/t/regression/21query-builder.t -lib/rt3/t/regression/22search_tix_by_txn.t -lib/rt3/t/regression/22search_tix_by_watcher.t -lib/rt3/t/regression/23-batch-upload-csv.t -lib/rt3/t/regression/23-web_attachments.t -lib/rt3/t/regression/23cfsort.t -lib/rt3/t/regression/24pawsort.t -lib/rt3/t/regression/25scrip_order.t -lib/rt3/t/regression/26command_line.t -lib/rt3/t/regression/27verp.t -lib/rt3/t/regression/mime_tests -lib/rt3/t/setup_regression.t +lib/rt3/RT/Util.pm sbin/rt-dump-database sbin/rt-setup-database sbin/rt-test-dependencies @@ -255,25 +251,38 @@ share/rt3/etc/schema.Oracle share/rt3/etc/schema.Pg share/rt3/etc/schema.SQLite share/rt3/etc/schema.mysql -share/rt3/etc/upgrade/3.3.0/schema.Oracle -share/rt3/etc/upgrade/3.3.0/acl.SQLite +share/rt3/etc/upgrade/3.3.0/acl.Informix share/rt3/etc/upgrade/3.3.0/acl.Oracle -share/rt3/etc/upgrade/3.3.0/acl.mysql share/rt3/etc/upgrade/3.3.0/acl.Pg -share/rt3/etc/upgrade/3.3.0/schema.mysql -share/rt3/etc/upgrade/3.3.0/schema.Pg -share/rt3/etc/upgrade/3.3.0/acl.Informix +share/rt3/etc/upgrade/3.3.0/acl.SQLite +share/rt3/etc/upgrade/3.3.0/acl.mysql share/rt3/etc/upgrade/3.3.0/content -share/rt3/etc/upgrade/3.3.11/schema.SQLite -share/rt3/etc/upgrade/3.3.11/acl.SQLite -share/rt3/etc/upgrade/3.3.11/schema.Oracle +share/rt3/etc/upgrade/3.3.0/schema.Oracle +share/rt3/etc/upgrade/3.3.0/schema.Pg +share/rt3/etc/upgrade/3.3.0/schema.mysql share/rt3/etc/upgrade/3.3.11/acl.Oracle -share/rt3/etc/upgrade/3.3.11/acl.mysql share/rt3/etc/upgrade/3.3.11/acl.Pg -share/rt3/etc/upgrade/3.3.11/schema.mysql -share/rt3/etc/upgrade/3.3.11/schema.Pg +share/rt3/etc/upgrade/3.3.11/acl.SQLite +share/rt3/etc/upgrade/3.3.11/acl.mysql share/rt3/etc/upgrade/3.3.11/content +share/rt3/etc/upgrade/3.3.11/schema.Oracle +share/rt3/etc/upgrade/3.3.11/schema.Pg +share/rt3/etc/upgrade/3.3.11/schema.SQLite +share/rt3/etc/upgrade/3.3.11/schema.mysql share/rt3/etc/upgrade/3.5.1/content +share/rt3/etc/upgrade/3.7.1/content +share/rt3/etc/upgrade/3.7.10/content +share/rt3/etc/upgrade/3.7.15/content +share/rt3/etc/upgrade/3.7.19/content +share/rt3/etc/upgrade/3.7.3/schema.Oracle +share/rt3/etc/upgrade/3.7.3/schema.Pg +share/rt3/etc/upgrade/3.7.3/schema.mysql +share/rt3/etc/upgrade/3.7.81/schema.Oracle +share/rt3/etc/upgrade/3.7.81/schema.mysql +share/rt3/etc/upgrade/3.7.82/content +share/rt3/etc/upgrade/3.7.85/content +share/rt3/etc/upgrade/3.7.86/content +share/rt3/etc/upgrade/3.7.87/content share/rt3/html/Admin/CustomFields/GroupRights.html share/rt3/html/Admin/CustomFields/Modify.html share/rt3/html/Admin/CustomFields/Objects.html @@ -285,6 +294,7 @@ share/rt3/html/Admin/Elements/CreateUserCalled share/rt3/html/Admin/Elements/CustomFieldTabs share/rt3/html/Admin/Elements/EditCustomField share/rt3/html/Admin/Elements/EditCustomFieldValues +share/rt3/html/Admin/Elements/EditCustomFieldValuesSource share/rt3/html/Admin/Elements/EditCustomFields share/rt3/html/Admin/Elements/EditQueueWatchers share/rt3/html/Admin/Elements/EditScrip @@ -317,6 +327,7 @@ share/rt3/html/Admin/Elements/SelectSingleOrMultiple share/rt3/html/Admin/Elements/SelectStage share/rt3/html/Admin/Elements/SelectTemplate share/rt3/html/Admin/Elements/SelectUsers +share/rt3/html/Admin/Elements/ShowKeyInfo share/rt3/html/Admin/Elements/SystemTabs share/rt3/html/Admin/Elements/Tabs share/rt3/html/Admin/Elements/ToolTabs @@ -324,6 +335,7 @@ share/rt3/html/Admin/Elements/UserTabs share/rt3/html/Admin/Global/CustomFields/Groups.html share/rt3/html/Admin/Global/CustomFields/Queue-Tickets.html share/rt3/html/Admin/Global/CustomFields/Queue-Transactions.html +share/rt3/html/Admin/Global/CustomFields/Queues.html share/rt3/html/Admin/Global/CustomFields/Users.html share/rt3/html/Admin/Global/CustomFields/index.html share/rt3/html/Admin/Global/GroupRights.html @@ -353,8 +365,23 @@ share/rt3/html/Admin/Queues/Templates.html share/rt3/html/Admin/Queues/UserRights.html share/rt3/html/Admin/Queues/index.html share/rt3/html/Admin/Tools/Configuration.html +share/rt3/html/Admin/Tools/Shredder/Dumps/dhandler +share/rt3/html/Admin/Tools/Shredder/Elements/DumpFileLink +share/rt3/html/Admin/Tools/Shredder/Elements/Error/NoRights +share/rt3/html/Admin/Tools/Shredder/Elements/Error/NoStorage +share/rt3/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment +share/rt3/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket +share/rt3/html/Admin/Tools/Shredder/Elements/Object/RT--User +share/rt3/html/Admin/Tools/Shredder/Elements/ObjectCheckBox +share/rt3/html/Admin/Tools/Shredder/Elements/PluginArguments +share/rt3/html/Admin/Tools/Shredder/Elements/PluginHelp +share/rt3/html/Admin/Tools/Shredder/Elements/SelectObjects +share/rt3/html/Admin/Tools/Shredder/Elements/SelectPlugin +share/rt3/html/Admin/Tools/Shredder/autohandler +share/rt3/html/Admin/Tools/Shredder/index.html share/rt3/html/Admin/Tools/index.html share/rt3/html/Admin/Users/CustomFields.html +share/rt3/html/Admin/Users/GnuPG.html share/rt3/html/Admin/Users/History.html share/rt3/html/Admin/Users/Memberships.html share/rt3/html/Admin/Users/Modify.html @@ -368,6 +395,19 @@ share/rt3/html/Approvals/Elements/PendingMyApproval share/rt3/html/Approvals/Elements/ShowDependency share/rt3/html/Approvals/Elements/Tabs share/rt3/html/Approvals/index.html +share/rt3/html/CalPopup.html +share/rt3/html/Dashboards/Elements/DashboardsForObject +share/rt3/html/Dashboards/Elements/DashboardsForObjects +share/rt3/html/Dashboards/Elements/SelectPrivacy +share/rt3/html/Dashboards/Elements/ShowDashboards +share/rt3/html/Dashboards/Elements/ShowSubscription +share/rt3/html/Dashboards/Elements/Tabs +share/rt3/html/Dashboards/Modify.html +share/rt3/html/Dashboards/Queries.html +share/rt3/html/Dashboards/Render.html +share/rt3/html/Dashboards/Subscription.html +share/rt3/html/Dashboards/dhandler +share/rt3/html/Dashboards/index.html share/rt3/html/Download/CustomFieldValue/dhandler share/rt3/html/Download/Tabular/dhandler share/rt3/html/Elements/BevelBoxRaisedEnd @@ -377,8 +417,13 @@ share/rt3/html/Elements/Checkbox share/rt3/html/Elements/CollectionAsTable/Header share/rt3/html/Elements/CollectionAsTable/ParseFormat share/rt3/html/Elements/CollectionAsTable/Row +share/rt3/html/Elements/CollectionList +share/rt3/html/Elements/CollectionListPaging +share/rt3/html/Elements/ColumnMap share/rt3/html/Elements/CreateTicket +share/rt3/html/Elements/Dashboards share/rt3/html/Elements/EditCustomField +share/rt3/html/Elements/EditCustomFieldAutocomplete share/rt3/html/Elements/EditCustomFieldBinary share/rt3/html/Elements/EditCustomFieldCombobox share/rt3/html/Elements/EditCustomFieldFreeform @@ -390,11 +435,18 @@ share/rt3/html/Elements/EditLinks share/rt3/html/Elements/EmailInput share/rt3/html/Elements/Error share/rt3/html/Elements/Footer +share/rt3/html/Elements/GnuPG/KeyIssues +share/rt3/html/Elements/GnuPG/SelectKeyForEncryption +share/rt3/html/Elements/GnuPG/SelectKeyForSigning +share/rt3/html/Elements/GnuPG/SignEncryptWidget share/rt3/html/Elements/GotoTicket share/rt3/html/Elements/Header +share/rt3/html/Elements/HeaderJavascript share/rt3/html/Elements/ListActions +share/rt3/html/Elements/ListMenu share/rt3/html/Elements/Login share/rt3/html/Elements/Logo +share/rt3/html/Elements/MakeClicky share/rt3/html/Elements/Menu share/rt3/html/Elements/MessageBox share/rt3/html/Elements/MyAdminQueues @@ -408,7 +460,12 @@ share/rt3/html/Elements/QueryString share/rt3/html/Elements/QueueSummary share/rt3/html/Elements/QuickCreate share/rt3/html/Elements/Quicksearch +share/rt3/html/Elements/RT__Group/ColumnMap +share/rt3/html/Elements/RT__Queue/ColumnMap +share/rt3/html/Elements/RT__Scrip/ColumnMap +share/rt3/html/Elements/RT__Template/ColumnMap share/rt3/html/Elements/RT__Ticket/ColumnMap +share/rt3/html/Elements/RT__User/ColumnMap share/rt3/html/Elements/Refresh share/rt3/html/Elements/RefreshHomepage share/rt3/html/Elements/ScrubHTML @@ -434,17 +491,22 @@ share/rt3/html/Elements/SelectStatus share/rt3/html/Elements/SelectTicketSortBy share/rt3/html/Elements/SelectTicketTypes share/rt3/html/Elements/SelectTimeUnits +share/rt3/html/Elements/SelectTimezone share/rt3/html/Elements/SelectUsers share/rt3/html/Elements/SelectWatcherType share/rt3/html/Elements/SetupSessionCookie share/rt3/html/Elements/ShowCustomFieldBinary share/rt3/html/Elements/ShowCustomFieldImage +share/rt3/html/Elements/ShowCustomFieldText share/rt3/html/Elements/ShowCustomFieldWikitext share/rt3/html/Elements/ShowCustomFields share/rt3/html/Elements/ShowLink share/rt3/html/Elements/ShowLinks share/rt3/html/Elements/ShowMemberships share/rt3/html/Elements/ShowSearch +share/rt3/html/Elements/ShowUser +share/rt3/html/Elements/ShowUserConcise +share/rt3/html/Elements/ShowUserVerbose share/rt3/html/Elements/SimpleSearch share/rt3/html/Elements/Submit share/rt3/html/Elements/Tabs @@ -453,10 +515,307 @@ share/rt3/html/Elements/TitleBox share/rt3/html/Elements/TitleBoxEnd share/rt3/html/Elements/TitleBoxStart share/rt3/html/Elements/ValidateCustomFields +share/rt3/html/Helpers/Autocomplete/CustomFieldValues share/rt3/html/Helpers/CalPopup.html -share/rt3/html/Helpers/EmailAutocomplete +share/rt3/html/Helpers/Toggle/TicketBookmark +share/rt3/html/Install/Basics.html +share/rt3/html/Install/DatabaseDetails.html +share/rt3/html/Install/DatabaseType.html +share/rt3/html/Install/Elements/Errors +share/rt3/html/Install/Elements/Wrapper +share/rt3/html/Install/Finish.html +share/rt3/html/Install/Global.html +share/rt3/html/Install/Initialize.html +share/rt3/html/Install/Sendmail.html +share/rt3/html/Install/autohandler +share/rt3/html/Install/index.html share/rt3/html/NoAuth/Logout.html share/rt3/html/NoAuth/Reminder.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/css/behaviors/disablehandles.htc +share/rt3/html/NoAuth/RichText/FCKeditor/editor/css/behaviors/showtableborders.htc +share/rt3/html/NoAuth/RichText/FCKeditor/editor/css/fck_editorarea.css +share/rt3/html/NoAuth/RichText/FCKeditor/editor/css/fck_internal.css +share/rt3/html/NoAuth/RichText/FCKeditor/editor/css/fck_showtableborders_gecko.css +share/rt3/html/NoAuth/RichText/FCKeditor/editor/css/images/block_address.png +share/rt3/html/NoAuth/RichText/FCKeditor/editor/css/images/block_blockquote.png +share/rt3/html/NoAuth/RichText/FCKeditor/editor/css/images/block_div.png +share/rt3/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h1.png +share/rt3/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h2.png +share/rt3/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h3.png +share/rt3/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h4.png +share/rt3/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h5.png +share/rt3/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h6.png +share/rt3/html/NoAuth/RichText/FCKeditor/editor/css/images/block_p.png +share/rt3/html/NoAuth/RichText/FCKeditor/editor/css/images/block_pre.png +share/rt3/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_anchor.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_flashlogo.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_hiddenfield.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_pagebreak.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/common/fck_dialog_common.css +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/common/fck_dialog_common.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/common/images/locked.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/common/images/reset.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/common/images/unlocked.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_about.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_about/logo_fckeditor.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_about/logo_fredck.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_anchor.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_button.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_checkbox.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_colorselector.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_docprops.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_docprops/fck_document_preview.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_flash.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_flash/fck_flash.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_flash/fck_flash_preview.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_form.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_hiddenfield.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_image.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_image/fck_image.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_image/fck_image_preview.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_link.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_link/fck_link.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_listprop.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_paste.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_radiobutton.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_replace.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_select.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_select/fck_select.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_smiley.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_source.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_specialchar.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/controlWindow.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/controls.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/wordWindow.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_table.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_tablecell.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_template.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_template/images/template1.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_template/images/template2.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_template/images/template3.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_textarea.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_textfield.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dtd/fck_dtd_test.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dtd/fck_xhtml10strict.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/dtd/fck_xhtml10transitional.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/fckdebug.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/fckdialog.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/fckeditor.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/fckeditor.original.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/browser.css +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/browser.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/frmactualfolder.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/frmcreatefolder.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/frmfolders.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/frmresourceslist.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/frmresourcetype.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/frmupload.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/ButtonArrow.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/Folder.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/Folder32.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/FolderOpened.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/FolderOpened32.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/FolderUp.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/ai.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/avi.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/bmp.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/cs.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/default.icon.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/dll.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/doc.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/exe.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/fla.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/gif.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/htm.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/html.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/jpg.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/js.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/mdb.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/mp3.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/pdf.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/png.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/ppt.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/rdp.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/swf.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/swt.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/txt.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/vsd.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/xls.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/xml.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32/zip.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/ai.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/avi.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/bmp.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/cs.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/default.icon.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/dll.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/doc.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/exe.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/fla.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/gif.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/htm.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/html.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/jpg.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/js.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/mdb.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/mp3.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/pdf.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/png.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/ppt.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/rdp.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/swf.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/swt.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/txt.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/vsd.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/xls.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/xml.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/zip.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/spacer.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/js/common.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/js/fckxml.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/images/anchor.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/images/arrow_ltr.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/images/arrow_rtl.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/angel_smile.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/angry_smile.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/broken_heart.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/cake.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/confused_smile.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/cry_smile.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/devil_smile.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/embaressed_smile.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/envelope.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/heart.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/kiss.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/lightbulb.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/omg_smile.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/regular_smile.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/sad_smile.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/shades_smile.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/teeth_smile.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/thumbs_down.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/thumbs_up.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/tounge_smile.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/whatchutalkingabout_smile.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn/wink_smile.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/images/spacer.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/js/fckeditorcode_gecko.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/js/fckeditorcode_ie.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/_translationstatus.txt +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/af.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/ar.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/bg.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/bn.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/bs.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/ca.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/cs.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/da.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/de.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/el.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/en-au.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/en-ca.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/en-uk.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/en.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/eo.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/es.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/et.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/eu.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/fa.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/fi.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/fo.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/fr.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/gl.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/he.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/hi.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/hr.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/hu.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/it.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/ja.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/km.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/ko.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/lt.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/lv.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/mn.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/ms.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/nb.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/nl.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/no.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/pl.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/pt-br.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/pt.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/ro.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/ru.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/sk.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/sl.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/sr-latn.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/sr.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/sv.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/th.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/tr.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/uk.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/vi.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/zh-cn.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang/zh.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/plugins/autogrow/fckplugin.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/plugins/bbcode/_sample/sample.config.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/plugins/bbcode/_sample/sample.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/plugins/bbcode/fckplugin.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/plugins/dragresizetable/fckplugin.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/fck_placeholder.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/fckplugin.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/lang/de.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/lang/en.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/lang/fr.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/lang/it.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/lang/pl.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/placeholder.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/plugins/simplecommands/fckplugin.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/plugins/tablecommands/fckplugin.js +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/_fckviewstrips.html +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/default/fck_dialog.css +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/default/fck_editor.css +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/default/fck_strip.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/toolbar.arrowright.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/toolbar.buttonarrow.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/toolbar.collapse.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/toolbar.end.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/toolbar.expand.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/toolbar.separator.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/default/images/toolbar.start.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/fck_dialog.css +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/fck_editor.css +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/fck_strip.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/toolbar.arrowright.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/toolbar.bg.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/toolbar.buttonarrow.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/toolbar.collapse.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/toolbar.end.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/toolbar.expand.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/toolbar.separator.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images/toolbar.start.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/silver/fck_dialog.css +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/silver/fck_editor.css +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/silver/fck_strip.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/toolbar.arrowright.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/toolbar.buttonarrow.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/toolbar.buttonbg.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/toolbar.collapse.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/toolbar.end.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/toolbar.expand.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/toolbar.separator.gif +share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images/toolbar.start.gif +share/rt3/html/NoAuth/RichText/FCKeditor/fckconfig.js +share/rt3/html/NoAuth/RichText/FCKeditor/fckeditor.js +share/rt3/html/NoAuth/RichText/FCKeditor/fckpackager.xml +share/rt3/html/NoAuth/RichText/FCKeditor/fckstyles.xml +share/rt3/html/NoAuth/RichText/FCKeditor/fcktemplates.xml +share/rt3/html/NoAuth/RichText/FCKeditor/license.txt +share/rt3/html/NoAuth/RichText/dhandler share/rt3/html/NoAuth/css/3.4-compat/body.css share/rt3/html/NoAuth/css/3.4-compat/footer.css share/rt3/html/NoAuth/css/3.4-compat/forms.css @@ -474,17 +833,45 @@ share/rt3/html/NoAuth/css/3.5-default/body.css share/rt3/html/NoAuth/css/3.5-default/footer.css share/rt3/html/NoAuth/css/3.5-default/forms.css share/rt3/html/NoAuth/css/3.5-default/header.css +share/rt3/html/NoAuth/css/3.5-default/local.css share/rt3/html/NoAuth/css/3.5-default/login.css share/rt3/html/NoAuth/css/3.5-default/logo.css share/rt3/html/NoAuth/css/3.5-default/main.css share/rt3/html/NoAuth/css/3.5-default/misc.css +share/rt3/html/NoAuth/css/3.5-default/nav-left.css share/rt3/html/NoAuth/css/3.5-default/nav.css share/rt3/html/NoAuth/css/3.5-default/quickbar.css +share/rt3/html/NoAuth/css/3.5-default/ticket-search.css share/rt3/html/NoAuth/css/3.5-default/ticket.css share/rt3/html/NoAuth/css/3.5-default/titlebox.css share/rt3/html/NoAuth/css/3.5-default/transactions.css share/rt3/html/NoAuth/css/autohandler share/rt3/html/NoAuth/css/dhandler +share/rt3/html/NoAuth/css/print.css +share/rt3/html/NoAuth/css/web2/InHeader +share/rt3/html/NoAuth/css/web2/admin.css +share/rt3/html/NoAuth/css/web2/base.css +share/rt3/html/NoAuth/css/web2/boxes.css +share/rt3/html/NoAuth/css/web2/forms.css +share/rt3/html/NoAuth/css/web2/gradient-glossy.png +share/rt3/html/NoAuth/css/web2/images/dhandler +share/rt3/html/NoAuth/css/web2/images/source/background-gradient.png +share/rt3/html/NoAuth/css/web2/layout.css +share/rt3/html/NoAuth/css/web2/login.css +share/rt3/html/NoAuth/css/web2/main.css +share/rt3/html/NoAuth/css/web2/misc.css +share/rt3/html/NoAuth/css/web2/msie.css +share/rt3/html/NoAuth/css/web2/msie6.css +share/rt3/html/NoAuth/css/web2/nav.css +share/rt3/html/NoAuth/css/web2/portlets.css +share/rt3/html/NoAuth/css/web2/ticket-lists.css +share/rt3/html/NoAuth/css/web2/ticket-search.css +share/rt3/html/NoAuth/css/web2/ticket.css +share/rt3/html/NoAuth/css/web2/tools.css +share/rt3/html/NoAuth/css/web2/yui-fonts.css +share/rt3/html/NoAuth/iCal/dhandler +share/rt3/html/NoAuth/images/autohandler +share/rt3/html/NoAuth/images/bplogo.gif share/rt3/html/NoAuth/images/css/cb-light.gif share/rt3/html/NoAuth/images/css/cb.gif share/rt3/html/NoAuth/images/css/cbr-b2g.gif @@ -507,24 +894,29 @@ share/rt3/html/NoAuth/images/css/light-arrow.png share/rt3/html/NoAuth/images/css/rolldown-arrow.gif share/rt3/html/NoAuth/images/css/rolldown-arrow.png share/rt3/html/NoAuth/images/css/rollup-arrow.gif -share/rt3/html/NoAuth/css/print.css -share/rt3/html/NoAuth/images/autohandler -share/rt3/html/NoAuth/images/bplogo.gif +share/rt3/html/NoAuth/images/empty_star.gif share/rt3/html/NoAuth/images/favicon.png +share/rt3/html/NoAuth/images/star.gif +share/rt3/html/NoAuth/js/IE7/IE7.js +share/rt3/html/NoAuth/js/IE7/IE8.js +share/rt3/html/NoAuth/js/IE7/blank.gif +share/rt3/html/NoAuth/js/IE7/ie7-recalc.js +share/rt3/html/NoAuth/js/IE7/ie7-squish.js share/rt3/html/NoAuth/js/ahah.js share/rt3/html/NoAuth/js/autohandler share/rt3/html/NoAuth/js/cascaded.js share/rt3/html/NoAuth/js/class.js share/rt3/html/NoAuth/js/combobox.js share/rt3/html/NoAuth/js/list.js +share/rt3/html/NoAuth/js/prototype/prototype.js share/rt3/html/NoAuth/js/scriptaculous/controls.js share/rt3/html/NoAuth/js/scriptaculous/effects.js -share/rt3/html/NoAuth/js/scriptaculous/prototype.js share/rt3/html/NoAuth/js/scriptaculous/scriptaculous.js share/rt3/html/NoAuth/js/titlebox-state.js share/rt3/html/NoAuth/js/util.js share/rt3/html/Prefs/Elements/Tabs share/rt3/html/Prefs/MyRT.html +share/rt3/html/Prefs/Other.html share/rt3/html/Prefs/Quicksearch.html share/rt3/html/Prefs/Search.html share/rt3/html/Prefs/SearchOptions.html @@ -556,14 +948,17 @@ share/rt3/html/Search/Chart.html share/rt3/html/Search/Edit.html share/rt3/html/Search/Elements/BuildFormatString share/rt3/html/Search/Elements/Chart +share/rt3/html/Search/Elements/ConditionRow share/rt3/html/Search/Elements/DisplayOptions share/rt3/html/Search/Elements/EditFormat share/rt3/html/Search/Elements/EditQuery share/rt3/html/Search/Elements/EditSearches +share/rt3/html/Search/Elements/Graph share/rt3/html/Search/Elements/NewListActions share/rt3/html/Search/Elements/PickBasics share/rt3/html/Search/Elements/PickCFs share/rt3/html/Search/Elements/PickCriteria +share/rt3/html/Search/Elements/ResultViews share/rt3/html/Search/Elements/SearchPrivacy share/rt3/html/Search/Elements/SearchesForObject share/rt3/html/Search/Elements/SelectAndOr @@ -574,6 +969,7 @@ share/rt3/html/Search/Elements/SelectLinks share/rt3/html/Search/Elements/SelectPersonType share/rt3/html/Search/Elements/SelectSearchObject share/rt3/html/Search/Elements/SelectSearchesForObjects +share/rt3/html/Search/Graph.html share/rt3/html/Search/Results.html share/rt3/html/Search/Results.rdf share/rt3/html/Search/Results.tsv @@ -591,13 +987,14 @@ share/rt3/html/SelfService/Error.html share/rt3/html/SelfService/Prefs.html share/rt3/html/SelfService/Update.html share/rt3/html/SelfService/index.html +share/rt3/html/Ticket/Attachment/WithHeaders/dhandler share/rt3/html/Ticket/Attachment/dhandler share/rt3/html/Ticket/Create.html share/rt3/html/Ticket/Display.html share/rt3/html/Ticket/Elements/AddWatchers +share/rt3/html/Ticket/Elements/Bookmark share/rt3/html/Ticket/Elements/BulkLinks share/rt3/html/Ticket/Elements/EditBasics -share/rt3/html/Ticket/Elements/EditCustomField share/rt3/html/Ticket/Elements/EditCustomFields share/rt3/html/Ticket/Elements/EditDates share/rt3/html/Ticket/Elements/EditPeople @@ -611,6 +1008,7 @@ share/rt3/html/Ticket/Elements/ShowBasics share/rt3/html/Ticket/Elements/ShowCustomFields share/rt3/html/Ticket/Elements/ShowDates share/rt3/html/Ticket/Elements/ShowDependencies +share/rt3/html/Ticket/Elements/ShowGnuPGStatus share/rt3/html/Ticket/Elements/ShowGroupMembers share/rt3/html/Ticket/Elements/ShowHistory share/rt3/html/Ticket/Elements/ShowMembers @@ -623,8 +1021,17 @@ share/rt3/html/Ticket/Elements/ShowSummary share/rt3/html/Ticket/Elements/ShowTime share/rt3/html/Ticket/Elements/ShowTransaction share/rt3/html/Ticket/Elements/ShowTransactionAttachments +share/rt3/html/Ticket/Elements/ShowUpdateStatus share/rt3/html/Ticket/Elements/ShowUserEntry share/rt3/html/Ticket/Elements/Tabs +share/rt3/html/Ticket/Elements/UpdateCc +share/rt3/html/Ticket/Forward.html +share/rt3/html/Ticket/GnuPG.html +share/rt3/html/Ticket/Graphs/Elements/EditGraphProperties +share/rt3/html/Ticket/Graphs/Elements/ShowGraph +share/rt3/html/Ticket/Graphs/Elements/ShowLegends +share/rt3/html/Ticket/Graphs/dhandler +share/rt3/html/Ticket/Graphs/index.html share/rt3/html/Ticket/History.html share/rt3/html/Ticket/Modify.html share/rt3/html/Ticket/ModifyAll.html @@ -651,15 +1058,24 @@ share/rt3/html/User/Groups/Members.html share/rt3/html/User/Groups/Modify.html share/rt3/html/User/Groups/index.html share/rt3/html/User/Prefs.html +share/rt3/html/Widgets/BulkEdit +share/rt3/html/Widgets/BulkProcess share/rt3/html/Widgets/ComboBox +share/rt3/html/Widgets/FinalizeWidgetArguments +share/rt3/html/Widgets/Form/Boolean +share/rt3/html/Widgets/Form/Integer +share/rt3/html/Widgets/Form/Select +share/rt3/html/Widgets/Form/String share/rt3/html/Widgets/SavedSearch share/rt3/html/Widgets/SelectionBox share/rt3/html/Widgets/TitleBox share/rt3/html/Widgets/TitleBoxEnd share/rt3/html/Widgets/TitleBoxStart share/rt3/html/autohandler +share/rt3/html/dhandler share/rt3/html/index.html share/rt3/html/l +@dirrm share/rt3/html/Widgets/Form @dirrm share/rt3/html/Widgets @dirrm share/rt3/html/User/Groups @dirrm share/rt3/html/User/Elements @@ -668,7 +1084,10 @@ share/rt3/html/l @dirrm share/rt3/html/Tools/Reports @dirrm share/rt3/html/Tools/Elements @dirrm share/rt3/html/Tools +@dirrm share/rt3/html/Ticket/Graphs/Elements +@dirrm share/rt3/html/Ticket/Graphs @dirrm share/rt3/html/Ticket/Elements +@dirrm share/rt3/html/Ticket/Attachment/WithHeaders @dirrm share/rt3/html/Ticket/Attachment @dirrm share/rt3/html/Ticket @dirrm share/rt3/html/SelfService/Elements @@ -680,8 +1099,8 @@ share/rt3/html/l @dirrm share/rt3/html/REST/1.0/search @dirrm share/rt3/html/REST/1.0/NoAuth @dirrm share/rt3/html/REST/1.0/Forms/user -@dirrm share/rt3/html/REST/1.0/Forms/ticket @dirrm share/rt3/html/REST/1.0/Forms/transaction +@dirrm share/rt3/html/REST/1.0/Forms/ticket @dirrm share/rt3/html/REST/1.0/Forms/queue @dirrm share/rt3/html/REST/1.0/Forms @dirrm share/rt3/html/REST/1.0 @@ -694,19 +1113,96 @@ share/rt3/html/l @dirrm share/rt3/html/NoAuth/images/css @dirrm share/rt3/html/NoAuth/images @dirrm share/rt3/html/NoAuth/js/scriptaculous +@dirrm share/rt3/html/NoAuth/js/prototype +@dirrm share/rt3/html/NoAuth/js/IE7 @dirrm share/rt3/html/NoAuth/js +@dirrm share/rt3/html/NoAuth/images/css +@dirrm share/rt3/html/NoAuth/images +@dirrm share/rt3/html/NoAuth/iCal +@dirrm share/rt3/html/NoAuth/css/web2/images/source +@dirrm share/rt3/html/NoAuth/css/web2/images +@dirrm share/rt3/html/NoAuth/css/web2 +@dirrm share/rt3/html/NoAuth/css/3.5-default +@dirrm share/rt3/html/NoAuth/css/3.4-compat +@dirrm share/rt3/html/NoAuth/css +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/silver/images +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/silver +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/office2003/images +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/office2003 +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/default/images +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins/default +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/skins +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/plugins/tablecommands +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/plugins/simplecommands +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder/lang +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/plugins/placeholder +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/plugins/dragresizetable +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/plugins/bbcode/_sample +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/plugins/bbcode +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/plugins/autogrow +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/plugins +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/lang +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/js +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/images/smiley/msn +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/images/smiley +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/images +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/js +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons/32 +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images/icons +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default/images +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser/default +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager/browser +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/filemanager +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/dtd +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_template/images +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_template +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages/spellerpages +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_spellerpages +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_select +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_link +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_image +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_flash +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_docprops +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/fck_about +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/common/images +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog/common +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/dialog +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/css/images +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/css/behaviors +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor/css +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor/editor +@dirrm share/rt3/html/NoAuth/RichText/FCKeditor +@dirrm share/rt3/html/NoAuth/RichText @dirrm share/rt3/html/NoAuth +@dirrm share/rt3/html/Install/Elements +@dirrm share/rt3/html/Install +@dirrm share/rt3/html/Helpers/Toggle +@dirrm share/rt3/html/Helpers/Autocomplete @dirrm share/rt3/html/Helpers +@dirrm share/rt3/html/Elements/RT__User @dirrm share/rt3/html/Elements/RT__Ticket +@dirrm share/rt3/html/Elements/RT__Template +@dirrm share/rt3/html/Elements/RT__Scrip +@dirrm share/rt3/html/Elements/RT__Queue +@dirrm share/rt3/html/Elements/RT__Group +@dirrm share/rt3/html/Elements/GnuPG @dirrm share/rt3/html/Elements/CollectionAsTable @dirrm share/rt3/html/Elements @dirrm share/rt3/html/Download/Tabular @dirrm share/rt3/html/Download/CustomFieldValue @dirrm share/rt3/html/Download +@dirrm share/rt3/html/Dashboards/Elements +@dirrm share/rt3/html/Dashboards +@exec ${MKDIR} %D/share/rt3/html/Callbacks @dirrm share/rt3/html/Callbacks @dirrm share/rt3/html/Approvals/Elements @dirrm share/rt3/html/Approvals @dirrm share/rt3/html/Admin/Users +@dirrm share/rt3/html/Admin/Tools/Shredder/Elements/Object +@dirrm share/rt3/html/Admin/Tools/Shredder/Elements/Error +@dirrm share/rt3/html/Admin/Tools/Shredder/Elements +@dirrm share/rt3/html/Admin/Tools/Shredder/Dumps +@dirrm share/rt3/html/Admin/Tools/Shredder @dirrm share/rt3/html/Admin/Tools @dirrm share/rt3/html/Admin/Queues @dirrm share/rt3/html/Admin/Groups @@ -724,22 +1220,26 @@ share/rt3/html/l @dirrm share/rt3 @dirrm share/examples/rt3 @dirrm share/doc/rt3 -@dirrm lib/rt3/t/regression -@dirrm lib/rt3/t/data/8859-15-message-series -@dirrm lib/rt3/t/data -@dirrm lib/rt3/t @dirrm lib/rt3/RT/URI +@dirrm lib/rt3/RT/Test +@dirrm lib/rt3/RT/Shredder/Plugin/Base +@dirrm lib/rt3/RT/Shredder/Plugin +@dirrm lib/rt3/RT/Shredder @dirrm lib/rt3/RT/Search -@dirrm lib/rt3/RT/Interface/Web/Menu +@dirrm lib/rt3/RT/Report/Tickets +@dirrm lib/rt3/RT/Report +@dirrm lib/rt3/RT/Interface/Web/Standalone @dirrm lib/rt3/RT/Interface/Web/QueryBuilder +@dirrm lib/rt3/RT/Interface/Web/Menu @dirrm lib/rt3/RT/Interface/Web @dirrm lib/rt3/RT/Interface/Email/Filter @dirrm lib/rt3/RT/Interface/Email/Auth @dirrm lib/rt3/RT/Interface/Email @dirrm lib/rt3/RT/Interface -@dirrm lib/rt3/RT/Report/Tickets -@dirrm lib/rt3/RT/Report @dirrm lib/rt3/RT/I18N +@dirrm lib/rt3/RT/Graph +@dirrm lib/rt3/RT/CustomFieldValues +@dirrm lib/rt3/RT/Crypt @dirrm lib/rt3/RT/Condition @dirrm lib/rt3/RT/Action @dirrm lib/rt3/RT diff --git a/devel/rt3/dirs.mk b/devel/rt3/dirs.mk index 60ec0f32255..55dbf3fd617 100644 --- a/devel/rt3/dirs.mk +++ b/devel/rt3/dirs.mk @@ -1,14 +1,14 @@ -# $NetBSD: dirs.mk,v 1.2 2006/05/06 07:14:45 cube Exp $ +# $NetBSD: dirs.mk,v 1.3 2008/08/23 23:58:29 tonnerre Exp $ .include "../../mk/bsd.prefs.mk" RT_LOCAL_DIR?= ${VARBASE}/rt3 BUILD_DEFS+= RT_LOCAL_DIR -RT_DOC_DIR= ${LOCALBASE}/share/doc/rt3 -RT_EXAMPLE_DIR= ${LOCALBASE}/share/examples/rt3 -RT_LIB_DIR= ${LOCALBASE}/lib/rt3 -RT_SHARE_DIR= ${LOCALBASE}/share/rt3 +RT_DOC_DIR= ${PREFIX}/share/doc/rt3 +RT_EXAMPLE_DIR= ${PREFIX}/share/examples/rt3 +RT_LIB_DIR= ${PREFIX}/lib/rt3 +RT_SHARE_DIR= ${PREFIX}/share/rt3 RT_VAR_DIR= ${VARBASE}/spool/rt3 RT_HTML_DIR= ${RT_SHARE_DIR}/html diff --git a/devel/rt3/distinfo b/devel/rt3/distinfo index 72b24074352..c328dd8cab6 100644 --- a/devel/rt3/distinfo +++ b/devel/rt3/distinfo @@ -1,7 +1,6 @@ -$NetBSD: distinfo,v 1.10 2008/03/16 20:47:03 tonnerre Exp $ +$NetBSD: distinfo,v 1.11 2008/08/23 23:58:29 tonnerre Exp $ -SHA1 (rt-3.6.6.tar.gz) = fa0f3787027851348f52eefda8fee13f30b43ca7 -RMD160 (rt-3.6.6.tar.gz) = 46d928304d0435f122cecb9a62df137bf47b0e56 -Size (rt-3.6.6.tar.gz) = 1715913 bytes -SHA1 (patch-aa) = 4d29c290658144dcd7aa08d87649681dd2549b43 -SHA1 (patch-ac) = efa7095fe10e313a1578a1d739a8e77244c2ba6e +SHA1 (rt-3.8.1.tar.gz) = 47b808d13834a27c1323c73eb41ac22f9d7fb323 +RMD160 (rt-3.8.1.tar.gz) = c626a1113a078d186fd2df652b71af8c7a11acf6 +Size (rt-3.8.1.tar.gz) = 2844546 bytes +SHA1 (patch-aa) = 23964ba8d686931e1f92be88fa3a5d5e06070fce diff --git a/devel/rt3/options.mk b/devel/rt3/options.mk index 3d317947dcb..cc4ae55b1e6 100644 --- a/devel/rt3/options.mk +++ b/devel/rt3/options.mk @@ -1,10 +1,10 @@ -# $NetBSD: options.mk,v 1.4 2007/07/04 20:54:39 jlam Exp $ +# $NetBSD: options.mk,v 1.5 2008/08/23 23:58:29 tonnerre Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.rt PKG_OPTIONS_REQUIRED_GROUPS= backend frontend PKG_OPTIONS_GROUP.backend= mysql oracle pgsql sqlite PKG_OPTIONS_GROUP.frontend= modperl1 modperl2 \ - fastcgi speedycgi + fastcgi PKG_SUGGESTED_OPTIONS= mysql fastcgi PKG_OPTIONS_LEGACY_OPTS= backend-mysql:mysql backend-pgsql:pgsql \ diff --git a/devel/rt3/patches/patch-aa b/devel/rt3/patches/patch-aa index 207754f919c..745f7f9e5ec 100644 --- a/devel/rt3/patches/patch-aa +++ b/devel/rt3/patches/patch-aa @@ -1,4 +1,6 @@ -$NetBSD: patch-aa,v 1.1.1.1 2004/08/03 15:33:50 cube Exp $ +$NetBSD: patch-aa,v 1.2 2008/08/23 23:58:29 tonnerre Exp $ + +Adds the pkgsrc layout. --- config.layout.orig 2004-01-02 23:55:55.000000000 +0100 +++ config.layout diff --git a/devel/rt3/patches/patch-ac b/devel/rt3/patches/patch-ac deleted file mode 100644 index e6909f38631..00000000000 --- a/devel/rt3/patches/patch-ac +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ac,v 1.1 2006/05/01 09:38:08 cube Exp $ - ---- configure.orig 2006-04-19 19:37:22.000000000 +0200 -+++ configure -@@ -2039,7 +2039,7 @@ if test "${with_my_user_group+set}" = se - fi; - - # Test for valid database names --if test "$DB_TYPE" == "mysql" ; then -+if test "$DB_TYPE" = "mysql" ; then - echo "$as_me:$LINENO: checking if database name is valid" >&5 - echo $ECHO_N "checking if database name is valid... $ECHO_C" >&6 - if echo $DB_DATABASE | $AWK '/-/ { exit 1 }' ; then |