Version 0.09 0.09
t0m [Thu, 10 Jun 2010 20:25:53 +0000 (21:25 +0100)]
Changes
README
lib/Catalyst/View/Component/SubInclude.pm
lib/Catalyst/View/Component/SubInclude/SSI.pm

diff --git a/Changes b/Changes
index ef76713..eed5818 100644 (file)
--- 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 (file)
--- 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 (<http://www.catalystframework.org/calendar/2008/17>) 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
index 63ae8b9..efd8b33 100644 (file)
@@ -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
index 7fe63a5..d870b68 100644 (file)
@@ -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