[Jifty-commit] r1591 - in jifty/branches/moose/lib/Jifty: .

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Sat Jul 15 02:37:20 EDT 2006


Author: jesse
Date: Sat Jul 15 02:37:20 2006
New Revision: 1591

Modified:
   jifty/branches/moose/lib/Jifty/Response.pm
   jifty/branches/moose/lib/Jifty/Web/Form/Clickable.pm

Log:
*  Mor erelaxing ( for now)

Modified: jifty/branches/moose/lib/Jifty/Response.pm
==============================================================================
--- jifty/branches/moose/lib/Jifty/Response.pm	(original)
+++ jifty/branches/moose/lib/Jifty/Response.pm	Sat Jul 15 02:37:20 2006
@@ -18,7 +18,7 @@
 use base qw/Jifty::Object/;
 
 use Moose;
-has error => qw( is rw isa Str );
+has error => qw( is rw isa Any ); # Str? XXX TODO
 no Moose;
 
 =head2 new

Modified: jifty/branches/moose/lib/Jifty/Web/Form/Clickable.pm
==============================================================================
--- jifty/branches/moose/lib/Jifty/Web/Form/Clickable.pm	(original)
+++ jifty/branches/moose/lib/Jifty/Web/Form/Clickable.pm	Sat Jul 15 02:37:20 2006
@@ -24,7 +24,7 @@
 =cut
 
 use Moose;
-has url                 => qw( is rw isa Str );
+has url                 => qw( is rw isa Any ); # Str | URI
 has escape_label        => qw( is rw isa Bool );
 has tooltip             => qw( is rw isa Str );
 has continuation        => qw( is rw isa Any ); # Jifty::Continuation | Str


More information about the Jifty-commit mailing list