logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Catalyst::View::Component::SubInclude::ESI - Edge Side Includes (ESI) plugin for

Author

       Nilson Santos Figueiredo Junior, "<nilsonsfj at cpan.org>"

Description

       "Catalyst::View::Component::SubInclude::ESI" renders "subinclude" calls as Edge Side Includes (ESI)
       include directives. This is a feature implemented by Varnish (<http://varnish.projects.linpro.no/>) which
       allows cache-efficient uses of includes.

Methods

"generate_subinclude($c,$path,@args)"
       Note that $path should be the private action path - translation to the public path is handled internally.
       After translation, this will roughly translate to the following code:

         my $url = $c->uri_for( $translated_path, @args )->path_query;
         return '<!--esi <esi:include src="$url" /> -->';

       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.

Name

       Catalyst::View::Component::SubInclude::ESI - Edge Side Includes (ESI) plugin for
       C::V::Component::SubInclude

See Also

Sponsorship

       Development sponsored by Ionzero LLC <http://www.ionzero.com/>.

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') %]

Version

       Version 0.07_03

See Also