Skip to content

Commit

Permalink
Fix broken sections links in POD
Browse files Browse the repository at this point in the history
  • Loading branch information
Ronald J Kimball authored and ribasushi committed Jan 27, 2011
1 parent 66917da commit f92a9d7
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 15 deletions.
2 changes: 2 additions & 0 deletions lib/DBIx/Class.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Admin.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
6 changes: 3 additions & 3 deletions lib/DBIx/Class/DB.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions lib/DBIx/Class/Ordered.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/ResultSet.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions lib/DBIx/Class/Storage.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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>.
Expand Down
7 changes: 4 additions & 3 deletions lib/DBIx/Class/Storage/DBI/Replicated/Balancer.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Storage/DBI/Replicated/Pool.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f92a9d7

Please sign in to comment.