|
From: Chris W. <la...@us...> - 2001-10-11 13:09:29
|
Update of /cvsroot/openinteract/SPOPS/SPOPS/Iterator
In directory usw-pr-cvs1:/tmp/cvs-serv8815/SPOPS/Iterator
Modified Files:
DBI.pm LDAP.pm WrapList.pm
Log Message:
lots of cosmetic changes (extra spaces, moving L<blah> to L<blah|blah> format, ...)
Index: DBI.pm
===================================================================
RCS file: /cvsroot/openinteract/SPOPS/SPOPS/Iterator/DBI.pm,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** DBI.pm 2001/09/26 01:17:35 1.6
--- DBI.pm 2001/10/11 13:09:26 1.7
***************
*** 41,45 ****
DEBUG() && _w( 1, "Trying to retrieve idx ($self->{_DBI_RAW_COUNT}) with ",
"ID ($id) from class ($self->{_CLASS}" );
! $obj = eval { $object_class->fetch( $id,
{ skip_security => $self->{_SKIP_SECURITY} } ) };
--- 41,45 ----
DEBUG() && _w( 1, "Trying to retrieve idx ($self->{_DBI_RAW_COUNT}) with ",
"ID ($id) from class ($self->{_CLASS}" );
! $obj = eval { $object_class->fetch( $id,
{ skip_security => $self->{_SKIP_SECURITY} } ) };
***************
*** 181,185 ****
=head1 SEE ALSO
! L<SPOPS::Iterator>, L<SPOPS::DBI>
=head1 COPYRIGHT
--- 181,187 ----
=head1 SEE ALSO
! L<SPOPS::Iterator|SPOPS::Iterator>
!
! L<SPOPS::DBI|SPOPS::DBI>
=head1 COPYRIGHT
Index: LDAP.pm
===================================================================
RCS file: /cvsroot/openinteract/SPOPS/SPOPS/Iterator/LDAP.pm,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** LDAP.pm 2001/09/26 01:17:35 1.5
--- LDAP.pm 2001/10/11 13:09:26 1.6
***************
*** 172,177 ****
B<initialize()>
! Store the L<Net::LDAP::Message> object so we can peel off one record
! at a time, along with the various other pieces of information.
B<fetch_object()>
--- 172,178 ----
B<initialize()>
! Store the L<Net::LDAP::Message|Net::LDAP::Message> object so we can
! peel off one record at a time, along with the various other pieces of
! information.
B<fetch_object()>
***************
*** 186,194 ****
=head1 SEE ALSO
! L<SPOPS::Iterator>
! L<SPOPS::LDAP>
! L<Net::LDAP>
=head1 COPYRIGHT
--- 187,195 ----
=head1 SEE ALSO
! L<SPOPS::Iterator|SPOPS::Iterator>
! L<SPOPS::LDAP|SPOPS::LDAP>
! L<Net::LDAP|Net::LDAP>
=head1 COPYRIGHT
Index: WrapList.pm
===================================================================
RCS file: /cvsroot/openinteract/SPOPS/SPOPS/Iterator/WrapList.pm,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** WrapList.pm 2001/09/26 20:56:27 1.3
--- WrapList.pm 2001/10/11 13:09:26 1.4
***************
*** 79,87 ****
=head1 DESCRIPTION
! This is an implementation of the C<SPOPS::Iterator> interface so that
! we can use a common interface no matter whether an SPOPS
! implementation supports iterators or not. You can also ensure that
! display or other classes can be coded to only one interface since it
! is so simple to wrap a list in an iterator.
=head1 METHODS
--- 79,87 ----
=head1 DESCRIPTION
! This is an implementation of the L<SPOPS::Iterator|SPOPS::Iterator>
! interface so that we can use a common interface no matter whether an
! SPOPS implementation supports iterators or not. You can also ensure
! that display or other classes can be coded to only one interface since
! it is so simple to wrap a list in an iterator.
=head1 METHODS
***************
*** 95,99 ****
=head1 SEE ALSO
! L<SPOPS::Iterator>, L<SPOPS::DBI>
=head1 COPYRIGHT
--- 95,101 ----
=head1 SEE ALSO
! L<SPOPS::Iterator|SPOPS::Iterator>
!
! L<SPOPS::DBI|SPOPS::DBI>
=head1 COPYRIGHT
|