[Jifty-commit] r6720 - in jifty/trunk: doc lib/Jifty lib/Jifty/View/Declare

Jifty commits jifty-commit at lists.jifty.org
Tue Mar 31 15:46:32 EDT 2009


Author: sartak
Date: Tue Mar 31 15:46:31 2009
New Revision: 6720

Modified:
   jifty/trunk/Changelog
   jifty/trunk/doc/jifty-web-form-etc
   jifty/trunk/lib/Jifty/View/Declare/Helpers.pm
   jifty/trunk/lib/Jifty/Web.pm

Log:
POD fixes

Modified: jifty/trunk/Changelog
==============================================================================
--- jifty/trunk/Changelog	(original)
+++ jifty/trunk/Changelog	Tue Mar 31 15:46:31 2009
@@ -3092,7 +3092,7 @@
   either directly or indirectly (via C<new>) [Jifty::I18N]
  * C<handle_request> now always calls
   Jifty::I18N->update directly or indirectly
-  (via C<Jifty::I18N->refresh>) [Jifty::Handler]
+  (via C<< Jifty::I18N->refresh >>) [Jifty::Handler]
  * Misc minor startup-time performance improvements
  * Only run onsubmit() if we have an onsubmit property
  * Support for controlling browser-based autocomplete on form fields

Modified: jifty/trunk/doc/jifty-web-form-etc
==============================================================================
--- jifty/trunk/doc/jifty-web-form-etc	(original)
+++ jifty/trunk/doc/jifty-web-form-etc	Tue Mar 31 15:46:31 2009
@@ -63,7 +63,7 @@
 C<Element> keeps a list of the accessors defined on that class
 (typically these are defined using C<Class::Accessor::Fast>, but not
 always). When C<Clickable> needs to clone itself, it walks the list
-C<($self->accessors)>, building up a hash of all the accessor
+C<< ($self->accessors) >>, building up a hash of all the accessor
 key-value pairs on itself, and passes these to C<new> on C<Field> or
 C<Link>, which calls accessors on itself for every C<key => value>
 pair in its argument list.

Modified: jifty/trunk/lib/Jifty/View/Declare/Helpers.pm
==============================================================================
--- jifty/trunk/lib/Jifty/View/Declare/Helpers.pm	(original)
+++ jifty/trunk/lib/Jifty/View/Declare/Helpers.pm	Tue Mar 31 15:46:31 2009
@@ -248,7 +248,7 @@
 
 =head2 render_param $action @args
 
-Takes an action and one or more arguments to pass to L<Jifty::Action->form_field>.
+Takes an action and one or more arguments to pass to L<< Jifty::Action->form_field >>.
 
 =cut
 
@@ -332,7 +332,7 @@
 
 =head3 render_region 
 
-A shortcut for C<Jifty::Web::PageRegion->new(@_)->render> which does the
+A shortcut for C<< Jifty::Web::PageRegion->new(@_)->render >> which does the
 L<Template::Declare> magic necessary to not mix its output with your current
 page's.
 

Modified: jifty/trunk/lib/Jifty/Web.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Web.pm	(original)
+++ jifty/trunk/lib/Jifty/Web.pm	Tue Mar 31 15:46:31 2009
@@ -1101,7 +1101,7 @@
 
 =head3 add_css FILE1, FILE2, ...
 
-Pushes files onto C<Jifty->web->css_files>
+Pushes files onto C<< Jifty->web->css_files >>
 
 =cut
 
@@ -1172,7 +1172,7 @@
 
 =head3 add_javascript FILE1, FILE2, ...
 
-Pushes files onto C<Jifty->web->javascript_libs>
+Pushes files onto C<< Jifty->web->javascript_libs >>
 
 =cut
 
@@ -1202,7 +1202,7 @@
 
 =head3 add_external_javascript URL1, URL2, ...
 
-Pushes urls onto C<Jifty->web->external_javascript_libs>
+Pushes urls onto C<< Jifty->web->external_javascript_libs >>
 
 =cut
 


More information about the Jifty-commit mailing list