[Catalyst-commits] r14072 - Catalyst-Action-RenderView/trunk/lib/Catalyst/Action Catalyst-Action-RenderView/trunk/t/lib/TestApp/View Catalyst-Authentication-Store-DBIx-Class/trunk Catalyst-Engine-Apache/tags/1.10/t Catalyst-Engine-Apache/tags/1.11/t Catalyst-Engine-Apache/tags/1.13_01/t Catalyst-Engine-Apache/tags/1.14/t Catalyst-Engine-Apache/tags/1.15/t Catalyst-Model-Akismet/trunk Catalyst-Plugin-Authorization-Roles/trunk Catalyst-Plugin-Cache-Store-FastMmap/trunk Catalyst-Plugin-Compress/trunk Catalyst-Plugin-RequireSSL/trunk Catalyst-Plugin-Session/0.00/trunk Catalyst-Plugin-Unicode-Encoding/trunk CatalystX-CRUD/CatalystX-CRUD/trunk HTTP-Request-AsCGI/trunk Test-WWW-Mechanize-Catalyst/trunk trunk/Catalyst-Controller-FormBuilder trunk/Catalyst-Engine-HTTP-POE/t trunk/Catalyst-Model-CDBI trunk/Catalyst-Plugin-Cache trunk/Catalyst-Plugin-Cache-FastMmap trunk/Catalyst-Plugin-Cache-Memcached trunk/Catalyst-Plugin-Compress-Zlib trunk/Catalyst-Plugin-Images trunk/Catalyst-Plugin-Images/lib/Catalyst/Plugin trunk/Catalyst-Plugin-Images/t trunk/Catalyst-Plugin-LogWarnings trunk/Catalyst-Plugin-Session-PerUser trunk/Catalyst-Plugin-Static trunk/Catalyst-Plugin-SubRequest trunk/Catalyst-Plugin-UploadProgress trunk/historical/Catalyst-Plugin-Session-FastMmap trunk/historical/Catalyst-Plugin-XMLRPC trunk/historical/Catalyst-View-REST-XML

t0m at dev.catalyst.perl.org t0m at dev.catalyst.perl.org
Mon Aug 8 08:45:03 GMT 2011


Author: t0m
Date: 2011-08-08 08:45:03 +0000 (Mon, 08 Aug 2011)
New Revision: 14072

Modified:
   Catalyst-Action-RenderView/trunk/lib/Catalyst/Action/RenderView.pm
   Catalyst-Action-RenderView/trunk/t/lib/TestApp/View/TestView.pm
   Catalyst-Authentication-Store-DBIx-Class/trunk/
   Catalyst-Engine-Apache/tags/1.10/t/
   Catalyst-Engine-Apache/tags/1.11/t/
   Catalyst-Engine-Apache/tags/1.13_01/t/
   Catalyst-Engine-Apache/tags/1.14/t/
   Catalyst-Engine-Apache/tags/1.15/t/
   Catalyst-Model-Akismet/trunk/
   Catalyst-Plugin-Authorization-Roles/trunk/
   Catalyst-Plugin-Cache-Store-FastMmap/trunk/
   Catalyst-Plugin-Compress/trunk/Makefile.PL
   Catalyst-Plugin-RequireSSL/trunk/
   Catalyst-Plugin-Session/0.00/trunk/
   Catalyst-Plugin-Unicode-Encoding/trunk/
   CatalystX-CRUD/CatalystX-CRUD/trunk/
   HTTP-Request-AsCGI/trunk/
   Test-WWW-Mechanize-Catalyst/trunk/
   trunk/Catalyst-Controller-FormBuilder/
   trunk/Catalyst-Engine-HTTP-POE/t/
   trunk/Catalyst-Model-CDBI/
   trunk/Catalyst-Plugin-Cache-FastMmap/
   trunk/Catalyst-Plugin-Cache-Memcached/
   trunk/Catalyst-Plugin-Cache/
   trunk/Catalyst-Plugin-Compress-Zlib/
   trunk/Catalyst-Plugin-Images/Changes
   trunk/Catalyst-Plugin-Images/lib/Catalyst/Plugin/Images.pm
   trunk/Catalyst-Plugin-Images/t/basic.t
   trunk/Catalyst-Plugin-LogWarnings/
   trunk/Catalyst-Plugin-Session-PerUser/
   trunk/Catalyst-Plugin-Static/
   trunk/Catalyst-Plugin-SubRequest/
   trunk/Catalyst-Plugin-UploadProgress/
   trunk/historical/Catalyst-Plugin-Session-FastMmap/
   trunk/historical/Catalyst-Plugin-XMLRPC/
   trunk/historical/Catalyst-View-REST-XML/
Log:
Small fixes

