-
-
14 Dec 2010 14:37:07 UTC
- Distribution: Catalyst-View-Component-SubInclude
- Module version: 0.07_03
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Clone repository
- Issues (4)
- Testers (1566 / 16 / 0)
- Kwalitee
Bus factor: 9- % Coverage
- License: perl_5
- Activity
24 month- Tools
- Download (36.41KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
and 1 contributors- Nilson Santos Figueiredo Junior, C<< <nilsonsfj at cpan.org> >>
NAME
Catalyst::View::Component::SubInclude::ESI - Edge Side Includes (ESI) plugin for C::V::Component::SubInclude
VERSION
Version 0.07_03
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') %]
DESCRIPTION
Catalyst::View::Component::SubInclude::ESI
renderssubinclude
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.
SEE ALSO
Catalyst::View::Component::SubInclude, http://www.catalystframework.org/calendar/2008/17, http://varnish.projects.linpro.no/
AUTHOR
Nilson Santos Figueiredo Junior,
<nilsonsfj at cpan.org>
SPONSORSHIP
Development sponsored by Ionzero LLC http://www.ionzero.com/.
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.
Module Install Instructions
To install Catalyst::View::Component::SubInclude, copy and paste the appropriate command in to your terminal.
cpanm Catalyst::View::Component::SubInclude
perl -MCPAN -e shell install Catalyst::View::Component::SubInclude
For more information on module installation, please visit the detailed CPAN module installation guide.