From: Ronald J Kimball <rkimball@pangeamedia.com> Date: Tue, 25 Jan 2011 15:53:10 +0000 (-0500) Subject: Fix broken sections links in POD X-Git-Tag: v0.08191~101 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f92a9d790b900dcb183ff62b4e2e770a53f01ac6;p=dbsrgits%2FDBIx-Class.git Fix broken sections links in POD --- diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index e68f87d..2510556 100644 --- a/lib/DBIx/Class.pm +++ b/lib/DBIx/Class.pm @@ -408,6 +408,8 @@ sszabo: Stephan Szabo <sszabo@bigpanda.com> talexb: Alex Beamish <talexb@gmail.com> +tamias: Ronald J Kimball <rkimball@pangeamedia.com> + teejay : Aaron Trevena <teejay@cpan.org> Todd Lipcon diff --git a/lib/DBIx/Class/Admin.pm b/lib/DBIx/Class/Admin.pm index c7640da..aba3691 100644 --- a/lib/DBIx/Class/Admin.pm +++ b/lib/DBIx/Class/Admin.pm @@ -324,7 +324,7 @@ sub _trigger_trace { =back -L<create> will generate sql for the supplied schema_class in sql_dir. The +C<create> will generate sql for the supplied schema_class in sql_dir. The flavour of sql to generate can be controlled by supplying a sqlt_type which should be a L<SQL::Translator> name. diff --git a/lib/DBIx/Class/DB.pm b/lib/DBIx/Class/DB.pm index 5d459f9..083b83d 100644 --- a/lib/DBIx/Class/DB.pm +++ b/lib/DBIx/Class/DB.pm @@ -203,19 +203,19 @@ sub result_source_instance { ****DEPRECATED**** -See L<class_resolver> +See L</class_resolver> =head2 dbi_commit ****DEPRECATED**** -Alias for L<txn_commit> +Alias for L</txn_commit> =head2 dbi_rollback ****DEPRECATED**** -Alias for L<txn_rollback> +Alias for L</txn_rollback> =end HIDE_BECAUSE_THIS_CLASS_IS_DEPRECATED diff --git a/lib/DBIx/Class/Ordered.pm b/lib/DBIx/Class/Ordered.pm index b6c4177..06e842c 100644 --- a/lib/DBIx/Class/Ordered.pm +++ b/lib/DBIx/Class/Ordered.pm @@ -759,11 +759,11 @@ sub _next_position_value { Shifts all siblings with B<positions values> in the range @between (inclusive) by one position as specified by $direction (left if < 0, right if > 0). By default simply increments/decrements each -L<position_column> value by 1, doing so in a way as to not violate +L</position_column> value by 1, doing so in a way as to not violate any existing constraints. Note that if you override this method and have unique constraints -including the L<position_column> the shift is not a trivial task. +including the L</position_column> the shift is not a trivial task. Refer to the implementation source of the default method for more information. diff --git a/lib/DBIx/Class/ResultSet.pm b/lib/DBIx/Class/ResultSet.pm index d826e03..02bceb7 100644 --- a/lib/DBIx/Class/ResultSet.pm +++ b/lib/DBIx/Class/ResultSet.pm @@ -4038,7 +4038,7 @@ Makes the resultset paged and specifies the page to retrieve. Effectively identical to creating a non-pages resultset and then calling ->page($page) on it. -If L<rows> attribute is not specified it defaults to 10 rows per page. +If L</rows> attribute is not specified it defaults to 10 rows per page. When you have a paged resultset, L</count> will only return the number of rows in the page. To get the total, use the L</pager> and call diff --git a/lib/DBIx/Class/Storage.pm b/lib/DBIx/Class/Storage.pm index 89c5ef8..db8c267 100644 --- a/lib/DBIx/Class/Storage.pm +++ b/lib/DBIx/Class/Storage.pm @@ -338,8 +338,8 @@ sub sql_maker { die "Virtual method!" } =head2 debug -Causes trace information to be emitted on the C<debugobj> object. -(or C<STDERR> if C<debugobj> has not specifically been set). +Causes trace information to be emitted on the L</debugobj> object. +(or C<STDERR> if L</debugobj> has not specifically been set). This is the equivalent to setting L</DBIC_TRACE> in your shell environment. @@ -410,7 +410,7 @@ Sets a callback to be executed each time a statement is run; takes a sub reference. Callback is executed as $sub->($op, $info) where $op is SELECT/INSERT/UPDATE/DELETE and $info is what would normally be printed. -See L<debugobj> for a better way. +See L</debugobj> for a better way. =cut @@ -507,7 +507,7 @@ sub columns_info_for { die "Virtual method!" } =head2 DBIC_TRACE If C<DBIC_TRACE> is set then trace information -is produced (as when the L<debug> method is set). +is produced (as when the L</debug> method is set). If the value is of the form C<1=/path/name> then the trace output is written to the file C</path/name>. diff --git a/lib/DBIx/Class/Storage/DBI/Replicated/Balancer.pm b/lib/DBIx/Class/Storage/DBI/Replicated/Balancer.pm index 279ad51..7b57972 100644 --- a/lib/DBIx/Class/Storage/DBI/Replicated/Balancer.pm +++ b/lib/DBIx/Class/Storage/DBI/Replicated/Balancer.pm @@ -27,9 +27,10 @@ This class defines the following attributes. =head2 auto_validate_every ($seconds) -If auto_validate has some sort of value, run the L<validate_replicants> every -$seconds. Be careful with this, because if you set it to 0 you will end up -validating every query. +If auto_validate has some sort of value, run +L<DBIx::Class::Storage::DBI::Replicated::Pool/validate_replicants> +every $seconds. Be careful with this, because if you set it to 0 you +will end up validating every query. =cut diff --git a/lib/DBIx/Class/Storage/DBI/Replicated/Pool.pm b/lib/DBIx/Class/Storage/DBI/Replicated/Pool.pm index 7ce7de9..1a8347d 100644 --- a/lib/DBIx/Class/Storage/DBI/Replicated/Pool.pm +++ b/lib/DBIx/Class/Storage/DBI/Replicated/Pool.pm @@ -363,7 +363,7 @@ This does a check to see if 1) each replicate is connected (or reconnectable), defined by L</maximum_lag>. Replicants that fail any of these tests are set to inactive, and thus removed from the replication pool. -This tests L<all_replicants>, since a replicant that has been previous marked +This tests L</all_replicants>, since a replicant that has been previous marked as inactive can be reactivated should it start to pass the validation tests again. See L<DBIx::Class::Storage::DBI> for more about checking if a replicating