[Catalyst-commits] r10514 - Catalyst-Devel/1.00/branches/helper_refactor/share

dhoss at dev.catalyst.perl.org dhoss at dev.catalyst.perl.org
Fri Jun 12 00:58:05 GMT 2009


Author: dhoss
Date: 2009-06-12 00:58:04 +0000 (Fri, 12 Jun 2009)
New Revision: 10514

Added:
   Catalyst-Devel/1.00/branches/helper_refactor/share/Changes.tt
   Catalyst-Devel/1.00/branches/helper_refactor/share/Makefile.PL.tt
   Catalyst-Devel/1.00/branches/helper_refactor/share/README
   Catalyst-Devel/1.00/branches/helper_refactor/share/myapp.conf.tt
Removed:
   Catalyst-Devel/1.00/branches/helper_refactor/share/changes.tt
   Catalyst-Devel/1.00/branches/helper_refactor/share/config.tt
   Catalyst-Devel/1.00/branches/helper_refactor/share/makefile.tt
   Catalyst-Devel/1.00/branches/helper_refactor/share/readme.tt
Log:
renamed!

Copied: Catalyst-Devel/1.00/branches/helper_refactor/share/Changes.tt (from rev 10513, Catalyst-Devel/1.00/branches/helper_refactor/share/changes.tt)
===================================================================
--- Catalyst-Devel/1.00/branches/helper_refactor/share/Changes.tt	                        (rev 0)
+++ Catalyst-Devel/1.00/branches/helper_refactor/share/Changes.tt	2009-06-12 00:58:04 UTC (rev 10514)
@@ -0,0 +1,4 @@
+This file documents the revision history for Perl extension [% name %].
+
+0.01  [% time %]
+        - initial revision, generated by Catalyst


Property changes on: Catalyst-Devel/1.00/branches/helper_refactor/share/Changes.tt
___________________________________________________________________
Name: svn:mergeinfo
   + 

Copied: Catalyst-Devel/1.00/branches/helper_refactor/share/Makefile.PL.tt (from rev 10513, Catalyst-Devel/1.00/branches/helper_refactor/share/makefile.tt)
===================================================================
--- Catalyst-Devel/1.00/branches/helper_refactor/share/Makefile.PL.tt	                        (rev 0)
+++ Catalyst-Devel/1.00/branches/helper_refactor/share/Makefile.PL.tt	2009-06-12 00:58:04 UTC (rev 10514)
@@ -0,0 +1,20 @@
+[% startperl %]
+# IMPORTANT: if you delete this file your app will not work as
+# expected.  You have been warned.
+use inc::Module::Install;
+
+name '[% dir %]';
+all_from '[% path %]';
+
+requires 'Catalyst::Runtime' => '[% catalyst_version %]';
+requires 'Catalyst::Plugin::ConfigLoader';
+requires 'Catalyst::Plugin::Static::Simple';
+requires 'Catalyst::Action::RenderView';
+requires 'parent';
+requires 'Config::General'; # This should reflect the config file format you've chosen
+                 # See Catalyst::Plugin::ConfigLoader for supported formats
+catalyst;
+
+install_script glob('script/*.pl');
+auto_install;
+WriteAll;


Property changes on: Catalyst-Devel/1.00/branches/helper_refactor/share/Makefile.PL.tt
___________________________________________________________________
Name: svn:mergeinfo
   + 

Copied: Catalyst-Devel/1.00/branches/helper_refactor/share/README (from rev 10513, Catalyst-Devel/1.00/branches/helper_refactor/share/readme.tt)
===================================================================
--- Catalyst-Devel/1.00/branches/helper_refactor/share/README	                        (rev 0)
+++ Catalyst-Devel/1.00/branches/helper_refactor/share/README	2009-06-12 00:58:04 UTC (rev 10514)
@@ -0,0 +1 @@
+Run script/[% appprefix %]_server.pl to test the application.


