[Catalyst-commits] r10113 - in Catalyst-Devel/1.00/trunk: . lib/Catalyst

t0m at dev.catalyst.perl.org t0m at dev.catalyst.perl.org
Wed May 13 17:41:21 GMT 2009


Author: t0m
Date: 2009-05-13 17:41:21 +0000 (Wed, 13 May 2009)
New Revision: 10113

Modified:
   Catalyst-Devel/1.00/trunk/Changes
   Catalyst-Devel/1.00/trunk/lib/Catalyst/Devel.pm
   Catalyst-Devel/1.00/trunk/lib/Catalyst/Helper.pm
Log:
Unfuck -p option to do what I have a finger macro for

Modified: Catalyst-Devel/1.00/trunk/Changes
===================================================================
--- Catalyst-Devel/1.00/trunk/Changes	2009-05-13 17:12:55 UTC (rev 10112)
+++ Catalyst-Devel/1.00/trunk/Changes	2009-05-13 17:41:21 UTC (rev 10113)
@@ -1,5 +1,9 @@
 This file documents the revision history for Perl extension Catalyst-Devel.
 
+        - Remove -p option for pid file, and restore it to the port number,
+          as it should be -port|-p (t0m)
+        - Document -pidfile in myapp_server.pl POD (t0m)
+
 1.13    2009-05-11 02:50
         - add [-pidfile|-p] option for myapp_server.pl (caelum)
         - Bump dependency on Config::General (caelum)

Modified: Catalyst-Devel/1.00/trunk/lib/Catalyst/Devel.pm
===================================================================
--- Catalyst-Devel/1.00/trunk/lib/Catalyst/Devel.pm	2009-05-13 17:12:55 UTC (rev 10112)
+++ Catalyst-Devel/1.00/trunk/lib/Catalyst/Devel.pm	2009-05-13 17:41:21 UTC (rev 10113)
@@ -4,7 +4,7 @@
 use warnings;
 
 our $VERSION             = '1.13';
-our $CATALYST_SCRIPT_GEN = 33;
+our $CATALYST_SCRIPT_GEN = 36;
 
 =head1 NAME
 

Modified: Catalyst-Devel/1.00/trunk/lib/Catalyst/Helper.pm
===================================================================
--- Catalyst-Devel/1.00/trunk/lib/Catalyst/Helper.pm	2009-05-13 17:12:55 UTC (rev 10112)
+++ Catalyst-Devel/1.00/trunk/lib/Catalyst/Helper.pm	2009-05-13 17:41:21 UTC (rev 10113)
@@ -991,7 +991,7 @@
     'restartdirectory=s@' => \$restart_directory,
     'followsymlinks'      => \$follow_symlinks,
     'background'          => \$background,
-    'pidfile|p=s'         => \$pidfile,
+    'pidfile=s'           => \$pidfile,
 );
 
 pod2usage(1) if $help;
@@ -1050,6 +1050,8 @@
    -follow_symlinks   follow symlinks in search directories
                       (defaults to false. this is a no-op on Win32)
    -background        run the process in the background
+   -pidfile           specify filename for pid file
+
  See also:
    perldoc Catalyst::Manual
    perldoc Catalyst::Manual::Intro




More information about the Catalyst-commits mailing list