r58213 - in /trunk/jifty/debian: changelog patches/series patches/spelling.patch

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Fri May 21 19:52:24 UTC 2010


Author: gregoa
Date: Fri May 21 19:52:13 2010
New Revision: 58213

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=58213
Log:
New patch to fix some spelling mistakes.

Added:
    trunk/jifty/debian/patches/spelling.patch
Modified:
    trunk/jifty/debian/changelog
    trunk/jifty/debian/patches/series

Modified: trunk/jifty/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/jifty/debian/changelog?rev=58213&op=diff
==============================================================================
--- trunk/jifty/debian/changelog (original)
+++ trunk/jifty/debian/changelog Fri May 21 19:52:13 2010
@@ -8,6 +8,7 @@
   * debian/copyright: update DEP5-style formatting.
   * Update patch headers (DEP3 style).
   * debian/control: remove duplicate dependencies (thanks lintian).
+  * New patch to fix some spelling mistakes.
 
  -- gregor herrmann <gregoa at debian.org>  Fri, 21 May 2010 21:05:17 +0200
 

Modified: trunk/jifty/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/jifty/debian/patches/series?rev=58213&op=diff
==============================================================================
--- trunk/jifty/debian/patches/series (original)
+++ trunk/jifty/debian/patches/series Fri May 21 19:52:13 2010
@@ -1,3 +1,4 @@
 fix-rest-test-format.patch
 manpage-has-bad-whatis-entry.patch
 follow-symlink.patch
+spelling.patch

