From: Nilson Santos Figueiredo JĂșnior Date: Fri, 6 Feb 2009 19:59:55 +0000 (+0000) Subject: Add README and Changes, update MANIFEST X-Git-Tag: 0.07_01~32 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-View-Component-SubInclude.git;a=commitdiff_plain;h=b22858286f7e6dd12de00dde6931082f40f49152;hp=be2a019af2b1ffb2672e77b65e3644ee6ee278cd Add README and Changes, update MANIFEST --- diff --git a/Changes b/Changes new file mode 100644 index 0000000..e93c131 --- /dev/null +++ b/Changes @@ -0,0 +1,13 @@ +Revision history for Catalyst-View-Component-SubInclude + +0.03 Fri Feb 6 17:58:50 2009 + - Add "subinclude_using" + - Tidy up dist (added README and this Changes file) + +0.02 Thu Feb 5 23:26:54 2008 + - Fixed several issues related to Chained actions + - Added the Visit subinclude plugin + +0.01 Fri Jan 30 21:00:00 2009 + First public version. + diff --git a/MANIFEST b/MANIFEST index 0ea7c89..b0f7fab 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,22 +1,24 @@ -inc/Module/AutoInstall.pm -inc/Module/Install.pm -inc/Module/Install/AutoInstall.pm -inc/Module/Install/Base.pm -inc/Module/Install/Can.pm -inc/Module/Install/Catalyst.pm -inc/Module/Install/Fetch.pm -inc/Module/Install/Include.pm -inc/Module/Install/Makefile.pm -inc/Module/Install/Metadata.pm -inc/Module/Install/Win32.pm -inc/Module/Install/WriteAll.pm -lib/Catalyst/View/Component/SubInclude.pm -lib/Catalyst/View/Component/SubInclude/ESI.pm -lib/Catalyst/View/Component/SubInclude/SubRequest.pm -lib/Catalyst/View/Component/SubInclude/Visit.pm -Makefile.PL -MANIFEST This list of files -META.yml -t/00-load.t -t/pod-coverage.t -t/pod.t +Changes +inc/Module/AutoInstall.pm +inc/Module/Install.pm +inc/Module/Install/AutoInstall.pm +inc/Module/Install/Base.pm +inc/Module/Install/Can.pm +inc/Module/Install/Catalyst.pm +inc/Module/Install/Fetch.pm +inc/Module/Install/Include.pm +inc/Module/Install/Makefile.pm +inc/Module/Install/Metadata.pm +inc/Module/Install/Win32.pm +inc/Module/Install/WriteAll.pm +lib/Catalyst/View/Component/SubInclude.pm +lib/Catalyst/View/Component/SubInclude/ESI.pm +lib/Catalyst/View/Component/SubInclude/SubRequest.pm +lib/Catalyst/View/Component/SubInclude/Visit.pm +Makefile.PL +MANIFEST This list of files +META.yml +t/00-load.t +t/pod-coverage.t +t/pod.t +README diff --git a/README b/README new file mode 100644 index 0000000..9991c3d --- /dev/null +++ b/README @@ -0,0 +1,38 @@ +NAME + Catalyst::View::Component::SubInclude - Use subincludes in your Catalyst + views + +VERSION + Version 0.03 + +DESCRIPTION + "Catalyst::View::Component::SubInclude" allows you to include content in + your templates (or, more generally, somewhere in your view's "render" + processing) which comes from another action in your application. It's + implemented as a Moose::Role, so using Moose in your view is required. + + Simply put, it's a way to include the output of a Catalyst sub-request + somewhere in your page. + + 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. + +SEE ALSO + Catalyst::Plugin::SubRequest, Moose::Role, Moose, + + +AUTHOR + Nilson Santos Figueiredo Junior, "" + +SPONSORSHIP + Development sponsored by Ionzero LLC . + +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.