head 1.2;
access;
symbols
pkgsrc-2013Q2:1.2.0.4
pkgsrc-2013Q2-base:1.2
pkgsrc-2012Q4:1.2.0.2
pkgsrc-2012Q4-base:1.2
pkgsrc-2012Q1:1.1.0.6
pkgsrc-2012Q1-base:1.1
pkgsrc-2011Q4:1.1.0.4
pkgsrc-2011Q4-base:1.1
pkgsrc-2011Q3:1.1.0.2;
locks; strict;
comment @# @;
1.2
date 2012.05.25.19.55.44; author spz; state dead;
branches;
next 1.1;
1.1
date 2011.10.25.19.38.10; author spz; state Exp;
branches
1.1.2.1
1.1.6.1;
next ;
1.1.2.1
date 2011.10.25.19.38.10; author tron; state dead;
branches;
next 1.1.2.2;
1.1.2.2
date 2011.11.02.22.52.23; author tron; state Exp;
branches;
next ;
1.1.6.1
date 2012.05.28.10.51.01; author tron; state dead;
branches;
next ;
desc
@@
1.2
log
@Update RT to version 3.8.12:
Changes from 3.8.11 to 3.8.12:
This release, in addition to being a bugfix release, also resolves a
number of security vulnerabilities. It resolves CVE-2011-2082,
CVE-2011-2083, CVE-2011-2084, CVE-2011-2085, CVE-2011-4458,
CVE-2011-4459, and CVE-2011-4460.
* Upgrade prototype.js to version 1.7, for compatibility with google
charts.
* Remove ie7.js, which is no longer used.
* Ensure that TransactionBatch scripts are only run once.
Changes from 3.8.10 to 3.8.11:
This release contains a number of bugfixes and minor security updates
since the 3.8.10 release, most notably:
* Adjust FCGI dependency to one which resolves FCGI's CVE-2011-2766
* New WebHttpOnlyCookies option, enabled by default, which hides RT's
cookie from direct Javascript access.
* Compatibility with perl 5.12 and 5.14, by removing deprecated "for
qw(...)" and "defined %hash" syntax.
* MySQL 5.5 compatibility, by specifying ENGINE=InnoDB rather than
TYPE=InnoDB
* Ensure that RT::Interface::Web's _Overlay, _Local, and _Vendor files
are loaded correctly.
* Fix session cleaner for on-disk sessions, broken since 3.8.0.
* Ensure that only one "Based on" attribute is stored for each custom
field.
* Fix the loading of Shredder plugins, broken in 3.8.10.
@
text
@$NetBSD: patch-share_html_Ticket_Elements_PreviewScrips,v 1.1 2011/10/25 19:38:10 spz Exp $
perl 5.14 qw() in for* fixes
--- share/html/Ticket/Elements/PreviewScrips.orig 2011-04-14 00:32:21.000000000 +0000
+++ share/html/Ticket/Elements/PreviewScrips
@@@@ -65,7 +65,7 @@@@ my @@non_recipients = @@{ $squelch{'EmailA
<% $scrip->Description || loc('Scrip #[_1]',$scrip->id) %>
<&|/l, loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name)&>[_1] [_2] with template [_3]&>
-%foreach my $type qw(To Cc Bcc) {
+%foreach my $type ( qw(To Cc Bcc) ) {
%my @@addresses = $scrip->ActionObj->Action->$type();
%foreach my $addr (@@addresses) {
@@@@ -90,7 +90,7 @@@@ my @@non_recipients = @@{ $squelch{'EmailA
% next unless $rule->{hints} && $rule->{hints}{class} eq 'SendEmail';
<% $rule->Describe %>
% my $data = $rule->{hints}{recipients};
-% foreach my $type qw(To Cc Bcc) {
+% foreach my $type ( qw(To Cc Bcc) ) {
% foreach my $address (@@{$data->{$type}}) {
-
@@@@ -205,7 +205,7 @@@@ foreach my $scrip ( @@{ $txn->Scrips->Pre
my $action = $scrip->ActionObj->Action;
next unless $action->isa('RT::Action::SendEmail');
- foreach my $type qw(To Cc Bcc) {
+ foreach my $type ( qw(To Cc Bcc) ) {
push @@recipients, $action->$type();
}
}
@@@@ -250,7 +250,7 @@@@ foreach my $scrip ( @@{ $txn->Scrips->Pre
my $action = $scrip->ActionObj->Action;
next unless $action->isa('RT::Action::SendEmail');
- foreach my $type qw(To Cc Bcc) {
+ foreach my $type ( qw(To Cc Bcc) ) {
push @@recipients, $action->$type();
}
}
@
1.1
log
@make rt deal with perl 5.14
@
text
@d1 1
a1 1
$NetBSD$
@
1.1.6.1
log
@Pullup ticket #3808 - requested by spz
devel/rt3: security update
Revisions pulled up:
- devel/rt3/Makefile 1.49
- devel/rt3/Makefile.install 1.18
- devel/rt3/PLIST 1.21
- devel/rt3/distinfo 1.22
- devel/rt3/patches/patch-lib_RT_Action_CreateTickets.pm deleted
- devel/rt3/patches/patch-lib_RT_Ticket__Overlay.pm deleted
- devel/rt3/patches/patch-lib_RT_Transaction__Overlay.pm deleted
- devel/rt3/patches/patch-share_html_Admin_CustomFields_Modify.html deleted
- devel/rt3/patches/patch-share_html_Search_Bulk.html deleted
- devel/rt3/patches/patch-share_html_Search_Elements_SelectChartType deleted
- devel/rt3/patches/patch-share_html_Ticket_Elements_PreviewScrips deleted
---
Module Name: pkgsrc
Committed By: spz
Date: Fri May 25 19:55:44 UTC 2012
Modified Files:
pkgsrc/devel/rt3: Makefile Makefile.install PLIST distinfo
Removed Files:
pkgsrc/devel/rt3/patches: patch-lib_RT_Action_CreateTickets.pm
patch-lib_RT_Ticket__Overlay.pm
patch-lib_RT_Transaction__Overlay.pm
patch-share_html_Admin_CustomFields_Modify.html
patch-share_html_Search_Bulk.html
patch-share_html_Search_Elements_SelectChartType
patch-share_html_Ticket_Elements_PreviewScrips
Log Message:
Update RT to version 3.8.12:
Changes from 3.8.11 to 3.8.12:
This release, in addition to being a bugfix release, also resolves a
number of security vulnerabilities. It resolves CVE-2011-2082,
CVE-2011-2083, CVE-2011-2084, CVE-2011-2085, CVE-2011-4458,
CVE-2011-4459, and CVE-2011-4460.
* Upgrade prototype.js to version 1.7, for compatibility with google
charts.
* Remove ie7.js, which is no longer used.
* Ensure that TransactionBatch scripts are only run once.
Changes from 3.8.10 to 3.8.11:
This release contains a number of bugfixes and minor security updates
since the 3.8.10 release, most notably:
* Adjust FCGI dependency to one which resolves FCGI's CVE-2011-2766
* New WebHttpOnlyCookies option, enabled by default, which hides RT's
cookie from direct Javascript access.
* Compatibility with perl 5.12 and 5.14, by removing deprecated "for
qw(...)" and "defined %hash" syntax.
* MySQL 5.5 compatibility, by specifying ENGINE=InnoDB rather than
TYPE=InnoDB
* Ensure that RT::Interface::Web's _Overlay, _Local, and _Vendor files
are loaded correctly.
* Fix session cleaner for on-disk sessions, broken since 3.8.0.
* Ensure that only one "Based on" attribute is stored for each custom
field.
* Fix the loading of Shredder plugins, broken in 3.8.10.
@
text
@d1 1
a1 1
$NetBSD: patch-share_html_Ticket_Elements_PreviewScrips,v 1.1 2011/10/25 19:38:10 spz Exp $
@
1.1.2.1
log
@file patch-share_html_Ticket_Elements_PreviewScrips was added on branch pkgsrc-2011Q3 on 2011-11-02 22:52:22 +0000
@
text
@d1 42
@
1.1.2.2
log
@Pullup ticket #3589 - requested by spz
devel/rt3: fix compatibility with "lang/perl5"
Revisions pulled up:
- devel/rt3/Makefile 1.48
- devel/rt3/distinfo 1.21
- devel/rt3/patches/patch-aa 1.3
- devel/rt3/patches/patch-ab 1.4
- devel/rt3/patches/patch-lib_RT.pm 1.1
- devel/rt3/patches/patch-lib_RT_Action_CreateTickets.pm 1.1
- devel/rt3/patches/patch-lib_RT_CustomFieldValues_External.pm 1.1
- devel/rt3/patches/patch-lib_RT_Interface_Email.pm 1.1
- devel/rt3/patches/patch-lib_RT_Interface_Email_Auth_GnuPG.pm 1.1
- devel/rt3/patches/patch-lib_RT_Ticket__Overlay.pm 1.1
- devel/rt3/patches/patch-lib_RT_Transaction__Overlay.pm 1.1
- devel/rt3/patches/patch-sbin_rt-attributes-viewer 1.1
- devel/rt3/patches/patch-sbin_rt-attributes-viewer.in 1.1
- devel/rt3/patches/patch-share_html_Admin_CustomFields_Modify.html 1.1
- devel/rt3/patches/patch-share_html_Helpers_CalPopup.html 1.1
- devel/rt3/patches/patch-share_html_Search_Bulk.html 1.1
- devel/rt3/patches/patch-share_html_Search_Elements_SelectChartType 1.1
- devel/rt3/patches/patch-share_html_Ticket_Elements_PreviewScrips 1.1
- devel/rt3/patches/patch-t_approval_admincc.t 1.1
- devel/rt3/patches/patch-t_approval_basic.t 1.1
---
Module Name: pkgsrc
Committed By: spz
Date: Tue Oct 25 19:38:10 UTC 2011
Modified Files:
pkgsrc/devel/rt3: Makefile distinfo
pkgsrc/devel/rt3/patches: patch-aa patch-ab
Added Files:
pkgsrc/devel/rt3/patches: patch-lib_RT.pm
patch-lib_RT_Action_CreateTickets.pm
patch-lib_RT_CustomFieldValues_External.pm
patch-lib_RT_Interface_Email.pm
patch-lib_RT_Interface_Email_Auth_GnuPG.pm
patch-lib_RT_Ticket__Overlay.pm
patch-lib_RT_Transaction__Overlay.pm
patch-sbin_rt-attributes-viewer patch-sbin_rt-attributes-viewer.in
patch-share_html_Admin_CustomFields_Modify.html
patch-share_html_Helpers_CalPopup.html
patch-share_html_Search_Bulk.html
patch-share_html_Search_Elements_SelectChartType
patch-share_html_Ticket_Elements_PreviewScrips
patch-t_approval_admincc.t patch-t_approval_basic.t
Log Message:
make rt deal with perl 5.14
@
text
@a0 42
$NetBSD$
perl 5.14 qw() in for* fixes
--- share/html/Ticket/Elements/PreviewScrips.orig 2011-04-14 00:32:21.000000000 +0000
+++ share/html/Ticket/Elements/PreviewScrips
@@@@ -65,7 +65,7 @@@@ my @@non_recipients = @@{ $squelch{'EmailA
<% $scrip->Description || loc('Scrip #[_1]',$scrip->id) %>
<&|/l, loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name)&>[_1] [_2] with template [_3]&>
-%foreach my $type qw(To Cc Bcc) {
+%foreach my $type ( qw(To Cc Bcc) ) {
%my @@addresses = $scrip->ActionObj->Action->$type();
%foreach my $addr (@@addresses) {
@@@@ -90,7 +90,7 @@@@ my @@non_recipients = @@{ $squelch{'EmailA
% next unless $rule->{hints} && $rule->{hints}{class} eq 'SendEmail';
<% $rule->Describe %>
% my $data = $rule->{hints}{recipients};
-% foreach my $type qw(To Cc Bcc) {
+% foreach my $type ( qw(To Cc Bcc) ) {
% foreach my $address (@@{$data->{$type}}) {
-
@@@@ -205,7 +205,7 @@@@ foreach my $scrip ( @@{ $txn->Scrips->Pre
my $action = $scrip->ActionObj->Action;
next unless $action->isa('RT::Action::SendEmail');
- foreach my $type qw(To Cc Bcc) {
+ foreach my $type ( qw(To Cc Bcc) ) {
push @@recipients, $action->$type();
}
}
@@@@ -250,7 +250,7 @@@@ foreach my $scrip ( @@{ $txn->Scrips->Pre
my $action = $scrip->ActionObj->Action;
next unless $action->isa('RT::Action::SendEmail');
- foreach my $type qw(To Cc Bcc) {
+ foreach my $type ( qw(To Cc Bcc) ) {
push @@recipients, $action->$type();
}
}
@