[Jifty-commit] r577 - jifty/trunk/lib

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Sun Feb 12 20:25:59 EST 2006


Author: jesse
Date: Sun Feb 12 20:25:58 2006
New Revision: 577

Modified:
   /   (props changed)
   jifty/trunk/lib/Jifty.pm
   jifty/trunk/lib/Jifty/Action.pm
   jifty/trunk/lib/Jifty/Bootstrap.pm
   jifty/trunk/lib/Jifty/Config.pm
   jifty/trunk/lib/Jifty/Dispatcher.pm
   jifty/trunk/lib/Jifty/Web.pm

Log:
 r23617 at truegrounds:  jesse | 2006-02-12 20:25:14 -0500
 * Doc cleanup from Ben Cornett


Modified: jifty/trunk/lib/Jifty.pm
==============================================================================
--- jifty/trunk/lib/Jifty.pm	(original)
+++ jifty/trunk/lib/Jifty.pm	Sun Feb 12 20:25:58 2006
@@ -70,7 +70,7 @@
 This class method instantiates a new C<Jifty> object. This object
 deals with configuration files, logging and database handles for the
 system.  Most of the time, the server will call this for you to set up
-your C<Jifty> object.  If you are writing command-line programs htat
+your C<Jifty> object.  If you are writing command-line programs that
 want to use your libraries (as opposed to web services) you will need
 to call this yourself.
 

Modified: jifty/trunk/lib/Jifty/Action.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Action.pm	(original)
+++ jifty/trunk/lib/Jifty/Action.pm	Sun Feb 12 20:25:58 2006
@@ -139,7 +139,7 @@
 This routine, unsurprisingly, actually runs the action.
 
 If the result of the action is currently a success (validation did not
-fail), then calls L</take_action>, and finally L</cleanup>.
+fail), C<run> calls L</take_action>, and finally L</cleanup>.
 
 =cut
 
@@ -213,9 +213,9 @@
 
 =head2 cleanup
 
-Perform any action specific cleanup.  By default, does nothing.
+Perform any action-specific cleanup.  By default, does nothing.
 
-Runs after take_action -- whether or not take_action returns success.
+Runs after L</take_action> -- whether or not L</take_action> returns success.
 
 =cut
 

Modified: jifty/trunk/lib/Jifty/Bootstrap.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Bootstrap.pm	(original)
+++ jifty/trunk/lib/Jifty/Bootstrap.pm	Sun Feb 12 20:25:58 2006
@@ -9,7 +9,7 @@
 
 C<Jifty::Bootstrap> is an abstract base class for your application's
 bootstrapping.  Use it to set up initial data in your database when
-your application if first installed.
+your application is first installed.
 
 =cut
 
@@ -19,8 +19,9 @@
 
 =head2 run
 
-C<run> is the workhorse method for the Bootstrap class. This takes care of setting up 
-internal datastrutures and initializing things, in an application-dependent manner.
+C<run> is the workhorse method for the Bootstrap class.  This takes care of
+setting up internal data structures and initializing things in an
+application-dependent manner.
 
 =cut
 

Modified: jifty/trunk/lib/Jifty/Config.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Config.pm	(original)
+++ jifty/trunk/lib/Jifty/Config.pm	Sun Feb 12 20:25:58 2006
@@ -73,7 +73,7 @@
 C<JIFTY_CONFIG> environment variable or C<etc/config.yml> under the
 application's base directory.
 
-It uses the main contifuration file to find a vendor configuration
+It uses the main configuration file to find a vendor configuration
 file -- if it doesn't find a framework variable named 'VendorConfig',
 it will use the C<JIFTY_VENDOR_CONFIG> environment variable.
 

Modified: jifty/trunk/lib/Jifty/Dispatcher.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Dispatcher.pm	(original)
+++ jifty/trunk/lib/Jifty/Dispatcher.pm	Sun Feb 12 20:25:58 2006
@@ -286,7 +286,7 @@
         push @{ $pkg . '::ISA' }, $class;
     }
 
-    $class->export_to_level( 1, @_ );
+    $class->export_to_level( 1, @args );
 }
 
 ###################################################

Modified: jifty/trunk/lib/Jifty/Web.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Web.pm	(original)
+++ jifty/trunk/lib/Jifty/Web.pm	Sun Feb 12 20:25:58 2006
@@ -457,14 +457,14 @@
 
 C<MONIKER> is a unique designator of an action on a page.  The moniker
 is content-free and non-fattening, and may be auto-generated.  It is
-used to tie together argumentss that relate to the same action.
+used to tie together arguments that relate to the same action.
 
 C<ORDER> defines the order in which the action is run, with lower
 numerical values running first.
 
 C<ARGUMENTS> are passed to the L<Jifty::Action/new> method.  In
 addition, if the current request (C<$self->request>) contains an
-action with a matching moniker, any arguments thare are in that
+action with a matching moniker, any arguments that are in that
 requested action but not in the C<PARAMHASH> list are set.  This
 implements "sticky fields".
 


More information about the Jifty-commit mailing list