Author: spadkins Date: Sat Mar 11 12:34:10 2006 New Revision: 3666 Modified: p5ee/trunk/App-Context/lib/Apache/Framework/App.pm p5ee/trunk/App-Context/lib/App.pm p5ee/trunk/App-Context/lib/App/Authentication.pm p5ee/trunk/App-Context/lib/App/Authorization.pm p5ee/trunk/App-Context/lib/App/CallDispatcher.pm p5ee/trunk/App-Context/lib/App/CallDispatcher/HTTPSimple.pm p5ee/trunk/App-Context/lib/App/Conf.pm p5ee/trunk/App-Context/lib/App/Conf/File.pm p5ee/trunk/App-Context/lib/App/Context.pm p5ee/trunk/App-Context/lib/App/Context/Cluster.pm p5ee/trunk/App-Context/lib/App/Context/Cmd.pm p5ee/trunk/App-Context/lib/App/Context/HTTP.pm p5ee/trunk/App-Context/lib/App/Context/NetServer.pm p5ee/trunk/App-Context/lib/App/Context/Server.pm p5ee/trunk/App-Context/lib/App/Exceptions.pm p5ee/trunk/App-Context/lib/App/MessageDispatcher.pm p5ee/trunk/App-Context/lib/App/Reference.pm p5ee/trunk/App-Context/lib/App/Request.pm p5ee/trunk/App-Context/lib/App/Request/CGI.pm p5ee/trunk/App-Context/lib/App/ResourceLocker.pm p5ee/trunk/App-Context/lib/App/ResourceLocker/IPCLocker.pm p5ee/trunk/App-Context/lib/App/ResourceLocker/IPCSemaphore.pm p5ee/trunk/App-Context/lib/App/Response.pm p5ee/trunk/App-Context/lib/App/Serializer.pm p5ee/trunk/App-Context/lib/App/Serializer/Ini.pm p5ee/trunk/App-Context/lib/App/Serializer/OneLine.pm p5ee/trunk/App-Context/lib/App/Serializer/Perl.pm p5ee/trunk/App-Context/lib/App/Serializer/Properties.pm p5ee/trunk/App-Context/lib/App/Serializer/Storable.pm p5ee/trunk/App-Context/lib/App/Serializer/TextArray.pm p5ee/trunk/App-Context/lib/App/Serializer/Xml.pm p5ee/trunk/App-Context/lib/App/Serializer/Yaml.pm p5ee/trunk/App-Context/lib/App/Service.pm p5ee/trunk/App-Context/lib/App/Session.pm p5ee/trunk/App-Context/lib/App/Session/Cookie.pm p5ee/trunk/App-Context/lib/App/Session/HTMLHidden.pm p5ee/trunk/App-Context/lib/App/SessionObject.pm p5ee/trunk/App-Context/lib/App/SharedDatastore.pm p5ee/trunk/App-Context/lib/App/UserAgent.pm p5ee/trunk/App-Context/lib/App/ValueDomain.pm
Log: still trying to get the per-module VERSION thing right Modified: p5ee/trunk/App-Context/lib/Apache/Framework/App.pm ============================================================================== --- p5ee/trunk/App-Context/lib/Apache/Framework/App.pm (original) +++ p5ee/trunk/App-Context/lib/Apache/Framework/App.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package Apache::Framework::App; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use Apache (); use App; Modified: p5ee/trunk/App-Context/lib/App.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App.pm (original) +++ p5ee/trunk/App-Context/lib/App.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use strict; Modified: p5ee/trunk/App-Context/lib/App/Authentication.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/Authentication.pm (original) +++ p5ee/trunk/App-Context/lib/App/Authentication.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::Authentication; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::Service; Modified: p5ee/trunk/App-Context/lib/App/Authorization.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/Authorization.pm (original) +++ p5ee/trunk/App-Context/lib/App/Authorization.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::LogChannel; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::Service; Modified: p5ee/trunk/App-Context/lib/App/CallDispatcher.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/CallDispatcher.pm (original) +++ p5ee/trunk/App-Context/lib/App/CallDispatcher.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::CallDispatcher; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::Service; Modified: p5ee/trunk/App-Context/lib/App/CallDispatcher/HTTPSimple.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/CallDispatcher/HTTPSimple.pm (original) +++ p5ee/trunk/App-Context/lib/App/CallDispatcher/HTTPSimple.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::CallDispatcher::HTTPSimple; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::Service; Modified: p5ee/trunk/App-Context/lib/App/Conf.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/Conf.pm (original) +++ p5ee/trunk/App-Context/lib/App/Conf.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::Conf; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::Reference; Modified: p5ee/trunk/App-Context/lib/App/Conf/File.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/Conf/File.pm (original) +++ p5ee/trunk/App-Context/lib/App/Conf/File.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::Conf::File; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::Conf; Modified: p5ee/trunk/App-Context/lib/App/Context.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/Context.pm (original) +++ p5ee/trunk/App-Context/lib/App/Context.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::Context; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use strict; Modified: p5ee/trunk/App-Context/lib/App/Context/Cluster.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/Context/Cluster.pm (original) +++ p5ee/trunk/App-Context/lib/App/Context/Cluster.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::Context::Cluster; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::Context::Server; Modified: p5ee/trunk/App-Context/lib/App/Context/Cmd.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/Context/Cmd.pm (original) +++ p5ee/trunk/App-Context/lib/App/Context/Cmd.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::Context::Cmd; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::Context; Modified: p5ee/trunk/App-Context/lib/App/Context/HTTP.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/Context/HTTP.pm (original) +++ p5ee/trunk/App-Context/lib/App/Context/HTTP.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::Context::HTTP; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::Context; Modified: p5ee/trunk/App-Context/lib/App/Context/NetServer.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/Context/NetServer.pm (original) +++ p5ee/trunk/App-Context/lib/App/Context/NetServer.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::Context::NetServer; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::Context; Modified: p5ee/trunk/App-Context/lib/App/Context/Server.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/Context/Server.pm (original) +++ p5ee/trunk/App-Context/lib/App/Context/Server.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::Context::Server; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::Context; Modified: p5ee/trunk/App-Context/lib/App/Exceptions.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/Exceptions.pm (original) +++ p5ee/trunk/App-Context/lib/App/Exceptions.pm Sat Mar 11 12:34:10 2006 @@ -8,7 +8,7 @@ use strict; use vars qw($VERSION); -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn my %e; Modified: p5ee/trunk/App-Context/lib/App/MessageDispatcher.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/MessageDispatcher.pm (original) +++ p5ee/trunk/App-Context/lib/App/MessageDispatcher.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::MessageDispatcher; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::Service; Modified: p5ee/trunk/App-Context/lib/App/Reference.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/Reference.pm (original) +++ p5ee/trunk/App-Context/lib/App/Reference.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::Reference; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use strict; Modified: p5ee/trunk/App-Context/lib/App/Request.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/Request.pm (original) +++ p5ee/trunk/App-Context/lib/App/Request.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::Request; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use strict; Modified: p5ee/trunk/App-Context/lib/App/Request/CGI.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/Request/CGI.pm (original) +++ p5ee/trunk/App-Context/lib/App/Request/CGI.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::Request::CGI; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::Request; Modified: p5ee/trunk/App-Context/lib/App/ResourceLocker.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/ResourceLocker.pm (original) +++ p5ee/trunk/App-Context/lib/App/ResourceLocker.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::ResourceLocker; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::Service; Modified: p5ee/trunk/App-Context/lib/App/ResourceLocker/IPCLocker.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/ResourceLocker/IPCLocker.pm (original) +++ p5ee/trunk/App-Context/lib/App/ResourceLocker/IPCLocker.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::ResourceLocker::IPCLocker; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::ResourceLocker; Modified: p5ee/trunk/App-Context/lib/App/ResourceLocker/IPCSemaphore.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/ResourceLocker/IPCSemaphore.pm (original) +++ p5ee/trunk/App-Context/lib/App/ResourceLocker/IPCSemaphore.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::ResourceLocker::IPCSemaphore; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::ResourceLocker; Modified: p5ee/trunk/App-Context/lib/App/Response.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/Response.pm (original) +++ p5ee/trunk/App-Context/lib/App/Response.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::Response; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use strict; Modified: p5ee/trunk/App-Context/lib/App/Serializer.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/Serializer.pm (original) +++ p5ee/trunk/App-Context/lib/App/Serializer.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::Serializer; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::Service; Modified: p5ee/trunk/App-Context/lib/App/Serializer/Ini.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/Serializer/Ini.pm (original) +++ p5ee/trunk/App-Context/lib/App/Serializer/Ini.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::Serializer::Ini; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::Serializer; Modified: p5ee/trunk/App-Context/lib/App/Serializer/OneLine.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/Serializer/OneLine.pm (original) +++ p5ee/trunk/App-Context/lib/App/Serializer/OneLine.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::Serializer::OneLine; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::Serializer; Modified: p5ee/trunk/App-Context/lib/App/Serializer/Perl.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/Serializer/Perl.pm (original) +++ p5ee/trunk/App-Context/lib/App/Serializer/Perl.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::Serializer::Perl; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::Serializer; Modified: p5ee/trunk/App-Context/lib/App/Serializer/Properties.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/Serializer/Properties.pm (original) +++ p5ee/trunk/App-Context/lib/App/Serializer/Properties.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::Serializer::Properties; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::Serializer; Modified: p5ee/trunk/App-Context/lib/App/Serializer/Storable.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/Serializer/Storable.pm (original) +++ p5ee/trunk/App-Context/lib/App/Serializer/Storable.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::Serializer::Storable; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::Serializer; Modified: p5ee/trunk/App-Context/lib/App/Serializer/TextArray.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/Serializer/TextArray.pm (original) +++ p5ee/trunk/App-Context/lib/App/Serializer/TextArray.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::Serializer::TextArray; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::Serializer; Modified: p5ee/trunk/App-Context/lib/App/Serializer/Xml.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/Serializer/Xml.pm (original) +++ p5ee/trunk/App-Context/lib/App/Serializer/Xml.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::Serializer::Xml; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::Serializer; Modified: p5ee/trunk/App-Context/lib/App/Serializer/Yaml.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/Serializer/Yaml.pm (original) +++ p5ee/trunk/App-Context/lib/App/Serializer/Yaml.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::Serializer::Yaml; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::Serializer; Modified: p5ee/trunk/App-Context/lib/App/Service.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/Service.pm (original) +++ p5ee/trunk/App-Context/lib/App/Service.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::Service; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use strict; Modified: p5ee/trunk/App-Context/lib/App/Session.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/Session.pm (original) +++ p5ee/trunk/App-Context/lib/App/Session.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::Session; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::Reference; Modified: p5ee/trunk/App-Context/lib/App/Session/Cookie.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/Session/Cookie.pm (original) +++ p5ee/trunk/App-Context/lib/App/Session/Cookie.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::Session::Cookie; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::Session; Modified: p5ee/trunk/App-Context/lib/App/Session/HTMLHidden.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/Session/HTMLHidden.pm (original) +++ p5ee/trunk/App-Context/lib/App/Session/HTMLHidden.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::Session::HTMLHidden; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::Session; Modified: p5ee/trunk/App-Context/lib/App/SessionObject.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/SessionObject.pm (original) +++ p5ee/trunk/App-Context/lib/App/SessionObject.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::SessionObject; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::Service; Modified: p5ee/trunk/App-Context/lib/App/SharedDatastore.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/SharedDatastore.pm (original) +++ p5ee/trunk/App-Context/lib/App/SharedDatastore.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::SharedDatastore; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::Service; Modified: p5ee/trunk/App-Context/lib/App/UserAgent.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/UserAgent.pm (original) +++ p5ee/trunk/App-Context/lib/App/UserAgent.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::UserAgent; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use strict; Modified: p5ee/trunk/App-Context/lib/App/ValueDomain.pm ============================================================================== --- p5ee/trunk/App-Context/lib/App/ValueDomain.pm (original) +++ p5ee/trunk/App-Context/lib/App/ValueDomain.pm Sat Mar 11 12:34:10 2006 @@ -4,7 +4,7 @@ ############################################################################# package App::ValueDomain; -$VERSION = q$Revision$ =~ /(\d[\d\.]*)/; # VERSION numbers generated by svn +$VERSION = (q$Revision$ =~ /(\d[\d\.]*)/)[0]; # VERSION numbers generated by svn use App; use App::Service;
