r62232 - in /trunk/libcgi-application-extra-plugin-bundle-perl/debian: ./ patches/ patches/CGI-Application-Plugin-AnyTemplate/

periapt-guest at users.alioth.debian.org periapt-guest at users.alioth.debian.org
Tue Aug 31 11:10:30 UTC 2010


Author: periapt-guest
Date: Tue Aug 31 11:09:49 2010
New Revision: 62232

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=62232
Log:
Patched pod errors in AnyTemplate

Added:
    trunk/libcgi-application-extra-plugin-bundle-perl/debian/patches/CGI-Application-Plugin-AnyTemplate/pod.patch
    trunk/libcgi-application-extra-plugin-bundle-perl/debian/patches/CGI-Application-Plugin-AnyTemplate/series
Removed:
    trunk/libcgi-application-extra-plugin-bundle-perl/debian/patches/CGI-Application-Plugin-AnyTemplate/spelling.patch
Modified:
    trunk/libcgi-application-extra-plugin-bundle-perl/debian/changelog
    trunk/libcgi-application-extra-plugin-bundle-perl/debian/make-module.sh
    trunk/libcgi-application-extra-plugin-bundle-perl/debian/patches/series

Modified: trunk/libcgi-application-extra-plugin-bundle-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcgi-application-extra-plugin-bundle-perl/debian/changelog?rev=62232&op=diff
==============================================================================
--- trunk/libcgi-application-extra-plugin-bundle-perl/debian/changelog (original)
+++ trunk/libcgi-application-extra-plugin-bundle-perl/debian/changelog Tue Aug 31 11:09:49 2010
@@ -13,6 +13,7 @@
   * Synced rules/make-modules.sh with similar package libcatalyst-modules-perl
   * Reviewed dependencies and related fields
   * Updated copyright from GPL to GPL-1
+  * Patched pod errors in AnyTemplate
 
  -- Nicholas Bamber <nicholas at periapt.co.uk>  Sat, 28 Aug 2010 10:30:18 +0100
 

Modified: trunk/libcgi-application-extra-plugin-bundle-perl/debian/make-module.sh
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcgi-application-extra-plugin-bundle-perl/debian/make-module.sh?rev=62232&op=diff
==============================================================================
--- trunk/libcgi-application-extra-plugin-bundle-perl/debian/make-module.sh (original)
+++ trunk/libcgi-application-extra-plugin-bundle-perl/debian/make-module.sh Tue Aug 31 11:09:49 2010
@@ -5,6 +5,9 @@
 PERL5LIB="$DESTDIR/usr/share/perl5/"
 ROOT=$PWD
 
+export QUILT_PATCH_OPTS="--unified-reject-files"
+export QUILT_DIFF_ARGS="-p ab --no-timestamps --no-index --color=auto"
+export QUILT_REFRESH_ARGS="-p ab --no-timestamps --no-index"
 export PERL5LIB
 
 echo "=========================================================================="

