From 3d59b2bd807ec35c511fd76df11b2cbb61289242 Mon Sep 17 00:00:00 2001 From: "justdave%syndicomm.com" <> Date: Thu, 18 Mar 2004 11:57:04 +0000 Subject: Bug 192516: Moving the loose .pm files into the Bugzilla directory, where they belong. These files pre-date the Bugzilla directory, and would have gone there had it existed at the time. The four files in question were copied on the CVS server to preserve CVS history in the files. This checkin deletes them from the old location and modifies everything else to know where they are now. r= myk, gerv a= justdave --- Bugzilla/RelationSet.pm | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'Bugzilla/RelationSet.pm') diff --git a/Bugzilla/RelationSet.pm b/Bugzilla/RelationSet.pm index f2f822fc4..628746352 100644 --- a/Bugzilla/RelationSet.pm +++ b/Bugzilla/RelationSet.pm @@ -31,15 +31,16 @@ use strict; -# Everything that uses RelationSet should already have globals.pl loaded -# so we don't want to load it here. Doing so causes a loop in Perl because -# globals.pl turns around and does a 'use RelationSet' +# XXX - mod_perl +# Everything that uses Bugzilla::RelationSet should already have globals.pl +# loaded so we don't want to load it here. Doing so causes a loop in Perl +# because globals.pl turns around and does a 'use Bugzilla::RelationSet' # See http://bugzilla.mozilla.org/show_bug.cgi?id=72862 -#require "globals.pl"; +#require "../globals.pl"; -package RelationSet; +package Bugzilla::RelationSet; -# create a new empty RelationSet +# create a new empty Bugzilla::RelationSet # sub new { my $type = shift(); @@ -60,7 +61,7 @@ sub new { confess("invalid number of arguments"); } - # bless as a RelationSet + # bless as a Bugzilla::RelationSet # return $self; } @@ -81,7 +82,7 @@ sub generateSqlDeltas { my ( $self, # instance ptr to set representing the existing state $endState, # instance ptr to set representing the desired state $table, # table where these relations are kept - $invariantName, # column held const for a RelationSet (often "bug_id") + $invariantName, # column held const for a Bugzilla::RelationSet (often "bug_id") $invariantValue, # what to hold the above column constant at $columnName # the column which varies (often a userid) ) = @_; -- cgit v1.2.3-24-g4f1b