/[transports]/trunk/lib/Transports/Dispatcher.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/lib/Transports/Dispatcher.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 69 - (show annotations)
Sun Jun 11 14:23:37 2006 UTC (17 years, 10 months ago) by dpavlin
File size: 1317 byte(s)
refactored transports handling
1 package Transports::Dispatcher;
2 use Jifty::Dispatcher -base;
3
4 # Default page
5 #on '/', run {
6 # redirect( '/new');
7 #};
8
9 =head1 Login and logout operations
10
11 =head2 login
12
13 =cut
14
15 on qr'^/login(/.*)?$', run {
16
17 my $return_url = $1 || '/';
18
19 set 'action' =>
20 Jifty->web->new_action( class => 'Login', moniker => 'loginbox' );
21 set 'next' => Jifty->web->request->continuation
22 || Jifty::Continuation->new(
23 request => Jifty::Request->new( path => $return_url ) );
24 show '/login';
25 };
26
27 =head2 logout
28
29 =cut
30
31 before 'logout', run {
32 Jifty->web->request->add_action(
33 moniker => 'logout',
34 class => 'Transports::Action::Logout'
35 );
36 };
37
38
39 # These are dispatcher rules that halos and error handling need to be
40 # able to edit files in place. These should become a plugin of some
41 # sort, when we have that infrastructure.
42
43 before '*', run {
44 Jifty->api->allow(qr/^Jifty::Action::Devel/)
45 if Jifty->config->framework('DevelMode');
46 };
47
48 on qr'^/__jifty/edit/(.*?)/(.*)$', run {
49 my $editor = Jifty->web->new_action(
50 class => 'Jifty::Action::Devel::FileEditor',
51 moniker => 'editpage',
52 arguments => {
53 source_path => $2,
54 file_type => $1,
55 }
56 );
57
58 set editor => $editor;
59 show '/__jifty/edit_file';
60 };
61
62 1;

  ViewVC Help
Powered by ViewVC 1.1.26