5 use Catalyst
::Runtime
'5.70';
7 use Catalyst
::Authentication
::Store
::Minimal
;
20 Session
::Store
::FastMmap
21 Session
::State
::Cookie
24 +Common
::Plugin
::Authorization
::ACL
::Paranoid
33 +CatalystX
::Plugin
::I18N
::URI
36 our $VERSION = '0.04';
38 __PACKAGE__
->dispatcher_class( 'Common::Dispatcher::LangDetect' );
45 output_path
=> 'built/',
56 '/user/login' => sub { !shift->user_exists() },
57 '/user/login_openid' => sub { !shift->user_exists() },
58 '/user/logout' => sub { shift->user_exists() },
64 '/post/archive_list' => 1,
74 '*' => sub { shift->user_in_realm( 'admins' ) }
78 __PACKAGE__
->log->disable( 'debug' ) if !__PACKAGE__
->debug;
82 Blog - Catalyst based application
90 This library is free software, you can redistribute it and/or modify
91 it under the same terms as Perl itself.