Added: trunk/jifty/debian/patches/spelling.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/jifty/debian/patches/spelling.patch?rev=58213&op=file
==============================================================================
--- trunk/jifty/debian/patches/spelling.patch (added)
+++ trunk/jifty/debian/patches/spelling.patch Fri May 21 19:52:13 2010
@@ -1,0 +1,178 @@
+Description: spelling fixes
+Origin: vendor
+Forwarded: no
+Author: gregor herrmann <gregoa at debian.org>
+Last-Update: 2010-05-21
+
+--- a/lib/Jifty/Continuation.pm
++++ b/lib/Jifty/Continuation.pm
+@@ -225,7 +225,7 @@
+ Returns from the continuation by pulling out the stored request, and
+ setting that to be the active request.  This shouldn't need to be
+ called by hand -- use L<Jifty::Request/return_from_continuation>,
+-which ensures that all requirements are ment before it calls this.
++which ensures that all requirements are meant before it calls this.
+ 
+ =cut
+ 
+--- a/lib/Jifty/Manual/Actions.pod
++++ b/lib/Jifty/Manual/Actions.pod
+@@ -265,7 +265,7 @@
+ In fact, that's exactly how actions "return" values to other components 
+ in your application.
+ 
+-Mutiple action "return values" are possible and arbitrary data structures
++Multiple action "return values" are possible and arbitrary data structures
+ can be passed too:
+ 
+     $self->result->content( keys   => $keys );
+--- a/lib/Jifty/Manual/Actions_zhtw.pod
++++ b/lib/Jifty/Manual/Actions_zhtw.pod
+@@ -268,7 +268,7 @@
+ In fact, that's exactly how actions "return" values to other components 
+ in your application.
+ 
+-Mutiple action "return values" are possible and arbitrary data structures
++Multiple action "return values" are possible and arbitrary data structures
+ can be passed too:
+ 
+     $self->result->content( keys   => $keys );
+--- a/lib/Jifty/Action.pm
++++ b/lib/Jifty/Action.pm
+@@ -490,7 +490,7 @@
+         # It is in fact a form field for this action
+ 
+         my $sticky = 0;
+-        # $sticky can be overriden per-parameter
++        # $sticky can be overridden per-parameter
+         if ( defined $field_info->{sticky} ) {
+             $sticky = $field_info->{sticky};
+         }
+@@ -1105,7 +1105,7 @@
+             # Check for a collection spec
+             if ( $v->{'collection'} ) {
+ 
+-                # Load the display_from/value_from paramters
++                # Load the display_from/value_from parameters
+                 my $disp = $v->{'display_from'};
+                 my $val  = $v->{'value_from'};
+ 
+--- a/lib/Jifty/Manual/Cookbook.pod
++++ b/lib/Jifty/Manual/Cookbook.pod
+@@ -608,7 +608,7 @@
+ 
+   id => { result_of => $create, name => 'id' },
+ 
+-This line tells Jifty that you want to set the "id" paramter sent to the URL given in C<append>, to the "id" set when C<$create> is executed. That is, after running the action, Jifty will contact the URL and effectively perform:
++This line tells Jifty that you want to set the "id" parameter sent to the URL given in C<append>, to the "id" set when C<$create> is executed. That is, after running the action, Jifty will contact the URL and effectively perform:
+ 
+   set id => $create->result->content('id');
+ 
+--- a/lib/Jifty/Web/Form/Clickable.pm
++++ b/lib/Jifty/Web/Form/Clickable.pm
+@@ -288,7 +288,7 @@
+ 
+ =head2 parameter KEY VALUE
+ 
+-Sets the given HTTP paramter named C<KEY> to the given C<VALUE>.
++Sets the given HTTP parameter named C<KEY> to the given C<VALUE>.
+ 
+ =cut
+ 
+--- a/lib/Jifty/Manual/PageRegions.pod
++++ b/lib/Jifty/Manual/PageRegions.pod
+@@ -199,7 +199,7 @@
+ In this component we have one argument C<$collapsed> that controls either
+ we show link or information. By default we prefer hidden state and in this
+ case we show only the link with an C<onclick> action that refreshes the
+-current region, however value of the argument is overriden.
++current region, however value of the argument is overridden.
+ 
+ You can add any arguments you want to this component that may be required
+ to show the additional information, for example an id of some object, but
+--- a/lib/Jifty/Plugin/ViewDeclarePage/Page.pm
++++ b/lib/Jifty/Plugin/ViewDeclarePage/Page.pm
+@@ -174,7 +174,7 @@
+ Renders whole page from doctype till closing html tag. Takes
+ no arguments.
+ 
+-This method drives rendering of the page. Page is splitted
++This method drives rendering of the page. Page is split
+ into three major parts: header, body and footer. Each is
+ implemented as corresponding method with 'render_' prefix.
+ 
+--- a/lib/Jifty/Manual/Tutorial_zhtw.pod
++++ b/lib/Jifty/Manual/Tutorial_zhtw.pod
+@@ -453,7 +453,7 @@
+         $self->render_header();
+         body {
+ 
+-            # so that we dont show menu template here.
++            # so that we don't show menu template here.
+ 
+             $self->render_pre_content_hook();
+             $body_code->();
+--- a/lib/Jifty/Manual/jQueryMigrationGuide.pod
++++ b/lib/Jifty/Manual/jQueryMigrationGuide.pod
+@@ -115,7 +115,7 @@
+ 
+ jQuery does not build-in with JSON stringify function, but since it
+ neither altered the native Array, nor defined its own Hash, it's
+-prefered and fine to just use C<JSON.stringify> from C<json.js>.
++preferred and fine to just use C<JSON.stringify> from C<json.js>.
+ 
+ From:
+ 
+--- a/lib/Jifty/Plugin/CSSQuery.pm
++++ b/lib/Jifty/Plugin/CSSQuery.pm
+@@ -67,7 +67,7 @@
+ as Perl itself.
+ 
+ cssQuery is available for use in all personal or commercial projects
+-under both MIT and GPL licenses. This means taht you can choose the
++under both MIT and GPL licenses. This means that you can choose the
+ license that best suits your project and use it accordingly. See
+ L<http://jifty.com/> for current information on cssQuery copyrights
+ and licensing.
+--- a/lib/Jifty/Request/Mapper.pm
++++ b/lib/Jifty/Request/Mapper.pm
+@@ -110,7 +110,7 @@
+ 
+ Responsible for doing the actual mapping that L</query_parameters>
+ above sets up.  That is, takes magical query parameters and extracts
+-the values they were ment to have.
++the values they were meant to have.
+ 
+ =over
+ 
+--- a/lib/Jifty/Web/Form/Field.pm
++++ b/lib/Jifty/Web/Form/Field.pm
+@@ -138,7 +138,7 @@
+ 
+ =head2 name [VALUE]
+ 
+-Gets or sets the name of the field.  This is seperate from the name of
++Gets or sets the name of the field.  This is separate from the name of
+ the label (see L</label>) and the form input name (see
+ L</input_name>), though both default to this name.  This name should
+ match to a key in the L<Jifty::Action/arguments> hash.  If this
+@@ -664,7 +664,7 @@
+ Renders the div tag and javascript necessary to do autocompletion for
+ this form field. Deprecated internally in favor of
+ L</render_autocomplete_div> and L</autocomplete_javascript>, but kept
+-for backwards compatability since there exists external code that uses
++for backwards compatibility since there exists external code that uses
+ it.
+ 
+ =cut
+--- a/lib/Jifty/Web/Menu.pm
++++ b/lib/Jifty/Web/Menu.pm
+@@ -374,7 +374,7 @@
+ =head2 render_as_yui_menubar [PARAMHASH]
+ 
+ Render menubar with YUI menu, suitable for an application's menu.
+-It can support arbitary levels of submenu.
++It can support arbitrary levels of submenu.
+ 
+ =cut
+ 




More information about the Pkg-perl-cvs-commits mailing list