From: t0m Date: Thu, 10 Jun 2010 20:25:53 +0000 (+0100) Subject: Version 0.09 X-Git-Tag: 0.09 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-View-Component-SubInclude.git;a=commitdiff_plain;h=dcdc4ec85577543c2645b2290aa4fa0c0c74cc04 Version 0.09 --- diff --git a/Changes b/Changes index ef76713..eed5818 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,7 @@ Revision history for Catalyst-View-Component-SubInclude +0.09 Thu 10 June 21:24:00 2010 + - Add SSI support (Vladimir Timofeev) - Additional documentation. 0.08 Sun 16 May 15:52:00 2010 diff --git a/README b/README index 355b9aa..759fe36 100644 --- a/README +++ b/README @@ -3,7 +3,7 @@ NAME views VERSION - Version 0.08 + Version 0.09 SYNOPSIS package MyApp::View::TT; @@ -31,7 +31,10 @@ DESCRIPTION It's built in an extensible way so that you're free to use sub-requests, Varnish ESI () or any other sub-include plugin you might want to implement. An LWP plugin - seems useful and might be developed in the future. + seems useful and might be developed in the future. If you need to + address a resource by it's public path (i.e. the path part trailing + "http://example.com/myapp" then you will need to use + Catalyst::Plugin::SubRequest directly, and not this component. STASH FUNCTIONS This component does its magic by exporting a "subinclude" coderef entry diff --git a/lib/Catalyst/View/Component/SubInclude.pm b/lib/Catalyst/View/Component/SubInclude.pm index 63ae8b9..efd8b33 100644 --- a/lib/Catalyst/View/Component/SubInclude.pm +++ b/lib/Catalyst/View/Component/SubInclude.pm @@ -15,11 +15,11 @@ Catalyst::View::Component::SubInclude - Use subincludes in your Catalyst views =head1 VERSION -Version 0.08 +Version 0.09 =cut -our $VERSION = '0.08'; +our $VERSION = '0.09'; $VERSION = eval $VERSION; =head1 SYNOPSIS diff --git a/lib/Catalyst/View/Component/SubInclude/SSI.pm b/lib/Catalyst/View/Component/SubInclude/SSI.pm index 7fe63a5..d870b68 100644 --- a/lib/Catalyst/View/Component/SubInclude/SSI.pm +++ b/lib/Catalyst/View/Component/SubInclude/SSI.pm @@ -8,11 +8,11 @@ Catalyst::View::Component::SubInclude::SSI - Server Side Includes (SSI) plugin f =head1 VERSION -Version 0.08 +Version 0.09 =cut -our $VERSION = '0.08'; +our $VERSION = '0.09'; $VERSION = eval $VERSION; =head1 SYNOPSIS