r53630 - in /trunk/libdbix-recordset-perl/debian: changelog patches/pod.patch patches/series patches/spelling.patch

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Fri Mar 5 14:45:03 UTC 2010


Author: gregoa
Date: Fri Mar  5 14:44:51 2010
New Revision: 53630

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=53630
Log:
New patches: pod.patch, spelling.patch.

Added:
    trunk/libdbix-recordset-perl/debian/patches/pod.patch
    trunk/libdbix-recordset-perl/debian/patches/spelling.patch
Modified:
    trunk/libdbix-recordset-perl/debian/changelog
    trunk/libdbix-recordset-perl/debian/patches/series

Modified: trunk/libdbix-recordset-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdbix-recordset-perl/debian/changelog?rev=53630&op=diff
==============================================================================
--- trunk/libdbix-recordset-perl/debian/changelog (original)
+++ trunk/libdbix-recordset-perl/debian/changelog Fri Mar  5 14:44:51 2010
@@ -16,6 +16,7 @@
   * Set Standards-Version to 3.8.4 (no changes).
   * Debhelper 7.
   * Split out changes to upstream code into patches.
+  * New patches: pod.patch, spelling.patch.
   * Convert to source format 3.0 (quilt).
 
  -- Ryan Niebur <ryanryan52 at gmail.com>  Tue, 01 Sep 2009 21:18:40 -0700

