]> git.decadent.org.uk Git - maypole.git/commitdiff
possible 2.10 release
authorAaron Trevena <aaron.trevena@gmail.com>
Tue, 12 Jul 2005 20:20:52 +0000 (20:20 +0000)
committerAaron Trevena <aaron.trevena@gmail.com>
Tue, 12 Jul 2005 20:20:52 +0000 (20:20 +0000)
git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@355 48953598-375a-da11-a14b-00016c27c3ee

Changes
lib/Maypole/Constants.pm
lib/Maypole/Session.pm

diff --git a/Changes b/Changes
index 44d53392a90e4e325347a955a8550a56783ad5aa..3c7156a8417338551a3ec32f9e6f8e7231e23b72 100644 (file)
--- a/Changes
+++ b/Changes
@@ -2,7 +2,7 @@ This file documents the revision history for Perl extension Maypole.
 For information about current developments and future releases, see:
     http://maypole.perl.org/?TheRoadmap
 
-2.10 Tues 5 Jul 2005
+2.10 Tues 12 Jul 2005
     Multiple Template Paths added ( http://rt.cpan.org/NoAuth/Bug.html?id=13447 )
     Small fix to templates/factory/frontpage ( http://rt.cpan.org/NoAuth/Bug.html?id=11236 )
     MasonX support in Maypole::Application ( https://rt.cpan.org/NoAuth/Bug.html?id=12383 )
index 4078b83bccb01ba6038baa8ca80e7f50ae274239..09e7d4b3fa1f1fcc1a91b1c94d61a4e9a92a245f 100644 (file)
@@ -43,7 +43,7 @@ L<Maypole>
 
 =head1 MAINTAINER
 
-Sebastian Riedel, c<sri@oook.de>
+Aaron Trevena, c<teejay@droogs.org>
 
 =head1 AUTHOR
 
index 47f68798b53fe8c415dafff18f3d9ae4e8a8dc16..b8b03dc453907ea526e2b1e491ba0abbae62e024 100644 (file)
@@ -1,5 +1,29 @@
 package Maypole::Session;
 
+=head1 NAME
+
+Maypole::Constants - Maypole predefined constants
+
+=head1 SYNOPSIS
+
+use Maypole::Session;
+
+my $uid = Maypole::Session::generate_unique_id()
+
+=head1 DESCRIPTION
+
+This class provides session related methods for Maypole such as unique id's for requests.
+
+=head1 METHODS
+
+=head2 generate_unique_id()
+
+my $uid = Maypole::Session::generate_unique_id()
+
+generates a unique id and returns it, requires no arguments but accepts size, default is 32.
+
+=cut
+
 use strict;
 use Digest::MD5;
 
@@ -9,4 +33,28 @@ sub generate_unique_id {
     return;
 }
 
+
+###################################################################################################
+###################################################################################################
+
+
+=head1 SEE ALSO
+
+L<Maypole>
+
+=head1 MAINTAINER
+
+Aaron Trevena, c<teejay@droogs.org>
+
+=head1 AUTHOR
+
+Simon Cozens, C<simon@cpan.org>
+
+=head1 LICENSE
+
+You may distribute this code under the same terms as Perl itself.
+
+=cut
+
+
 1;