|
From: <ix...@us...> - 2002-02-06 17:41:30
|
ixjonez 02/02/06 09:41:28
Modified: lib/LiveFrame/Lab ConfirmAction.pm GalleryAction.pm
ImageAction.pm NotifyAction.pm ReviewAction.pm
Log:
actions now return page names rather than processing pages themselves.
Revision Changes Path
1.2 +1 -1 lab/lib/LiveFrame/Lab/ConfirmAction.pm
Index: ConfirmAction.pm
===================================================================
RCS file: /cvsroot/liveframe/lab/lib/LiveFrame/Lab/ConfirmAction.pm,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ConfirmAction.pm 2001/11/30 01:03:03 1.1
+++ ConfirmAction.pm 2002/02/06 17:41:27 1.2
@@ -10,7 +10,7 @@
sub perform {
my ($self, $lab) = @_;
- return $lab->send_page('confirm');
+ return 'confirm';
}
1;
1.6 +1 -1 lab/lib/LiveFrame/Lab/GalleryAction.pm
Index: GalleryAction.pm
===================================================================
RCS file: /cvsroot/liveframe/lab/lib/LiveFrame/Lab/GalleryAction.pm,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- GalleryAction.pm 2002/01/04 01:10:51 1.5
+++ GalleryAction.pm 2002/02/06 17:41:27 1.6
@@ -35,7 +35,7 @@
$gallery->create();
$site->insert_gallery($gallery, $pos);
- return $lab->send_page('image');
+ return 'image';
}
1;
1.2 +1 -1 lab/lib/LiveFrame/Lab/ImageAction.pm
Index: ImageAction.pm
===================================================================
RCS file: /cvsroot/liveframe/lab/lib/LiveFrame/Lab/ImageAction.pm,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ImageAction.pm 2001/11/30 01:03:03 1.1
+++ ImageAction.pm 2002/02/06 17:41:27 1.2
@@ -10,7 +10,7 @@
sub perform {
my ($self, $lab) = @_;
- return $lab->send_page('image');
+ return 'image';
}
1;
1.2 +1 -1 lab/lib/LiveFrame/Lab/NotifyAction.pm
Index: NotifyAction.pm
===================================================================
RCS file: /cvsroot/liveframe/lab/lib/LiveFrame/Lab/NotifyAction.pm,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- NotifyAction.pm 2001/11/30 01:03:03 1.1
+++ NotifyAction.pm 2002/02/06 17:41:27 1.2
@@ -10,7 +10,7 @@
sub perform {
my ($self, $lab) = @_;
- return $lab->send_page('notify');
+ return 'notify';
}
1;
1.2 +1 -1 lab/lib/LiveFrame/Lab/ReviewAction.pm
Index: ReviewAction.pm
===================================================================
RCS file: /cvsroot/liveframe/lab/lib/LiveFrame/Lab/ReviewAction.pm,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ReviewAction.pm 2001/11/30 01:03:03 1.1
+++ ReviewAction.pm 2002/02/06 17:41:27 1.2
@@ -10,7 +10,7 @@
sub perform {
my ($self, $lab) = @_;
- return $lab->send_page('review');
+ return 'review';
}
1;
|