Update of /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18193/lib/OpenInteract2 Modified Files: Cache.pm Config.pm Constants.pm ContentGenerator.pm Controller.pm CreateSecurity.pm FullTextIndexer.pm FullTextIterator.pm FullTextRules.pm I18N.pm Log.pm Observer.pm ResultsIterator.pm ResultsManage.pm SessionManager.pm Setup.pm URL.pm Util.pm Log Message: OIN-155: add missing declarations where needed; also bump up all the copyrights... Index: Cache.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/Cache.pm,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** Cache.pm 24 Jan 2005 16:55:33 -0000 1.12 --- Cache.pm 18 Mar 2005 04:09:48 -0000 1.13 *************** *** 8,11 **** --- 8,13 ---- use OpenInteract2::Context qw( CTX ); + $OpenInteract2::Cache::VERSION = sprintf("%d.%02d", q$Revision$ =~ /(\d+)\.(\d+)/); + # Returns: caching object (implementation-neutral) *************** *** 322,326 **** =head1 COPYRIGHT ! Copyright (c) 2001-2004 Chris Winters. All rights reserved. This library is free software; you can redistribute it and/or modify --- 324,328 ---- =head1 COPYRIGHT ! Copyright (c) 2001-2005 Chris Winters. All rights reserved. This library is free software; you can redistribute it and/or modify Index: Config.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/Config.pm,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** Config.pm 24 Jan 2005 16:56:15 -0000 1.15 --- Config.pm 18 Mar 2005 04:09:48 -0000 1.16 *************** *** 250,254 **** =head1 COPYRIGHT ! Copyright (c) 2001-2004 Chris Winters. All rights reserved. This library is free software; you can redistribute it and/or modify --- 250,254 ---- =head1 COPYRIGHT ! Copyright (c) 2001-2005 Chris Winters. All rights reserved. This library is free software; you can redistribute it and/or modify Index: Constants.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/Constants.pm,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** Constants.pm 26 Feb 2005 23:31:24 -0000 1.10 --- Constants.pm 18 Mar 2005 04:09:48 -0000 1.11 *************** *** 184,188 **** =head1 COPYRIGHT ! Copyright (c) 2001-2004 Chris Winters. All rights reserved. This library is free software; you can redistribute it and/or modify --- 184,188 ---- =head1 COPYRIGHT ! Copyright (c) 2001-2005 Chris Winters. All rights reserved. This library is free software; you can redistribute it and/or modify Index: ContentGenerator.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/ContentGenerator.pm,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** ContentGenerator.pm 17 Mar 2005 14:57:57 -0000 1.15 --- ContentGenerator.pm 18 Mar 2005 04:09:48 -0000 1.16 *************** *** 9,12 **** --- 9,14 ---- use OpenInteract2::Exception qw( oi_error ); + $OpenInteract2::ContentGenerator::VERSION = sprintf("%d.%02d", q$Revision$ =~ /(\d+)\.(\d+)/); + # Each value in %GENERATOR is a singleton for a particular content # generator, retrieved via instance() Index: Controller.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/Controller.pm,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** Controller.pm 14 Feb 2005 18:23:23 -0000 1.26 --- Controller.pm 18 Mar 2005 04:09:48 -0000 1.27 *************** *** 170,174 **** =head1 COPYRIGHT ! Copyright (c) 2001-2004 Chris Winters. All rights reserved. This library is free software; you can redistribute it and/or modify --- 170,174 ---- =head1 COPYRIGHT ! Copyright (c) 2001-2005 Chris Winters. All rights reserved. This library is free software; you can redistribute it and/or modify Index: CreateSecurity.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/CreateSecurity.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CreateSecurity.pm 6 Mar 2005 15:02:59 -0000 1.2 --- CreateSecurity.pm 18 Mar 2005 04:09:48 -0000 1.3 *************** *** 10,13 **** --- 10,15 ---- use SPOPS::Secure qw( :level :scope ); + $OpenInteract2::CreateSecurity::VERSION = sprintf("%d.%02d", q$Revision$ =~ /(\d+)\.(\d+)/); + my @FIELDS = qw( website_dir scope scope_id level Index: FullTextIndexer.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/FullTextIndexer.pm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** FullTextIndexer.pm 6 Jun 2004 19:56:51 -0000 1.1 --- FullTextIndexer.pm 18 Mar 2005 04:09:48 -0000 1.2 *************** *** 10,13 **** --- 10,15 ---- use OpenInteract2::FullTextIterator; + $OpenInteract2::FullTextIndexer::VERSION = sprintf("%d.%02d", q$Revision$ =~ /(\d+)\.(\d+)/); + my @FIELDS = qw( min_word_length max_word_length empty_message ); __PACKAGE__->mk_accessors( @FIELDS ); *************** *** 375,379 **** =head1 COPYRIGHT ! Copyright (c) 2004 Chris Winters. All rights reserved. This library is free software; you can redistribute it and/or modify --- 377,381 ---- =head1 COPYRIGHT ! Copyright (c) 2004-2005 Chris Winters. All rights reserved. This library is free software; you can redistribute it and/or modify Index: FullTextIterator.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/FullTextIterator.pm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** FullTextIterator.pm 6 Jun 2004 19:56:51 -0000 1.1 --- FullTextIterator.pm 18 Mar 2005 04:09:48 -0000 1.2 *************** *** 161,165 **** =head1 COPYRIGHT ! Copyright (c) 2001-2004 Chris Winters. All rights reserved. This library is free software; you can redistribute it and/or modify --- 161,165 ---- =head1 COPYRIGHT ! Copyright (c) 2001-2005 Chris Winters. All rights reserved. This library is free software; you can redistribute it and/or modify Index: FullTextRules.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/FullTextRules.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** FullTextRules.pm 9 Nov 2004 13:49:37 -0000 1.3 --- FullTextRules.pm 18 Mar 2005 04:09:48 -0000 1.4 *************** *** 223,227 **** =head1 COPYRIGHT ! Copyright (c) 2004 Chris Winters. All rights reserved. This library is free software; you can redistribute it and/or modify --- 223,227 ---- =head1 COPYRIGHT ! Copyright (c) 2004-2005 Chris Winters. All rights reserved. This library is free software; you can redistribute it and/or modify Index: I18N.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/I18N.pm,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** I18N.pm 2 Feb 2005 13:17:03 -0000 1.8 --- I18N.pm 18 Mar 2005 04:09:48 -0000 1.9 *************** *** 74,78 **** =head1 COPYRIGHT ! Copyright (c) 2003-2004 Chris Winters. All rights reserved. This library is free software; you can redistribute it and/or modify --- 74,78 ---- =head1 COPYRIGHT ! Copyright (c) 2003-2005 Chris Winters. All rights reserved. This library is free software; you can redistribute it and/or modify Index: Log.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/Log.pm,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Log.pm 17 Mar 2005 14:57:58 -0000 1.7 --- Log.pm 18 Mar 2005 04:09:48 -0000 1.8 *************** *** 9,12 **** --- 9,14 ---- @OpenInteract2::Log::EXPORT_OK = qw( uchk ); + $OpenInteract2::Log::VERSION = sprintf("%d.%02d", q$Revision$ =~ /(\d+)\.(\d+)/); + # Create a logging message by treating the first argument as a sprintf Index: Observer.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/Observer.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Observer.pm 14 Feb 2005 18:23:23 -0000 1.3 --- Observer.pm 18 Mar 2005 04:09:48 -0000 1.4 *************** *** 458,462 **** =head1 COPYRIGHT ! Copyright (c) 2004 Chris Winters. All rights reserved. This library is free software; you can redistribute it and/or modify --- 458,462 ---- =head1 COPYRIGHT ! Copyright (c) 2004-2005 Chris Winters. All rights reserved. This library is free software; you can redistribute it and/or modify Index: ResultsIterator.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/ResultsIterator.pm,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ResultsIterator.pm 5 Oct 2004 03:08:24 -0000 1.6 --- ResultsIterator.pm 18 Mar 2005 04:09:48 -0000 1.7 *************** *** 208,212 **** =head1 COPYRIGHT ! Copyright (c) 2001-2004 Chris Winters. All rights reserved. This library is free software; you can redistribute it and/or modify --- 208,212 ---- =head1 COPYRIGHT ! Copyright (c) 2001-2005 Chris Winters. All rights reserved. This library is free software; you can redistribute it and/or modify Index: ResultsManage.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/ResultsManage.pm,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** ResultsManage.pm 28 Feb 2005 04:35:21 -0000 1.13 --- ResultsManage.pm 18 Mar 2005 04:09:48 -0000 1.14 *************** *** 907,911 **** =head1 COPYRIGHT ! Copyright (c) 2001-2004 Chris Winters. All rights reserved. This library is free software; you can redistribute it and/or modify --- 907,911 ---- =head1 COPYRIGHT ! Copyright (c) 2001-2005 Chris Winters. All rights reserved. This library is free software; you can redistribute it and/or modify Index: SessionManager.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/SessionManager.pm,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** SessionManager.pm 27 Nov 2004 22:56:51 -0000 1.8 --- SessionManager.pm 18 Mar 2005 04:09:48 -0000 1.9 *************** *** 435,439 **** =head1 COPYRIGHT ! Copyright (c) 2001-2004 Chris Winters. All rights reserved. This library is free software; you can redistribute it and/or modify --- 435,439 ---- =head1 COPYRIGHT ! Copyright (c) 2001-2005 Chris Winters. All rights reserved. This library is free software; you can redistribute it and/or modify Index: Setup.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/Setup.pm,v retrieving revision 1.60 retrieving revision 1.61 diff -C2 -d -r1.60 -r1.61 *** Setup.pm 13 Feb 2005 20:20:05 -0000 1.60 --- Setup.pm 18 Mar 2005 04:09:48 -0000 1.61 *************** *** 360,364 **** =head1 COPYRIGHT ! Copyright (c) 2001-2004 Chris Winters. All rights reserved. This library is free software; you can redistribute it and/or modify --- 360,364 ---- =head1 COPYRIGHT ! Copyright (c) 2001-2005 Chris Winters. All rights reserved. This library is free software; you can redistribute it and/or modify Index: URL.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/URL.pm,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** URL.pm 2 Mar 2005 15:27:57 -0000 1.30 --- URL.pm 18 Mar 2005 04:09:48 -0000 1.31 *************** *** 10,13 **** --- 10,15 ---- use URI; + $OpenInteract2::URL::VERSION = sprintf("%d.%02d", q$Revision$ =~ /(\d+)\.(\d+)/); + use constant QUERY_ARG_SEPARATOR => '&'; *************** *** 645,649 **** =head1 COPYRIGHT ! Copyright (c) 2002-2004 intes.net. All rights reserved. =head1 AUTHORS --- 647,651 ---- =head1 COPYRIGHT ! Copyright (c) 2002-2005 intes.net. All rights reserved. =head1 AUTHORS Index: Util.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/Util.pm,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** Util.pm 28 Feb 2005 23:43:40 -0000 1.22 --- Util.pm 18 Mar 2005 04:09:48 -0000 1.23 *************** *** 686,690 **** =head1 COPYRIGHT ! Copyright (c) 2001-2004 Chris Winters. All rights reserved. This library is free software; you can redistribute it and/or modify --- 686,690 ---- =head1 COPYRIGHT ! Copyright (c) 2001-2005 Chris Winters. All rights reserved. This library is free software; you can redistribute it and/or modify |