[Apache-dispatch-devel] SF.net SVN: apache-dispatch:[80] trunk/lib/Apache
Brought to you by:
geoffrey_young,
phred_moyer
|
From: <phr...@us...> - 2009-04-25 23:18:39
|
Revision: 80
http://apache-dispatch.svn.sourceforge.net/apache-dispatch/?rev=80&view=rev
Author: phred_moyer
Date: 2009-04-25 23:18:29 +0000 (Sat, 25 Apr 2009)
Log Message:
-----------
CPAN indexer issue still present, looks like it pulls the version
out of the code with a regex or something rather than evaling it.
Modified Paths:
--------------
trunk/lib/Apache/Dispatch.pm
trunk/lib/Apache2/Dispatch.pm
Modified: trunk/lib/Apache/Dispatch.pm
===================================================================
--- trunk/lib/Apache/Dispatch.pm 2009-04-25 23:12:13 UTC (rev 79)
+++ trunk/lib/Apache/Dispatch.pm 2009-04-25 23:18:29 UTC (rev 80)
@@ -11,14 +11,13 @@
use strict;
use warnings;
+our $VERSION = '0.13-dev';
use mod_perl 1.2401;
use Apache::Constants qw(OK DECLINED SERVER_ERROR);
use Apache::Log ();
use Apache::Dispatch::Util ();
-our $VERSION = $Apache::Dispatch::Util::VERSION;
-
BEGIN {
push @Apache::Dispatch::ISA, qw(Apache::Dispatch::Util);
Modified: trunk/lib/Apache2/Dispatch.pm
===================================================================
--- trunk/lib/Apache2/Dispatch.pm 2009-04-25 23:12:13 UTC (rev 79)
+++ trunk/lib/Apache2/Dispatch.pm 2009-04-25 23:18:29 UTC (rev 80)
@@ -9,6 +9,8 @@
use strict;
use warnings;
+our $VERSION = '0.13-dev';
+
use mod_perl2 1.99023;
use Apache2::Const -compile => qw(OK DECLINED SERVER_ERROR);
use Apache2::Log ();
@@ -18,8 +20,6 @@
use Apache::Dispatch::Util;
push @Apache2::Dispatch::ISA, qw(Apache::Dispatch::Util);
-our $VERSION = $Apache::Dispatch::Util::VERSION;
-
# Initialize the directives
my $directives = __PACKAGE__->directives();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|