Codebase list libdbix-class-perl / 6a26a92
start refreshing patch Krzysztof Krzyzaniak 15 years ago
1 changed file(s) with 10 addition(s) and 62 deletion(s). Raw diff Collapse all Expand all
0 Author: gregor herrmann <gregoa@debian.org>
1 Description: fix several pod errors
2 Bug: #478335
3
4 --- a/lib/DBIx/Class/Manual/Troubleshooting.pod
5 +++ b/lib/DBIx/Class/Manual/Troubleshooting.pod
6 @@ -47,7 +47,7 @@ correctly.
7
8 L<DBI> version 1.50 and L<DBD::Pg> 1.43 are known to work.
9
10 -=head2 ... Can't locate object method "source_name" via package ...
11 +=head2 Can't locate object method "source_name" via package
12
13 There's likely a syntax error in the table class referred to elsewhere
14 in this error message. In particular make sure that the package
15 --- a/lib/DBIx/Class/Storage/TxnScopeGuard.pm
16 +++ b/lib/DBIx/Class/Storage/TxnScopeGuard.pm
17 @@ -46,7 +46,7 @@ __END__
0 diff -ur libdbix-class-perl-0.08100/lib/DBIx/Class/ResultClass/HashRefInflator.pm libdbix-class-perl-0.08100.new/lib/DBIx/Class/ResultClass/HashRefInflator.pm
1 --- libdbix-class-perl-0.08100/lib/DBIx/Class/ResultClass/HashRefInflator.pm 2009-04-20 11:12:42.000000000 +0200
2 +++ libdbix-class-perl-0.08100.new/lib/DBIx/Class/ResultClass/HashRefInflator.pm 2009-04-21 19:33:23.000000000 +0200
3 @@ -5,7 +5,7 @@
184
195 =head1 NAME
206
21 -DBIx::Class::Storage::TxnScopeGuard
22 +DBIx::Class::Storage::TxnScopeGuard - L<Scope::Guard>-like objects
7 -DBIx::Class::ResultClass::HashRefInflator
8 +DBIx::Class::ResultClass::HashRefInflator - access data without objects
239
2410 =head1 SYNOPSIS
2511
26 --- a/lib/DBIx/Class/ResultSourceHandle.pm
27 +++ b/lib/DBIx/Class/ResultSourceHandle.pm
28 @@ -19,7 +19,7 @@ our $thaw_schema;
12 diff -ur libdbix-class-perl-0.08100/lib/DBIx/Class/ResultSourceHandle.pm libdbix-class-perl-0.08100.new/lib/DBIx/Class/ResultSourceHandle.pm
13 --- libdbix-class-perl-0.08100/lib/DBIx/Class/ResultSourceHandle.pm 2008-03-11 04:04:05.000000000 +0100
14 +++ libdbix-class-perl-0.08100.new/lib/DBIx/Class/ResultSourceHandle.pm 2009-04-21 19:27:50.000000000 +0200
15 @@ -20,7 +20,7 @@
2916
3017 =head1 NAME
3118
3421
3522 =head1 DESCRIPTION
3623
37 --- a/lib/DBIx/Class/ResultClass/HashRefInflator.pm
38 +++ b/lib/DBIx/Class/ResultClass/HashRefInflator.pm
39 @@ -5,7 +5,7 @@ use warnings;
40
41 =head1 NAME
42
43 -DBIx::Class::ResultClass::HashRefInflator
44 +DBIx::Class::ResultClass::HashRefInflator - access data without objects
45
46 =head1 SYNOPSIS
47
48 --- a/lib/DBIx/Class/Relationship/BelongsTo.pm
49 +++ b/lib/DBIx/Class/Relationship/BelongsTo.pm
50 @@ -72,6 +72,14 @@ sub belongs_to {
51 return 1;
52 }
53
54 +=head1 NAME
55 +
56 +DBIx::Class::Relationship::BelongsTo - create relationship between classes on foreign keys
57 +
58 +=head1 SEE ALSO
59 +
60 +L<DBIx::Class::Relationship>
61 +
62 =head1 AUTHORS
63
64 Alexander Hartmaier <Alexander.Hartmaier@t-systems.at>
65 --- a/lib/DBIx/Class/Manual/Cookbook.pod
66 +++ b/lib/DBIx/Class/Manual/Cookbook.pod
67 @@ -506,7 +506,7 @@ Employ the standard stringification tech
68 module.
69
70 To make an object stringify itself as a single column, use something
71 -like this (replace C<foo> with the column/method of your choice):
72 +like this (replace C<name> with the column/method of your choice):
73
74 use overload '""' => sub { shift->name}, fallback => 1;
75