Modified: Catalyst-Action-RenderView/trunk/lib/Catalyst/Action/RenderView.pm
===================================================================
--- Catalyst-Action-RenderView/trunk/lib/Catalyst/Action/RenderView.pm	2011-08-08 08:42:17 UTC (rev 14071)
+++ Catalyst-Action-RenderView/trunk/lib/Catalyst/Action/RenderView.pm	2011-08-08 08:45:03 UTC (rev 14072)
@@ -23,6 +23,8 @@
         DBIx::Class::ResultSource::Table
         DBIx::Class::ResultSourceHandle
         DateTime
+        Moose::Meta::Attribute
+        Moose::Meta::Class
         / ] unless exists $c->config->{'Action::RenderView'}->{ignore_classes};
 
     $c->config->{'Action::RenderView'}->{scrubber_func} =
@@ -49,7 +51,7 @@
         $c->response->content_type( 'text/html; charset=utf-8' );
     }
     return 1 if $c->req->method eq 'HEAD';
-    return 1 if defined $c->response->body;
+    return 1 if $c->response->has_body;
     return 1 if scalar @{ $c->error } && !$c->stash->{template};
     return 1 if $c->response->status =~ /^(?:204|3\d\d)$/;
     my $view = $c->view()

Modified: Catalyst-Action-RenderView/trunk/t/lib/TestApp/View/TestView.pm
===================================================================
--- Catalyst-Action-RenderView/trunk/t/lib/TestApp/View/TestView.pm	2011-08-08 08:42:17 UTC (rev 14071)
+++ Catalyst-Action-RenderView/trunk/t/lib/TestApp/View/TestView.pm	2011-08-08 08:45:03 UTC (rev 14072)
@@ -1,10 +1,12 @@
 package TestApp::View::TestView;
+use Moose;
 
-use base qw( Catalyst::View );
+extends qw( Catalyst::View );
 
 sub process {
     my( $self, $c ) = @_;
+    warn("HERE");
     $c->res->body( 'View' );
 }
 
-1;
\ No newline at end of file
+1;


Property changes on: Catalyst-Authentication-Store-DBIx-Class/trunk
___________________________________________________________________
Modified: svn:ignore
   - META.yml
README
pm_to_blib
MANIFEST
Catalyst-Authentication-Store-DBIx-Class-*.tar.gz
blib
inc
Makefile


   + MANIFEST.bak
META.yml
README
pm_to_blib
MANIFEST
Catalyst-Authentication-Store-DBIx-Class-*
blib
inc
Makefile




Property changes on: Catalyst-Engine-Apache/tags/1.10/t
___________________________________________________________________
Modified: svn:externals
   - lib http://dev.catalyst.perl.org/repos/Catalyst/trunk/Catalyst-Runtime/t/lib

   + 



Property changes on: Catalyst-Engine-Apache/tags/1.11/t
___________________________________________________________________
Modified: svn:externals
   - lib http://dev.catalyst.perl.org/repos/Catalyst/trunk/Catalyst-Runtime/t/lib

   + 



Property changes on: Catalyst-Engine-Apache/tags/1.13_01/t
___________________________________________________________________
Modified: svn:externals
   - lib http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Runtime/5.80/trunk/t/lib

   + 



Property changes on: Catalyst-Engine-Apache/tags/1.14/t
___________________________________________________________________
Modified: svn:externals
   - lib http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Runtime/5.80/trunk/t/lib

   + 



Property changes on: Catalyst-Engine-Apache/tags/1.15/t
___________________________________________________________________
Modified: svn:externals
   - lib http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Runtime/5.80/trunk/t/lib

   + 



Property changes on: Catalyst-Model-Akismet/trunk
___________________________________________________________________
Added: svn:ignore
   + MANIFEST.bak
META.yml
pm_to_blib
blib
inc
Makefile
MYMETA.json
MYETA.yml



Property changes on: Catalyst-Plugin-Authorization-Roles/trunk
___________________________________________________________________
Added: svn:ignore
   + MANIFEST
META.yml
pm_to_blib
blib
Catalyst-Plugin-Authorization-Roles-*
inc
Makefile
README




Property changes on: Catalyst-Plugin-Cache-Store-FastMmap/trunk
___________________________________________________________________
Added: svn:ignore
   + Catalyst-Plugin-Cache-Store-FastMmap-*
MANIFEST
META.yml
pm_to_blib
blib
inc
Makefile



Modified: Catalyst-Plugin-Compress/trunk/Makefile.PL
===================================================================
--- Catalyst-Plugin-Compress/trunk/Makefile.PL	2011-08-08 08:42:17 UTC (rev 14071)
+++ Catalyst-Plugin-Compress/trunk/Makefile.PL	2011-08-08 08:45:03 UTC (rev 14072)
@@ -1,6 +1,6 @@
 use strict;
 use warnings;
