/[Frey]/trunk/lib/Frey/Mojo.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

Annotation of /trunk/lib/Frey/Mojo.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 268 - (hide annotations)
Wed Nov 5 08:20:38 2008 UTC (15 years, 6 months ago) by dpavlin
File size: 813 byte(s)
 r3086@llin (orig r232):  dpavlin | 2008-11-01 16:16:33 +0100
 experimental markup runner (not working as well as I would like)

1 dpavlin 267 package Frey::Mojo;
2    
3     use strict;
4     use warnings;
5    
6     use base 'Mojolicious';
7    
8     # This method will run for each request
9     sub dispatch {
10     my ($self, $c) = @_;
11    
12     # Try to find a static file
13     $self->static->dispatch($c);
14    
15     # Use routes if we don't have a response code yet
16     $self->routes->dispatch($c) unless $c->res->code;
17    
18     # Nothing found
19     unless ($c->res->code) {
20     $self->static->serve($c, '/404.html');
21     $c->res->code(404);
22     }
23     }
24    
25 dpavlin 268 use Frey::ClassLoader;
26    
27 dpavlin 267 # This method will run once at server start
28     sub startup {
29     my $self = shift;
30    
31 dpavlin 268 Frey::ClassLoader->new->load_all_classes();
32    
33 dpavlin 267 # The routes
34     my $r = $self->routes;
35    
36     # Default route
37 dpavlin 268 $r->route('/:controller/:action/:class')
38     ->to(controller => 'run', action => 'markup', class => 'Frey::ClassBrowser');
39 dpavlin 267 }
40    
41     1;

  ViewVC Help
Powered by ViewVC 1.1.26