From: Chris W. <la...@us...> - 2005-03-18 04:10:27
|
Update of /cvsroot/openinteract/OpenInteract2/pkg/base_page/OpenInteract2/Page In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18193/pkg/base_page/OpenInteract2/Page Modified Files: Database.pm File.pm Http.pm Log Message: OIN-155: add missing declarations where needed; also bump up all the copyrights... Index: Database.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/pkg/base_page/OpenInteract2/Page/Database.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Database.pm 18 Feb 2004 05:25:24 -0000 1.3 --- Database.pm 18 Mar 2005 04:09:44 -0000 1.4 *************** *** 8,11 **** --- 8,13 ---- use OpenInteract2::Context qw( CTX ); + $OpenInteract2::Page::Database::VERSION = sprintf("%d.%02d", q$Revision$ =~ /(\d+)\.(\d+)/); + my ( $log ); *************** *** 60,62 **** } ! 1; \ No newline at end of file --- 62,64 ---- } ! 1; Index: File.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/pkg/base_page/OpenInteract2/Page/File.pm,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** File.pm 10 Jun 2004 22:13:33 -0000 1.9 --- File.pm 18 Mar 2005 04:09:44 -0000 1.10 *************** *** 13,16 **** --- 13,18 ---- use OpenInteract2::Exception qw( oi_error ); + $OpenInteract2::Page::File::VERSION = sprintf("%d.%02d", q$Revision$ =~ /(\d+)\.(\d+)/); + # Use this to mark the beginning and end of the "good" content in a # page in the filesystem; this allows you to use an HTML editor to Index: Http.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/pkg/base_page/OpenInteract2/Page/Http.pm,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Http.pm 18 Feb 2004 05:25:24 -0000 1.6 --- Http.pm 18 Mar 2005 04:09:44 -0000 1.7 *************** *** 10,13 **** --- 10,15 ---- use OpenInteract2::Context qw( CTX ); + $OpenInteract2::Page::Http::VERSION = sprintf("%d.%02d", q$Revision$ =~ /(\d+)\.(\d+)/); + my ( $AGENT ); *************** *** 127,131 **** =head1 COPYRIGHT ! Copyright (c) 2001-2004 Chris Winters. All rights reserved. This library is free software; you can redistribute it and/or modify --- 129,133 ---- =head1 COPYRIGHT ! Copyright (c) 2001-2005 Chris Winters. All rights reserved. This library is free software; you can redistribute it and/or modify *************** *** 134,136 **** =head1 AUTHORS ! Chris Winters E<lt>ch...@cw...E<gt> \ No newline at end of file --- 136,138 ---- =head1 AUTHORS ! Chris Winters E<lt>ch...@cw...E<gt> |