-use inc::Module::Install 0.87;
+use inc::Module::Install 0.91;
 
 name 'Catalyst-Plugin-Compress';
 all_from 'lib/Catalyst/Plugin/Compress.pm';


Property changes on: Catalyst-Plugin-RequireSSL/trunk
___________________________________________________________________
Added: svn:ignore
   + META.yml
pm_to_blib
blib
inc
Makefile




Property changes on: Catalyst-Plugin-Session/0.00/trunk
___________________________________________________________________
Modified: svn:ignore
   - Catalyst-Plugin-Session-*
MANIFEST.bak
pm_to_blib
inc
Makefile
Makefile.old
MANIFEST
README
META.yml
Build
_build
blib

   + MYMETA.*
Catalyst-Plugin-Session-*
MANIFEST.bak
pm_to_blib
inc
Makefile
Makefile.old
MANIFEST
README
META.yml
Build
_build
blib



Property changes on: Catalyst-Plugin-Unicode-Encoding/trunk
___________________________________________________________________
Modified: svn:ignore
   - Catalyst-Plugin-Unicode-Encoding-*
META.yml
inc
Makefile.old
Makefile
MANIFEST
MANIFEST.bak
blib
pm_to_blib


   + MYMETA.*
Catalyst-Plugin-Unicode-Encoding-*
META.yml
inc
Makefile.old
Makefile
MANIFEST
MANIFEST.bak
blib
pm_to_blib




Property changes on: CatalystX-CRUD/CatalystX-CRUD/trunk
___________________________________________________________________
Modified: svn:ignore
   - inc
blib
pm_to_blib
MANIFEST
Makefile
Makefile.old
MANIFEST.bak


   + MYMETA.yml
MYMETA.json
inc
blib
pm_to_blib
MANIFEST
Makefile
Makefile.old
MANIFEST.bak




Property changes on: HTTP-Request-AsCGI/trunk
___________________________________________________________________
Added: svn:ignore
   + HTTP-Request-AsCGI-*




Property changes on: Test-WWW-Mechanize-Catalyst/trunk
___________________________________________________________________
Modified: svn:ignore
   - META.yml
README
blib
inc
pm_to_blib
.*.sw[op]
MANIFEST
Makefile

   + MYMETA.*
META.yml
README
blib
inc
pm_to_blib
.*.sw[op]
MANIFEST
Makefile



Property changes on: trunk/Catalyst-Controller-FormBuilder
___________________________________________________________________
Modified: svn:ignore
   - MANIFEST.bak
META.yml
inc
blib
pm_to_blib
Makefile
Makefile.old
MANIFEST


   + Catalyst-Controller-FormBuilder-*
MANIFEST.bak
META.yml
inc
blib
pm_to_blib
Makefile
Makefile.old
MANIFEST




Property changes on: trunk/Catalyst-Engine-HTTP-POE/t
___________________________________________________________________
Modified: svn:externals
   - lib http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Runtime/5.70/trunk/t/lib

   + 



Property changes on: trunk/Catalyst-Model-CDBI
___________________________________________________________________
Added: svn:ignore
   + MANIFEST.bak
Catalyst-Model-CDBI-*
Makefile




Property changes on: trunk/Catalyst-Plugin-Cache
___________________________________________________________________
Modified: svn:ignore
   - inc
blib
pm_to_blib
META.yml
Makefile
Makefile.old
MANIFEST
MANIFEST.bak

   + Catalyst-Plugin-Cache-*
inc
blib
pm_to_blib
META.yml
Makefile
Makefile.old
MANIFEST
MANIFEST.bak



Property changes on: trunk/Catalyst-Plugin-Cache-FastMmap
___________________________________________________________________
Added: svn:ignore
   + META.yml
Catalyst-Plugin-Cache-FastMmap-*
MANIFEST.bak
pm_to_blib
blib
inc
Makefile




Property changes on: trunk/Catalyst-Plugin-Cache-Memcached
___________________________________________________________________
Added: svn:ignore
   + MANIFEST.bak
MANIFEST
inc
Catalyst-Plugin-Cache-Memcached-*
Makefile




Property changes on: trunk/Catalyst-Plugin-Compress-Zlib
___________________________________________________________________
Modified: svn:ignore
   - Catalyst-Plugin-Compress-Zlib-0.04*
MANIFEST
MANIFEST.bak
pm_to_blib
blib
inc
Makefile
Makefile.old
README


   + Catalyst-Plugin-Compress-Zlib-*
MANIFEST
MANIFEST.bak
pm_to_blib
blib
inc
Makefile
Makefile.old
README