Property changes on: Catalyst-Devel/1.00/branches/helper_refactor/share/README
___________________________________________________________________
Name: svn:mergeinfo
   + 

Deleted: Catalyst-Devel/1.00/branches/helper_refactor/share/changes.tt
===================================================================
--- Catalyst-Devel/1.00/branches/helper_refactor/share/changes.tt	2009-06-12 00:49:51 UTC (rev 10513)
+++ Catalyst-Devel/1.00/branches/helper_refactor/share/changes.tt	2009-06-12 00:58:04 UTC (rev 10514)
@@ -1,4 +0,0 @@
-This file documents the revision history for Perl extension [% name %].
-
-0.01  [% time %]
-        - initial revision, generated by Catalyst

Deleted: Catalyst-Devel/1.00/branches/helper_refactor/share/config.tt
===================================================================
--- Catalyst-Devel/1.00/branches/helper_refactor/share/config.tt	2009-06-12 00:49:51 UTC (rev 10513)
+++ Catalyst-Devel/1.00/branches/helper_refactor/share/config.tt	2009-06-12 00:58:04 UTC (rev 10514)
@@ -1,3 +0,0 @@
-# rename this file to [% name %].yml and put a ':' in front of 'name' if
-# you want to use YAML like in old versions of Catalyst
-name [% name %]

Deleted: Catalyst-Devel/1.00/branches/helper_refactor/share/makefile.tt
===================================================================
--- Catalyst-Devel/1.00/branches/helper_refactor/share/makefile.tt	2009-06-12 00:49:51 UTC (rev 10513)
+++ Catalyst-Devel/1.00/branches/helper_refactor/share/makefile.tt	2009-06-12 00:58:04 UTC (rev 10514)
@@ -1,20 +0,0 @@
-[% startperl %]
-# IMPORTANT: if you delete this file your app will not work as
-# expected.  You have been warned.
-use inc::Module::Install;
-
-name '[% dir %]';
-all_from '[% path %]';
-
-requires 'Catalyst::Runtime' => '[% catalyst_version %]';
-requires 'Catalyst::Plugin::ConfigLoader';
-requires 'Catalyst::Plugin::Static::Simple';
-requires 'Catalyst::Action::RenderView';
-requires 'parent';
-requires 'Config::General'; # This should reflect the config file format you've chosen
-                 # See Catalyst::Plugin::ConfigLoader for supported formats
-catalyst;
-
-install_script glob('script/*.pl');
-auto_install;
-WriteAll;

Copied: Catalyst-Devel/1.00/branches/helper_refactor/share/myapp.conf.tt (from rev 10513, Catalyst-Devel/1.00/branches/helper_refactor/share/config.tt)
===================================================================
--- Catalyst-Devel/1.00/branches/helper_refactor/share/myapp.conf.tt	                        (rev 0)
+++ Catalyst-Devel/1.00/branches/helper_refactor/share/myapp.conf.tt	2009-06-12 00:58:04 UTC (rev 10514)
@@ -0,0 +1,3 @@
+# rename this file to [% name %].yml and put a ':' in front of 'name' if
+# you want to use YAML like in old versions of Catalyst
+name [% name %]


Property changes on: Catalyst-Devel/1.00/branches/helper_refactor/share/myapp.conf.tt
___________________________________________________________________
Name: svn:mergeinfo
   + 

Deleted: Catalyst-Devel/1.00/branches/helper_refactor/share/readme.tt
===================================================================
--- Catalyst-Devel/1.00/branches/helper_refactor/share/readme.tt	2009-06-12 00:49:51 UTC (rev 10513)
+++ Catalyst-Devel/1.00/branches/helper_refactor/share/readme.tt	2009-06-12 00:58:04 UTC (rev 10514)
@@ -1 +0,0 @@
-Run script/[% appprefix %]_server.pl to test the application.




More information about the Catalyst-commits mailing list