Skip to content

Commit

Permalink
Merge branch 'master' into new_rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
Zbigniew Lukasiak committed Aug 28, 2010
2 parents 9a01c72 + 48b626f commit 37ec415
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
Expand Up @@ -5,7 +5,7 @@ package DvdDatabase::Controller::Dvd::Record;

use base 'WebNano::Controller';

use Class::XSAccessor { accessors => [ qw/ record / ], };
use Object::Tiny::RW 'record';


sub index_action {
Expand Down
2 changes: 1 addition & 1 deletion extensions/WebNano-Renderer-TT/lib/WebNano/Renderer/TT.pm
Expand Up @@ -3,7 +3,7 @@ use strict;
use warnings;

use Template;
use Class::XSAccessor { accessors => [ qw/ root _tt global_path INCLUDE_PATH / ], };
use Object::Tiny::RW qw/ root _tt global_path INCLUDE_PATH /;
use File::Spec;

sub new {
Expand Down
5 changes: 1 addition & 4 deletions lib/WebNano/Controller.pm
Expand Up @@ -9,10 +9,7 @@ use URI::Escape 'uri_unescape';
use Plack::Request;
use File::Spec::Functions qw/catfile catdir/;

use Class::XSAccessor {
accessors => [ qw/ application env self_path self_url url_map _request / ],
constructor => 'new'
};
use Object::Tiny::RW qw/ application env self_path self_url url_map _request /;

sub request {
my $self = shift;
Expand Down

0 comments on commit 37ec415

Please sign in to comment.