Added: trunk/libcgi-application-extra-plugin-bundle-perl/debian/patches/CGI-Application-Plugin-AnyTemplate/pod.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcgi-application-extra-plugin-bundle-perl/debian/patches/CGI-Application-Plugin-AnyTemplate/pod.patch?rev=62232&op=file
==============================================================================
--- trunk/libcgi-application-extra-plugin-bundle-perl/debian/patches/CGI-Application-Plugin-AnyTemplate/pod.patch (added)
+++ trunk/libcgi-application-extra-plugin-bundle-perl/debian/patches/CGI-Application-Plugin-AnyTemplate/pod.patch Tue Aug 31 11:09:49 2010
@@ -1,0 +1,74 @@
+Subject: Pod errors
+ * 'parameter' consistently mispelt as 'paramter'
+ * 'overridden' mispelt as 'overriden'
+Author: Nicholas Bamber <nicholas at periapt.co.uk>
+Last-Update: 2010-08-30
+--- CGI-Application-Plugin-AnyTemplate-0.18.orig/lib/CGI/Application/Plugin/AnyTemplate.pm
++++ CGI-Application-Plugin-AnyTemplate-0.18/lib/CGI/Application/Plugin/AnyTemplate.pm
+@@ -398,7 +398,7 @@
+ Normally, component embedding is handled by
+ L<CGI::Application::Plugin::AnyTemplate::ComponentHandler>.  If you want to
+ use a different class for this purpose, specify the class name as the
+-value of this paramter.
++value of this parameter.
+ 
+ It still has to provide the same interface as
+ L<CGI::Application::Plugin::AnyTemplate::ComponentHandler>.  See the source
+@@ -638,7 +638,7 @@
+ generated, you can do so with the C<template_filename_generator>
+ configuration parameter.
+ 
+-If you call C<load> with one paramter, it is taken to be either the
++If you call C<load> with one parameter, it is taken to be either the
+ filename or a reference to a string containing the template text:
+ 
+     my $template = $self->template->load('somefile');
+@@ -648,7 +648,7 @@
+ appropriate extension will be added for this template type.
+ 
+ If you call C<load> with more than one parameter, then
+-you can specify filename and configuration paramters directly:
++you can specify filename and configuration parameters directly:
+ 
+     my $template = $self->template->load(
+         file                        => 'some_file.tmpl',
+@@ -1039,7 +1039,7 @@
+ =head2 fill
+ 
+ Fill is a convenience method which in a single step creates the
+-template, fills it with the template paramters and returns its output.
++template, fills it with the template parameters and returns its output.
+ 
+ You can call it with or without a filename (or string ref).
+ 
+--- CGI-Application-Plugin-AnyTemplate-0.18.orig/lib/CGI/Application/Plugin/AnyTemplate/Base.pm
++++ CGI-Application-Plugin-AnyTemplate-0.18/lib/CGI/Application/Plugin/AnyTemplate/Base.pm
+@@ -287,7 +287,7 @@
+ 
+ This is a virtual method and must be defined in the subclass.
+ 
+-The following paramters are passed to the driver and available as keys of the
++The following parameters are passed to the driver and available as keys of the
+ driver's C<$self> object:
+ 
+      'driver_config' => ...    # hashref of driver-specific config
+@@ -370,7 +370,7 @@
+ 
+ =item render_template
+ 
+-This method must be overriden in a subclass.  It has the responsibility
++This method must be overridden in a subclass.  It has the responsibility
+ of filling the template in C<< $self->filename >> with the values in C<< $self->param >>
+ via the appropriate template system, and returning the output as either
+ a string or a reference to a string.
+--- CGI-Application-Plugin-AnyTemplate-0.18.orig/lib/CGI/Application/Plugin/AnyTemplate/Driver/HTMLTemplate.pm
++++ CGI-Application-Plugin-AnyTemplate-0.18/lib/CGI/Application/Plugin/AnyTemplate/Driver/HTMLTemplate.pm
+@@ -23,7 +23,7 @@
+ 
+     <TMPL_VAR NAME="cgiapp_embed('some_run_mode', param1, param2, 'literal string3')">
+ 
+-I<(Support for parameter passing is limited.  See the note on paramters below.)>
++I<(Support for parameter passing is limited.  See the note on parameters below.)>
+ 
+ This can be overridden by the following configuration variables:
+ 

Added: trunk/libcgi-application-extra-plugin-bundle-perl/debian/patches/CGI-Application-Plugin-AnyTemplate/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcgi-application-extra-plugin-bundle-perl/debian/patches/CGI-Application-Plugin-AnyTemplate/series?rev=62232&op=file
==============================================================================
--- trunk/libcgi-application-extra-plugin-bundle-perl/debian/patches/CGI-Application-Plugin-AnyTemplate/series (added)
+++ trunk/libcgi-application-extra-plugin-bundle-perl/debian/patches/CGI-Application-Plugin-AnyTemplate/series Tue Aug 31 11:09:49 2010
@@ -1,0 +1,1 @@
+pod.patch

Modified: trunk/libcgi-application-extra-plugin-bundle-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcgi-application-extra-plugin-bundle-perl/debian/patches/series?rev=62232&op=diff
==============================================================================
--- trunk/libcgi-application-extra-plugin-bundle-perl/debian/patches/series (original)
+++ trunk/libcgi-application-extra-plugin-bundle-perl/debian/patches/series Tue Aug 31 11:09:49 2010
@@ -1,1 +1,0 @@
-CGI-Application-Plugin-AnyTemplate/spelling.patch




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