--- lib/A3C/Dispatcher.pm 2008/05/22 20:48:42 125 +++ lib/A3C/Dispatcher.pm 2008/06/20 15:35:21 211 @@ -3,6 +3,16 @@ use strict; use warnings; +=head1 NAME + +A3C::Displatcher + +=head1 DESCRIPTION + +Create top-level menu navigation + +=cut + use Jifty::Dispatcher -base; use Data::Dump qw/dump/; @@ -17,11 +27,18 @@ # Jifty->log->debug("current_user = ", dump( $user )); - $top->child( _('People') => url => 'people' ); - $top->child( _('Organizations') => url => 'organizations' ); - - $top->child( _('Sync') => url => 'sync' ); - $top->child( _('LDAP') => url => 'ldap' ); + $top->child( _('People') => url => '/people' ); + my $o = $top->child( _('Organizations') => url => '/organizations' ); + $o->child( _('New') => url => '/organizations/new' ); + + my $ldap = $top->child( _('LDAP'), url => '/ldap/sync' ); # FIXME some kind of top-level ldap page? + $ldap->child( _('Sync') => url => '/ldap/sync' ); + $ldap->child( _('Dump') => url => '/ldap/dump' ); + + my $strix = $top->child( _('Strix') => url => '/strix' ); + $strix->child( _('Name differences') => url => '/strix/name_diff' ); + $strix->child( _('SQL') => url => '/strix/sql' ); + $strix->child( _('Navigation') => url => '/strix/navigation' ); # $top->child( 'Prefs' => url => '/prefs' ) if Jifty->web->current_user->id;