[Rt-commit] [svn] r1796 - in rt/branches/3.3-TESTING: . bin lib/RT sbin

autrijus at pallas.eruditorum.org autrijus at pallas.eruditorum.org
Wed Nov 10 08:15:52 EST 2004


Author: autrijus
Date: Wed Nov 10 08:15:51 2004
New Revision: 1796

Modified:
   rt/branches/3.3-TESTING/   (props changed)
   rt/branches/3.3-TESTING/bin/standalone_httpd.in
   rt/branches/3.3-TESTING/bin/webmux.pl.in
   rt/branches/3.3-TESTING/lib/RT/ACE_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/ACL_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/Attachment_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/Attachments_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/Attribute_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/Attributes_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/CachedGroupMember_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/CachedGroupMembers_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/CustomFieldValues_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/CustomField_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/CustomFields_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/GroupMember_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/GroupMembers_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/Group_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/Groups_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/Link_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/Links_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/ObjectCustomFieldValue_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/ObjectCustomFieldValues_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/ObjectCustomField_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/ObjectCustomFields_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/Principal_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/Principals_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/Queue_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/Queues_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/ScripAction_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/ScripActions_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/ScripCondition_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/ScripConditions_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/Scrip_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/Scrips_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/Template_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/Templates_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/TicketCustomFieldValue_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/TicketCustomFieldValues_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/Ticket_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/Tickets_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/Tickets_Overlay_SQL.pm
   rt/branches/3.3-TESTING/lib/RT/Transaction_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/Transactions_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/User_Overlay.pm
   rt/branches/3.3-TESTING/lib/RT/Users_Overlay.pm
   rt/branches/3.3-TESTING/sbin/rt-test-dependencies.in
Log:
 r3588 at not:  autrijus | 2004-11-10T13:16:02.416034Z
 * Module::Refresh is now enabled by default for all HTTPD handlers
   when $RT::DevelMode is set to true.
 


Modified: rt/branches/3.3-TESTING/bin/standalone_httpd.in
==============================================================================
--- rt/branches/3.3-TESTING/bin/standalone_httpd.in	(original)
+++ rt/branches/3.3-TESTING/bin/standalone_httpd.in	Wed Nov 10 08:15:51 2004
@@ -49,13 +49,13 @@
 use strict;
 use vars '$Handler';
 
-require ('@RT_BIN_PATH@/webmux.pl');
+BEGIN { require ('@RT_BIN_PATH@/webmux.pl') };
 
 use lib( "@LOCAL_LIB_PATH@", "@RT_LIB_PATH@");
 
 use Socket;
 