Modified: trunk/Catalyst-Plugin-Images/Changes
===================================================================
--- trunk/Catalyst-Plugin-Images/Changes	2011-08-08 08:42:17 UTC (rev 14071)
+++ trunk/Catalyst-Plugin-Images/Changes	2011-08-08 08:45:03 UTC (rev 14072)
@@ -1,3 +1,6 @@
+0.03
+    - Fix missing Test::use::ok dep.
+
 0.02
     - Switch to Module::Install
     - Require TWMC in Makefile.PL (RT#42453)
@@ -3,5 +6,5 @@
     - Fix POD
     - Switch from NEXT to MRO::Compat's next::method
-    
+
 0.01
     - Initial release

Modified: trunk/Catalyst-Plugin-Images/lib/Catalyst/Plugin/Images.pm
===================================================================
--- trunk/Catalyst-Plugin-Images/lib/Catalyst/Plugin/Images.pm	2011-08-08 08:42:17 UTC (rev 14071)
+++ trunk/Catalyst-Plugin-Images/lib/Catalyst/Plugin/Images.pm	2011-08-08 08:45:03 UTC (rev 14072)
@@ -10,7 +10,7 @@
 use Path::Class ();
 use MRO::Compat;
 
-our $VERSION = "0.02";
+our $VERSION = "0.03";
 
 sub setup {
     my $app = shift;

Modified: trunk/Catalyst-Plugin-Images/t/basic.t
===================================================================
--- trunk/Catalyst-Plugin-Images/t/basic.t	2011-08-08 08:42:17 UTC (rev 14071)
+++ trunk/Catalyst-Plugin-Images/t/basic.t	2011-08-08 08:45:03 UTC (rev 14072)
@@ -7,7 +7,7 @@
 
 use lib "t/lib";
 
-use ok "Test::WWW::Mechanize::Catalyst" => "ImgTestApp";
+use Test::WWW::Mechanize::Catalyst "ImgTestApp";
 
 my $mech = Test::WWW::Mechanize::Catalyst->new;
 


Property changes on: trunk/Catalyst-Plugin-LogWarnings
___________________________________________________________________
Modified: svn:ignore
   - .
   + MANIFEST
pm_to_blib
blib
Catalyst-Plugin-LogWarnings-*
Makefile



Property changes on: trunk/Catalyst-Plugin-Session-PerUser
___________________________________________________________________
Modified: svn:ignore
   - MANIFEST.bak
MANIFEST
META.yml
pm_to_blib
blib
inc
Makefile
Makefile.old


   + Catalyst-Plugin-Session-PerUser-*
MANIFEST.bak
MANIFEST
META.yml
pm_to_blib
blib
inc
Makefile
Makefile.old




Property changes on: trunk/Catalyst-Plugin-Static
___________________________________________________________________
Modified: svn:ignore
   - pm_to_blib
blib
Makefile.old
Makefile
MANIFEST
MANIFEST.bak
inc


   + Catalyst-Plugin-Static-*
pm_to_blib
blib
Makefile.old
Makefile
MANIFEST
MANIFEST.bak
inc




Property changes on: trunk/Catalyst-Plugin-SubRequest
___________________________________________________________________
Modified: svn:ignore
   - META.yml
pm_to_blib
blib
inc
Makefile
MANIFEST
MANIFEST.bak


   + Catalyst-Plugin-SubRequest-*
META.yml
pm_to_blib
blib
inc
Makefile
MANIFEST
MANIFEST.bak




Property changes on: trunk/Catalyst-Plugin-UploadProgress
___________________________________________________________________
Modified: svn:ignore
   - META.yml
pm_to_blib
blib
inc
Makefile
Makefile.old
MANIFEST
MANIFEST.bak


   + Catalyst-Plugin-UploadProgress-*
META.yml
pm_to_blib
blib
inc
Makefile
Makefile.old
MANIFEST
MANIFEST.bak




Property changes on: trunk/historical/Catalyst-Plugin-Session-FastMmap
___________________________________________________________________
Added: svn:ignore
   + Makefile
Makefile.old
Catalyst-Plugin-Session-FastMmap-*
MANIFEST
MANIFEST.bak




Property changes on: trunk/historical/Catalyst-Plugin-XMLRPC
___________________________________________________________________
Added: svn:ignore
   + Catalyst-Plugin-XMLRPC-*
MANIFEST
META.yml
pm_to_blib
blib
inc
Makefile




Property changes on: trunk/historical/Catalyst-View-REST-XML
___________________________________________________________________
Added: svn:ignore
   + MANIFEST.bak
Catalyst-View-REST-XML-*
MANIFEST
META.yml
pm_to_blib
blib
inc
MYMETA.yml
Makefile






More information about the Catalyst-commits mailing list