- moved Gallery utility methods to WebGUI::Utility::Gallery

- Added tests for GalleryAlbum RSS
- More tests for comments
- Test International Macro sprintf as third+ arguments
- Add Gallery search limiting by user ID
- Remaining i18n for Gallery templates
- Fix: Search form now visible in Photo assets
Moved a lot of stuff from Photo to GalleryFile
This commit is contained in:
Doug Bell 2008-03-20 18:51:44 +00:00
parent 38256af5f6
commit ab6f4defe3
25 changed files with 1386 additions and 905 deletions

View file

@ -3,7 +3,7 @@ use lib "../lib";
use strict;
use Getopt::Long;
use Pod::Usage;
use WebGUI::Asset::Wobject::Gallery::Utility;
use WebGUI::Utility::Gallery;
use WebGUI::Session;
my $session = start();
@ -11,7 +11,7 @@ my $session = start();
my $collab = getCollaborationFromArgs();
my $gallery = getGalleryFromArgs();
WebGUI::Asset::Wobject::Gallery::Utility->addAlbumFromCollaboration( $gallery, $collab );
WebGUI::Utility::Gallery->addAlbumFromCollaboration( $gallery, $collab );
finish($session);
@ -133,4 +133,4 @@ The WebGUI config file to use.
=head1 DESCRIPTION
This script migrates a collaboration system's threads into gallery albums. It
uses C<WebGUI::Asset::Wobject::Gallery::Utility> for its major features.
uses C<WebGUI::Utility::Gallery> for its major features.