X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-View-Component-SubInclude.git;a=blobdiff_plain;f=lib%2FCatalyst%2FView%2FComponent%2FSubInclude%2FESI.pm;h=6d763e1acb9d3564ca5d9a93b80bd0bb94894fbb;hp=f2e02b93a3961f3494b4602f60558c82a75231a1;hb=aea6a2daf91fe3f71f5018d78fdeeff3da6833c8;hpb=307266327522e574890b4c59074c0598d17e8cd2 diff --git a/lib/Catalyst/View/Component/SubInclude/ESI.pm b/lib/Catalyst/View/Component/SubInclude/ESI.pm index f2e02b9..6d763e1 100644 --- a/lib/Catalyst/View/Component/SubInclude/ESI.pm +++ b/lib/Catalyst/View/Component/SubInclude/ESI.pm @@ -2,11 +2,90 @@ package Catalyst::View::Component::SubInclude::ESI; use warnings; use strict; +=head1 NAME + +Catalyst::View::Component::SubInclude::ESI - Edge Side Includes (ESI) plugin for C::V::Component::SubInclude + +=head1 VERSION + +Version 0.02 + +=cut + +our $VERSION = '0.02'; + +=head1 SYNOPSIS + +In your view class: + + package MyApp::View::TT; + use Moose; + + extends 'Catalyst::View::TT'; + with 'Catalyst::View::Component::SubInclude'; + + __PACKAGE__->config( subinclude_plugin => 'ESI' ); + +Then, somewhere in your templates: + + [% subinclude('/my/widget') %] + +=head1 DESCRIPTION + +C renders C calls as +Edge Side Includes (ESI) include directives. This is a feature implemented by +Varnish (L) which allows cache-efficient +uses of includes. + +=head1 CLASS METHODS + +=head2 C + +This will roughly translate to the following code: + + my $url = $c->uri_for( @args ); + return ''; + +Notice that the stash will always be empty. This behavior could be configurable +in the future through an additional switch - for now, this behavior guarantees a +common interface for plugins. + +=cut + sub generate_subinclude { - my $class = shift; - my $c = shift; - my $url = $c->uri_for( @_ ); - return ''; + my ($class, $c, $path, @params) = @_; + + my $dispatcher = $c->dispatcher; + my ($action, $args) = $dispatcher->_invoke_as_path( $c, $path, @params ); + + my $uri = $c->uri_for( $action, $args ); + + return ''; } +=head1 SEE ALSO + +L, +L, +L + +=head1 AUTHOR + +Nilson Santos Figueiredo Junior, C<< >> + +=head1 SPONSORSHIP + +Development sponsored by Ionzero LLC L. + +=head1 COPYRIGHT & LICENSE + +Copyright (C) 2009 Nilson Santos Figueiredo Junior. + +Copyright (C) 2009 Ionzero LLC. + +This program is free software; you can redistribute it and/or modify it +under the same terms as Perl itself. + +=cut + 1;