-$SIG{CHLD} = "IGNORE"; # reap child processes
+$SIG{CHLD} = 'IGNORE'; # reap child processes
 $SIG{HUP} = sub {
     # on a "kill -HUP", we first close our socket handles.
     close Remote;
@@ -97,7 +97,7 @@
     while (1) {
 
         for ( ; accept( Remote, HTTPDaemon ); close Remote ) {
-
+            Module::Refresh->refresh if $RT::DevelMode;
 
             *STDIN  = *Remote;
             *STDOUT = *Remote;

Modified: rt/branches/3.3-TESTING/bin/webmux.pl.in
==============================================================================
--- rt/branches/3.3-TESTING/bin/webmux.pl.in	(original)
+++ rt/branches/3.3-TESTING/bin/webmux.pl.in	Wed Nov 10 08:15:51 2004
@@ -73,7 +73,10 @@
 use vars qw($Nobody $SystemUser $Handler $r);
 
 #This drags in RT's config.pm
-RT::LoadConfig();
+BEGIN {
+    RT::LoadConfig();
+    if ($RT::DevelMode) { require Module::Refresh; }
+}
 
 use Carp;
 
@@ -101,8 +104,6 @@
     local $SIG{__WARN__};
     local $SIG{__DIE__};
 
-    RT::Init();
-
     # We don't need to handle non-text, non-xml items
     if ($r->content_type =~ m/^httpd\b.*\bdirectory/i) {
         use File::Spec::Unix;
@@ -113,6 +114,9 @@
 	$r->content_type =~ m!(^text/|\bxml\b)!i or return -1;
     }
 
+    Module::Refresh->refresh if $RT::DevelMode;
+
+    RT::Init();
 
     my %session;
     my $status;

Modified: rt/branches/3.3-TESTING/lib/RT/ACE_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/ACE_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/ACE_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -63,6 +63,9 @@
 
 =cut
 
+
+package RT::ACE;
+
 use strict;
 no warnings qw(redefine);
 use RT::Principals;

Modified: rt/branches/3.3-TESTING/lib/RT/ACL_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/ACL_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/ACL_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -65,6 +65,9 @@
 
 =cut
 
+
+package RT::ACL;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/Attachment_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/Attachment_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/Attachment_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -66,6 +66,9 @@
 
 =cut
 
+
+package RT::Attachment;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/Attachments_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/Attachments_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/Attachments_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -68,6 +68,9 @@
 
 =cut
 
+
+package RT::Attachments;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/Attribute_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/Attribute_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/Attribute_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -43,6 +43,9 @@
 # those contributions and any derivatives thereof.
 # 
 # END BPS TAGGED BLOCK }}}
+
+package RT::Attribute;
+
 use strict;
 no warnings qw(redefine);
 use Storable qw/nfreeze thaw/;

Modified: rt/branches/3.3-TESTING/lib/RT/Attributes_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/Attributes_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/Attributes_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -81,6 +81,9 @@
 
 =cut
 
+
+package RT::Attributes;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/CachedGroupMember_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/CachedGroupMember_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/CachedGroupMember_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -43,6 +43,9 @@
 # those contributions and any derivatives thereof.
 # 
 # END BPS TAGGED BLOCK }}}
+
+package RT::CachedGroupMember;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/CachedGroupMembers_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/CachedGroupMembers_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/CachedGroupMembers_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -65,6 +65,9 @@
 
 =cut
 
+
+package RT::CachedGroupMembers;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/CustomFieldValues_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/CustomFieldValues_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/CustomFieldValues_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -43,6 +43,9 @@
 # those contributions and any derivatives thereof.
 # 
 # END BPS TAGGED BLOCK }}}
+
+package RT::CustomFieldValues;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/CustomField_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/CustomField_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/CustomField_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -43,6 +43,9 @@
 # those contributions and any derivatives thereof.
 # 
 # END BPS TAGGED BLOCK }}}
+
+package RT::CustomField;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/CustomFields_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/CustomFields_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/CustomFields_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -64,6 +64,9 @@
 
 =cut
 
+
+package RT::CustomFields;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/GroupMember_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/GroupMember_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/GroupMember_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -72,6 +72,9 @@
 
 =cut
 
+
+package RT::GroupMember;
+
 use strict;
 no warnings qw(redefine);
 use RT::CachedGroupMembers;

Modified: rt/branches/3.3-TESTING/lib/RT/GroupMembers_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/GroupMembers_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/GroupMembers_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -65,6 +65,9 @@
 
 =cut
 
+
+package RT::GroupMembers;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/Group_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/Group_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/Group_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -154,6 +154,9 @@
 
 =cut
 
+
+package RT::Group;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/Groups_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/Groups_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/Groups_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -70,6 +70,9 @@
 
 =cut
 
+
+package RT::Groups;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/Link_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/Link_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/Link_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -76,6 +76,9 @@
 
 =cut
 
+
+package RT::Link;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/Links_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/Links_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/Links_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -66,6 +66,9 @@
 
 =cut
 
+
+package RT::Links;
+
 use strict;
 no warnings qw(redefine);
 use RT::URI;

Modified: rt/branches/3.3-TESTING/lib/RT/ObjectCustomFieldValue_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/ObjectCustomFieldValue_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/ObjectCustomFieldValue_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -43,6 +43,9 @@
 # those contributions and any derivatives thereof.
 # 
 # END BPS TAGGED BLOCK }}}
+
+package RT::ObjectCustomFieldValue;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/ObjectCustomFieldValues_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/ObjectCustomFieldValues_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/ObjectCustomFieldValues_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -43,6 +43,9 @@
 # those contributions and any derivatives thereof.
 # 
 # END BPS TAGGED BLOCK }}}
+
+package RT::ObjectCustomFieldValues;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/ObjectCustomField_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/ObjectCustomField_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/ObjectCustomField_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -43,6 +43,9 @@
 # those contributions and any derivatives thereof.
 # 
 # END BPS TAGGED BLOCK }}}
+
+package RT::ObjectCustomField;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/ObjectCustomFields_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/ObjectCustomFields_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/ObjectCustomFields_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -43,6 +43,9 @@
 # those contributions and any derivatives thereof.
 # 
 # END BPS TAGGED BLOCK }}}
+
+package RT::ObjectCustomFields;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/Principal_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/Principal_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/Principal_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -44,6 +44,9 @@
 # 
 # END BPS TAGGED BLOCK }}}
 #
+
+package RT::Principal;
+
 use strict;
 use warnings;
 

Modified: rt/branches/3.3-TESTING/lib/RT/Principals_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/Principals_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/Principals_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -65,6 +65,9 @@
 
 =cut
 
+
+package RT::Principals;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/Queue_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/Queue_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/Queue_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -64,6 +64,9 @@
 
 =cut
 
+
+package RT::Queue;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/Queues_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/Queues_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/Queues_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -65,6 +65,9 @@
 
 =cut
 
+
+package RT::Queues;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/ScripAction_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/ScripAction_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/ScripAction_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -68,6 +68,9 @@
 
 =cut
 
+
+package RT::ScripAction;
+
 use strict;
 no warnings qw(redefine);
 use RT::Template;

Modified: rt/branches/3.3-TESTING/lib/RT/ScripActions_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/ScripActions_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/ScripActions_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -65,6 +65,9 @@
 
 =cut
 
+
+package RT::ScripActions;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/ScripCondition_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/ScripCondition_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/ScripCondition_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -68,6 +68,9 @@
 
 =cut
 
+
+package RT::ScripCondition;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/ScripConditions_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/ScripConditions_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/ScripConditions_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -66,6 +66,9 @@
 
 =cut
 
+
+package RT::ScripConditions;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/Scrip_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/Scrip_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/Scrip_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -98,6 +98,9 @@
 
 =cut
 
+
+package RT::Scrip;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/Scrips_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/Scrips_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/Scrips_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -65,6 +65,9 @@
 
 =cut
 
+
+package RT::Scrips;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/Template_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/Template_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/Template_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -66,6 +66,9 @@
 
 =cut
 
+
+package RT::Template;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/Templates_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/Templates_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/Templates_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -64,6 +64,9 @@
 
 =cut
 
+
+package RT::Templates;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/TicketCustomFieldValue_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/TicketCustomFieldValue_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/TicketCustomFieldValue_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -43,6 +43,9 @@
 # those contributions and any derivatives thereof.
 # 
 # END BPS TAGGED BLOCK }}}
+
+package RT::TicketCustomFieldValue;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/TicketCustomFieldValues_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/TicketCustomFieldValues_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/TicketCustomFieldValues_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -43,6 +43,9 @@
 # those contributions and any derivatives thereof.
 # 
 # END BPS TAGGED BLOCK }}}
+
+package RT::TicketCustomFieldValues;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/Ticket_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/Ticket_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/Ticket_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -133,6 +133,9 @@
 
 =cut
 
+
+package RT::Ticket;
+
 use strict;
 no warnings qw(redefine);
 
@@ -3326,9 +3329,9 @@
 
 # {{{ PRIVATE UTILITY METHODS. Mostly needed so Ticket can be a DBIx::Record
 
-# {{{ sub _ClassAccessible
+# {{{ sub _OverlayAccessible
 
-sub _ClassAccessible {
+sub _OverlayAccessible {
     {
         EffectiveId       => { 'read' => 1,  'write' => 1,  'public' => 1 },
           Queue           => { 'read' => 1,  'write' => 1 },

Modified: rt/branches/3.3-TESTING/lib/RT/Tickets_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/Tickets_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/Tickets_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -77,6 +77,9 @@
 =end testing
 
 =cut
+
+package RT::Tickets;
+
 use strict;
 no warnings qw(redefine);
 use vars qw(@SORTFIELDS);

Modified: rt/branches/3.3-TESTING/lib/RT/Tickets_Overlay_SQL.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/Tickets_Overlay_SQL.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/Tickets_Overlay_SQL.pm	Wed Nov 10 08:15:51 2004
@@ -43,11 +43,12 @@
 # those contributions and any derivatives thereof.
 # 
 # END BPS TAGGED BLOCK }}}
+
+package RT::Tickets;
+
 use strict;
 use warnings;
 
-use RT::Tickets;
-
 # Import configuration data from the lexcial scope of __PACKAGE__ (or
 # at least where those two Subroutines are defined.)
 

Modified: rt/branches/3.3-TESTING/lib/RT/Transaction_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/Transaction_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/Transaction_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -70,6 +70,9 @@
 
 =cut
 
+
+package RT::Transaction;
+
 use strict;
 no warnings qw(redefine);
 
@@ -764,7 +767,7 @@
 
 # }}}
 
-sub _ClassAccessible {
+sub _OverlayAccessible {
     {
 
         id => { read => 1, type => 'int(11)', default => '' },

Modified: rt/branches/3.3-TESTING/lib/RT/Transactions_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/Transactions_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/Transactions_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -65,6 +65,9 @@
 
 =cut
 
+
+package RT::Transactions;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/User_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/User_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/User_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -65,6 +65,9 @@
 
 =cut
 
+
+package RT::User;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/lib/RT/Users_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/Users_Overlay.pm	(original)
+++ rt/branches/3.3-TESTING/lib/RT/Users_Overlay.pm	Wed Nov 10 08:15:51 2004
@@ -65,6 +65,9 @@
 
 =cut
 
+
+package RT::Users;
+
 use strict;
 no warnings qw(redefine);
 

Modified: rt/branches/3.3-TESTING/sbin/rt-test-dependencies.in
==============================================================================
--- rt/branches/3.3-TESTING/sbin/rt-test-dependencies.in	(original)
+++ rt/branches/3.3-TESTING/sbin/rt-test-dependencies.in	Wed Nov 10 08:15:51 2004
@@ -182,7 +182,7 @@
 HTML::TokeParser
 WWW::Mechanize
 Test::WWW::Mechanize
-Module::Refresh
+Module::Refresh 0.03
 .
 
 $deps{'FASTCGI'} = [ _( << '.') ];


More information about the Rt-commit mailing list