]> git.decadent.org.uk Git - maypole.git/commitdiff
2.04 release stuff
authorSebastian Riedel <sri@labs.kraih.com>
Thu, 28 Oct 2004 13:16:08 +0000 (13:16 +0000)
committerSebastian Riedel <sri@labs.kraih.com>
Thu, 28 Oct 2004 13:16:08 +0000 (13:16 +0000)
git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@277 48953598-375a-da11-a14b-00016c27c3ee

lib/Apache/MVC.pm
lib/CGI/Maypole.pm
lib/Maypole.pm

index 203e39449af843943ab904dfb8609adc2afe88f8..13d8a14517abb18cd15b7b82c171ef45bfe19ebe 100644 (file)
@@ -1,6 +1,6 @@
 package Apache::MVC;
 
-our $VERSION = '2.03';
+our $VERSION = '2.04';
 
 use strict;
 use warnings;
@@ -43,9 +43,10 @@ sub parse_args {
 sub send_output {
     my $r = shift;
     $r->{ar}->content_type(
-        $r->{content_type}  =~ m/^text/ ?
-       $r->{content_type} . "; charset=" . $r->{document_encoding} :
-       $r->{content_type} );
+          $r->{content_type} =~ m/^text/
+        ? $r->{content_type} . "; charset=" . $r->{document_encoding}
+        : $r->{content_type}
+    );
     $r->{ar}->headers_out->set( "Content-Length" => length $r->{output} );
     APACHE2 || $r->{ar}->send_http_header;
     $r->{ar}->print( $r->{output} );
index 1cc60ba6d7d8567d85df70eca0b942a87218a75a..7da043c4665e7523836391af557f36199e9b2631 100644 (file)
@@ -4,7 +4,7 @@ use base 'Maypole';
 use strict;
 use warnings;
 
-our $VERSION = '2.03';
+our $VERSION = '2.04';
 
 sub run {
     my $self = shift;
index a0e50cb681a5a4ade1ab1c9a840fd1ff73093968..6e41ee7d3e56f88428bfdd022ce1c04f719762f2 100644 (file)
@@ -6,7 +6,7 @@ use warnings;
 use Maypole::Config;
 use Maypole::Constants;
 
-our $VERSION = '2.03';
+our $VERSION = '2.04';
 
 __PACKAGE__->mk_classdata($_) for qw( config init_done view_object );
 __PACKAGE__->mk_accessors(