[Jifty-commit] r2029 - in jifty/trunk: lib lib/Jifty

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Wed Oct 18 17:39:57 EDT 2006


Author: evdb
Date: Wed Oct 18 17:39:57 2006
New Revision: 2029

Modified:
   jifty/trunk/AUTHORS
   jifty/trunk/lib/Jifty.pm
   jifty/trunk/lib/Jifty/API.pm
   jifty/trunk/lib/Jifty/Action.pm
   jifty/trunk/lib/Jifty/Dispatcher.pm
   jifty/trunk/lib/Jifty/Notification.pm
   jifty/trunk/lib/Jifty/Object.pm
   jifty/trunk/lib/Jifty/Request.pm
   jifty/trunk/lib/Jifty/Result.pm
   jifty/trunk/lib/Jifty/Test.pm

Log:
Minor fixes to pod


Modified: jifty/trunk/AUTHORS
==============================================================================
--- jifty/trunk/AUTHORS	(original)
+++ jifty/trunk/AUTHORS	Wed Oct 18 17:39:57 2006
@@ -17,3 +17,4 @@
 Liang-Bin Hsueh <hlb at bestpractical.com>
 Wolfgang Kinkeldei <wolfgang at kinkeldei.de>
 Paul Fenwick <pjf at perltraining.com.au>
+Edmund von der Burg <evdb at ecclestoad.co.uk>

Modified: jifty/trunk/lib/Jifty.pm
==============================================================================
--- jifty/trunk/lib/Jifty.pm	(original)
+++ jifty/trunk/lib/Jifty.pm	Wed Oct 18 17:39:57 2006
@@ -71,7 +71,7 @@
 This class method instantiates a new C<Jifty> object. This object
 deals with configuration files, logging and database handles for the
 system.  Before this method returns, it calls the application's C<start>
-method (i.e. C<MyApp->start>) to handle any application-specific startup.
+method (i.e. C<MyApp-E<gt>start>) to handle any application-specific startup.
 
 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 that

Modified: jifty/trunk/lib/Jifty/API.pm
==============================================================================
--- jifty/trunk/lib/Jifty/API.pm	(original)
+++ jifty/trunk/lib/Jifty/API.pm	Wed Oct 18 17:39:57 2006
@@ -120,7 +120,7 @@
 
 =head2 restrict POLARITY RESTRICTIONS
 
-Method that L</allow> and and L</deny> call internally; I<POLARITY> is
+Method that L</allow> and L</deny> call internally; I<POLARITY> is
 either C<allow> or C<deny>.  Allow and deny limits are evaluated in
 the order they're called.  The last limit that applies will be the one
 which takes effect.  Regexes are matched against the class; strings

Modified: jifty/trunk/lib/Jifty/Action.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Action.pm	(original)
+++ jifty/trunk/lib/Jifty/Action.pm	Wed Oct 18 17:39:57 2006
@@ -248,7 +248,7 @@
 
 =head2 setup
 
-.  C<setup> is expected to return a true value, or
+C<setup> is expected to return a true value, or
 L</run> will skip all other actions.
 
 By default, does nothing.

Modified: jifty/trunk/lib/Jifty/Dispatcher.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Dispatcher.pm	(original)
+++ jifty/trunk/lib/Jifty/Dispatcher.pm	Wed Oct 18 17:39:57 2006
@@ -122,7 +122,7 @@
 
 C<NAME> may either be a string, which must match the plugin name
 exactly, or a regular expression, which is matched against the plugin
-name.  The rule will be placed at the first boundry that it matches --
+name.  The rule will be placed at the first boundary that it matches --
 that is, given a C<before plugin qr/^Jifty::Plugin::Auth::/> and both
 a C<Jifty::Plugin::Auth::Basic> and a C<Jifty::Plugin::Auth::Complex>,
 the rules will be placed before the first.
@@ -927,7 +927,7 @@
 
 =head2 _compile_condition CONDITION
 
-Takes a condition defined as a simple string ad return it as a regex
+Takes a condition defined as a simple string and return it as a regex
 condition.
 
 =cut
@@ -995,7 +995,7 @@
 =item *
 
 A C<*> between two C</> characters, or between a C</> and end of string,
-should at match one or more non-slash characters:
+should match one or more non-slash characters:
 
     /foo/*/bar
     /foo/*/

Modified: jifty/trunk/lib/Jifty/Notification.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Notification.pm	(original)
+++ jifty/trunk/lib/Jifty/Notification.pm	Wed Oct 18 17:39:57 2006
@@ -74,7 +74,7 @@
 if mail was actually sent.  Note errors are not the only cause of mail
 not being sent -- for example, the recipients list could be empty.
 
-    Be aware that if you haven't set C<recipients>, this will fail silently
+Be aware that if you haven't set C<recipients>, this will fail silently
 and return without doing anything useful.
 
 =cut

Modified: jifty/trunk/lib/Jifty/Object.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Object.pm	(original)
+++ jifty/trunk/lib/Jifty/Object.pm	Wed Oct 18 17:39:57 2006
@@ -39,9 +39,9 @@
 =head2 PRIVATE _get_current_user
 
 Takes the ARGS paramhash passed to _init.
-     Find the current user. First, try to see if it's explicit.
-     After that, check the caller's current_user. After that, look
-     at Jifty->web->current_user
+Find the current user. First, try to see if it's explicit.
+After that, check the caller's current_user. After that, look
+at Jifty->web->current_user
 
 Fills in current_user with that value
 

Modified: jifty/trunk/lib/Jifty/Request.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Request.pm	(original)
+++ jifty/trunk/lib/Jifty/Request.pm	Wed Oct 18 17:39:57 2006
@@ -487,7 +487,7 @@
     return Jifty->web->session->get_continuation($self->continuation_id);
 }
 
-=head3 save_continuation
+=head2 save_continuation
 
 Saves the current request and response if we've been asked to.  If we
 save the continuation, we redirect to the next page -- the call to

Modified: jifty/trunk/lib/Jifty/Result.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Result.pm	(original)
+++ jifty/trunk/lib/Jifty/Result.pm	Wed Oct 18 17:39:57 2006
@@ -46,7 +46,7 @@
 
 =head2 success [BOOL]
 
-Gets or success if the action succeeded or failed -- this is an
+Gets or sets if the action succeeded or failed -- this is an
 alternate interface from C<failure> but has the same effect.
 
 =cut

Modified: jifty/trunk/lib/Jifty/Test.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Test.pm	(original)
+++ jifty/trunk/lib/Jifty/Test.pm	Wed Oct 18 17:39:57 2006
@@ -127,7 +127,7 @@
 
           use vars qw/$cache_key_prefix/;
 
-          $cache_key_prefix = "jifty-test-$$";
+          $cache_key_prefix = "jifty-test-" . $$;
         
           sub cache_key_prefix {
               $Jifty::Record::cache_key_prefix;


More information about the Jifty-commit mailing list