Added: trunk/libdbix-recordset-perl/debian/patches/pod.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdbix-recordset-perl/debian/patches/pod.patch?rev=53630&op=file
==============================================================================
--- trunk/libdbix-recordset-perl/debian/patches/pod.patch (added)
+++ trunk/libdbix-recordset-perl/debian/patches/pod.patch Fri Mar  5 14:44:51 2010
@@ -1,0 +1,288 @@
+Author: gregor herrmann <gregoa at debian.org>
+Description: pod fixes
+
+--- a/Intrors.pod
++++ b/Intrors.pod
+@@ -1,5 +1,9 @@
+ =pod
+ 
++=head1 NAME
++
++DBIx::Intrors - Embperl and DBIx::Recordset
++
+ =head1 Embperl and DBIx::Recordset
+ 
+ This introduction gives an overview how to use I<DBIx::Recordset> together
+--- a/Compat.pm
++++ b/Compat.pm
+@@ -612,6 +612,8 @@
+ 
+ Currently there are entry for
+ 
++=over
++
+ =item B<DBD::mSQL>
+ 
+ =item B<DBD::mysql>
+@@ -630,6 +632,8 @@
+ 
+ =item B<DBD::Informix>
+ 
++=back
++
+ if you detect an error in the definition or add an definition for a new
+ DBD driver, please mail it to the author.
+ 
+--- a/Recordset.pm
++++ b/Recordset.pm
+@@ -4211,6 +4211,8 @@
+ for the whole database and they will be use every time you create a new
+ DBIx::Recordset object, without specifying it every time.
+ 
++=over
++
+ =item B<!DataSource>
+ 
+ Specifies the database to which to connect. This information can be given in
+@@ -4361,12 +4363,12 @@
+ The value from this field from the last insert could be retrieved
+ by the function C<LastSerial>.
+ 
+-=item C<!Sequence>
++=item B<!Sequence>
+ 
+ Name of the sequence to use for this table when inserting a new record and
+ C<!Serial> is defind. Defaults to <tablename>_seq.
+ 
+-=item C<!SeqClass>
++=item B<!SeqClass>
+ 
+ Name and Parameter for a class that can generate unique sequence values. This is
+ a string that holds comma separated values. The first value is the class name and
+@@ -4549,8 +4551,6 @@
+ 
+ See also B<!Links> and B<WORKING WITH MULTIPLE TABLES> below
+ 
+-
+-
+ =item B<!Links>
+ 
+ This parameter can be used to link multiple tables together. It takes a
+@@ -4563,8 +4563,12 @@
+ occur in a link definition (see next paragraph). For a detailed description of
+ how links are handled, see B<WORKING WITH MULTIPLE TABLES> below.
+ 
++=back
++
+ =head2 Link Parameters
+ 
++=over
++
+ =item B<!MainField>
+ 
+ The B<!MailField> parameter holds a fieldname which is used to retrieve
+@@ -4664,10 +4668,14 @@
+                                         '!MergeFunc'    =>  sub { my ($a, $b) = @_ ; $a->{sum} += $b->{sum} ; },
+                                         '!PrimKey'      =>  'id'} ;
+ 
++=back
++
+ =head2 Where Parameters
+ 
+ The following parameters are used to build an SQL WHERE expression
+ 
++=over
++
+ =item B<$where>
+ 
+ Give an SQL WHERE expression literaly. If C<$where> is specified, all
+@@ -4797,9 +4805,12 @@
+ 
+         (name = 'Richter' or country = 'de') and id = 5
+                      
++=back
+ 
+ =head2 Search parameters
+ 
++=over
++
+ =item B<$start>
+ 
+ First row to fetch. The row specified here will appear as index 0 in
+@@ -4865,11 +4876,14 @@
+ 
+ See also B<!PrimKey>
+ 
++=back
+ 
+ =head2 Execute parameters
+ 
+ The following parameters specify which action is to be executed:
+ 
++=over
++
+ =item B<=search>
+ 
+ search data
+@@ -4890,6 +4904,7 @@
+ 
+ setup empty object
+ 
++=back
+ 
+ =head1 METHODS
+ 
+@@ -5183,7 +5198,7 @@
+ itself is destroyed. With this method you can make sure that every update is
+ really written to the db.
+ 
+-=item $set -> Dirty ()
++=item B<$set -E<gt> Dirty ()>
+ 
+ Returns true if there is at least one dirty row containing unflushed data.
+ 
+@@ -5227,20 +5242,20 @@
+ 
+ Returns the DBI statement handle of the last select.
+ 
+-=item $set -> TableName ()
++=item B<$set -E<gt> TableName ()>
+ 
+ Returns the name of the table of the recordset object.
+ 
+-=item $set -> TableNameWithOutFilter ()
++=item B<$set -E<gt> TableNameWithOutFilter ()>
+ 
+ Returns the name of the table of the recordset object, but removes
+ the string given with !TableFilter, if it is the prefix of the table name.
+ 
+-=item $set -> PrimKey ()
++=item B<$set -E<gt> PrimKey ()>
+ 
+ Returns the primary key given in the !PrimKey parameter.
+ 
+-=item $set -> TableFilter ()
++=item B<$set -E<gt> TableFilter ()>
+ 
+ Returns the table filter given in the !TableFilter parameter.
+ 
+@@ -5282,7 +5297,7 @@
+ there is no link for that field.
+ 
+ 
+-=item $set -> TableAttr ($key, $value, $table)
++=item B<$set -E<gt> TableAttr ($key, $value, $table)>
+ 
+ get and/or set an attribute of the table
+ 
+@@ -5302,13 +5317,13 @@
+ 
+ =back
+ 
+-=item $set -> Stats ()
++=item B<$set -E<gt> Stats ()>
+ 
+ Returns an hash ref with some statistical values.
+ 
+-=item $set -> LastError ()
++=item B<$set -E<gt> LastError ()>
+ 
+-=item DBIx::Recordset -> LastError ()
++=item B<DBIx::Recordset -E<gt> LastError ()>
+ 
+ Returns the last error message, if any. If called in an array context the first
+ element receives the last error message and the second the last error code.
+@@ -5754,11 +5769,13 @@
+ 
+ Returns a reference to an array of all fieldtypes for the given table.
+ 
++=over
++
+ =item $db -> do ($statement, $attribs, \%params)
+ 
+ Same as DBI. Executes a single SQL statement on the open database.
+ 
+-
++=back
+ 
+ =head2 $db -> CreateTables ($dbschema, $schemaname, $user, $setpriv, $alterconstraints)
+ 
+@@ -6092,6 +6109,8 @@
+ difference between various DBD drivers and their underlying database systems. 
+ Currently, there are definitions for:
+ 
++=over
++
+ =item B<DBD::mSQL>
+ 
+ =item B<DBD::mysql>
+@@ -6112,6 +6131,8 @@
+ 
+ =item B<DBD::InterBase>
+ 
++=back
++
+ DBIx::Recordset has been tested with all those DBD drivers (on Linux 2.0.32, except 
+ DBD::ODBC, which has been tested on Windows '95 using Access 7 and with MS SQL Server).
+ 
+@@ -6408,14 +6429,21 @@
+ 
+ =head1 SEE ALSO
+ 
++=over
++
+ =item Perl(1)
++
+ =item DBI(3)
++
+ =item DBIx::Compat(3)
++
+ =item HTML::Embperl(3) 
+ http://perl.apache.org/embperl/
++
+ =item Tie::DBI(3)
+ http://stein.cshl.org/~lstein/Tie-DBI/
+ 
++=back
+ 
+ =cut
+ 
+--- a/Recordset/DBSeq.pm
++++ b/Recordset/DBSeq.pm
+@@ -158,8 +158,11 @@
+ 
+ =head1 SEE ALSO
+ 
++=over
++
+ =item DBIx::Recordset
+ 
++=back
+ 
+ =cut
+     
+--- a/Recordset/FileSeq.pm
++++ b/Recordset/FileSeq.pm
+@@ -191,8 +191,11 @@
+ 
+ =head1 SEE ALSO
+ 
++=over
++
+ =item DBIx::Recordset
+ 
++=back
+ 
+ =cut
+     
+--- a/Database.pm
++++ b/Database.pm
+@@ -1503,7 +1503,7 @@
+ 
+ =head1 NAME
+ 
+-DBIx::Database / DBIx::Recordset - Perl extension for DBI recordsets
++DBIx::Database - Perl extension for DBI recordsets
+ 
+ =head1 SYNOPSIS
+ 

Modified: trunk/libdbix-recordset-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdbix-recordset-perl/debian/patches/series?rev=53630&op=diff
==============================================================================
--- trunk/libdbix-recordset-perl/debian/patches/series (original)
+++ trunk/libdbix-recordset-perl/debian/patches/series Fri Mar  5 14:44:51 2010
@@ -2,3 +2,5 @@
 Database.pm.patch
 Recordset.pm.patch
 test.pl.patch
+spelling.patch
+pod.patch

Added: trunk/libdbix-recordset-perl/debian/patches/spelling.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdbix-recordset-perl/debian/patches/spelling.patch?rev=53630&op=file
==============================================================================
--- trunk/libdbix-recordset-perl/debian/patches/spelling.patch (added)
+++ trunk/libdbix-recordset-perl/debian/patches/spelling.patch Fri Mar  5 14:44:51 2010
@@ -1,0 +1,98 @@
+Author: gregor herrmann <gregoa at debian.org>
+Description: spelling fixes
+
+--- a/Intrors.pod
++++ b/Intrors.pod
+@@ -4,7 +4,7 @@
+ 
+ This introduction gives an overview how to use I<DBIx::Recordset> together
+ with I<HTML::Embperl>. Since there are only a few I<Embperl> specific 
+-things herein, it should be also usefull for non I<Embperl> users.
++things herein, it should be also useful for non I<Embperl> users.
+ 
+ =head2 Overview
+ 
+--- a/Recordset.pm
++++ b/Recordset.pm
+@@ -4209,7 +4209,7 @@
+ You can also preset these parameters with the TableAttr method of 
+ DBIx::Database.  This allows you to presetup most parameters
+ for the whole database and they will be use every time you create a new
+-DBIx::Recordset object, without specifing it every time.
++DBIx::Recordset object, without specifying it every time.
+ 
+ =item B<!DataSource>
+ 
+@@ -4650,7 +4650,7 @@
+ 
+ Only for tieing a hash! Gives an reference to an function that is called when more then one
+ record for a given hash key is found to merge the records into one. The function receives
+-a refence to both records a arguments. If more the two records are found, the function is
++a reference to both records a arguments. If more the two records are found, the function is
+ called again for each following record, which is already merged data as first parameter.
+ 
+  The following example sets up a hash, that, when more then one record with the same id is
+@@ -5037,7 +5037,7 @@
+ Additonal all record of links with have the C<!OnDelete> set, are either
+ deleted or the correspending field is set to undef. What to do
+ is determinated by the constants C<odDELETE> and C<odCLEAR>. This is
+-very helpfull to guaratee the inetgrity of the database.
++very helpful to guaratee the inetgrity of the database.
+ 
+ B<params:> setup (only syntax 1), where
+ 
+@@ -5648,7 +5648,7 @@
+ =item $reconnect
+ 
+ If set, forces I<DBIx::Database> to C<undef> any preexisting database handle and call connect in any
+-case. This is usefull in together with I<Apache::DBI>. While the database connection are still kept
++case. This is useful in together with I<Apache::DBI>. While the database connection are still kept
+ open by I<Apache::DBI>, I<Apache::DBI> preforms a test if the handle is still vaild (which DBIx::Database
+ itself wouldn't).
+ 
+@@ -5765,10 +5765,10 @@
+ The CreateTables method is used to create an modify the schema of your database. 
+ The idea is to define the schema as a Perl data structure and give it to this function,
+ it will compare the actual schema of the database with the one provided and creates
+-new tables, new fields or drop fields as neccessary. It also sets the permission on the
++new tables, new fields or drop fields as necessary. It also sets the permission on the
+ tables and is able to create indices for the tables. It will B<never> drop a whole table!
+ NOTE: Create tables cannot deteminate changes of the datatype of a fields, because DBI is
+-not able to provide this information in a standart way.
++not able to provide this information in a standard way.
+ 
+ =over 4
+ 
+@@ -5913,7 +5913,7 @@
+ 
+ =item !Contraints
+ 
+-Used to define contraints. See example under C<!For>.
++Used to define constraints. See example under C<!For>.
+ 
+ =over 4
+ 
+--- a/Recordset/DBSeq.pm
++++ b/Recordset/DBSeq.pm
+@@ -128,8 +128,8 @@
+ =head1 DESCRIPTION
+ 
+ DBIx::Recordset::FileSeq generates unique numbers. State is kept in the
+-one table of a database accessable via DBI. With the new constructor you
+-give an open database handle and sepcify the the table where state should be kept.
++one table of a database accessible via DBI. With the new constructor you
++give an open database handle and specify the the table where state should be kept.
+ Optionaly you can give a min and
+ a max values, which will be used for new sequences.
+ 
+--- a/Recordset/FileSeq.pm
++++ b/Recordset/FileSeq.pm
+@@ -168,7 +168,7 @@
+ 
+ 
+ DBIx::Recordset::FileSeq generates unique numbers. State is kept in the
+-filesystem. With the new constructor you sepcify the directory
++filesystem. With the new constructor you specify the directory
+ where the state is kept. (First parameter is a dummy values, that will
+ receive the database handle from DBIx::Recordset, but you don't need it
+ when you use it without DBIx::Recordset). Optionaly you can give a min and




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