[Jifty-commit] r1593 - jifty/branches/moose/lib/Jifty/Web

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Mon Jul 17 00:57:45 EDT 2006


Author: audreyt
Date: Mon Jul 17 00:57:45 2006
New Revision: 1593

Modified:
   jifty/branches/moose/lib/Jifty/Web/Menu.pm

Log:
* fix Jifty::Web::Menu declaration; the original mk_accessor was sloppy.

Modified: jifty/branches/moose/lib/Jifty/Web/Menu.pm
==============================================================================
--- jifty/branches/moose/lib/Jifty/Web/Menu.pm	(original)
+++ jifty/branches/moose/lib/Jifty/Web/Menu.pm	Mon Jul 17 00:57:45 2006
@@ -1,6 +1,9 @@
 package Jifty::Web::Menu;
 
 use Moose;
+has url             => qw( is rw isa Any ); # URI | Str
+has active          => qw( is rw isa Bool );
+has class           => qw( is rw isa Str );
 has label           => qw( is rw isa Str );
 has parent          => qw( is rw isa Jifty::Web::Menu weak_ref 1 );
 has sort_order      => qw( is rw isa Int );


More information about the Jifty-commit mailing list