Revision history for OpenSRF
-0.01 Date/time
+0.9 2006/07
First version, released on an unsuspecting world.
requires 'Net::Server' => 0;
requires 'Time::HiRes' => 0;
requires 'Time::Local' => 0;
-requires 'UNIVERSAL::require' => 0
+requires 'UNIVERSAL::require' => 0;
requires 'XML::LibXML' => 0;
WriteAll;
OpenSRF
-The README is used to introduce the module and provide instructions on
-how to install the module, any machine dependencies it may have (for
-example C compilers and installed libraries) and any other information
-that should be provided before the module is installed.
-
-A README file is required for CPAN modules since CPAN extracts the README
-file from a module distribution so that people browsing the archive
-can use it to get an idea of the module's uses. It is usually a good idea
-to provide version information here so that people can decide whether
-fixes for the module are worth downloading.
-
+OpenSRF (Open OpenSRF (Open Scalable Request Framework) is a core
+subsystem of the Evergreen ILS.
INSTALLATION
You can also look for information at:
- RT, CPAN's request tracker
- http://rt.cpan.org/NoAuth/Bugs.html?Dist=OpenSRF
-
- AnnoCPAN, Annotated CPAN documentation
- http://annocpan.org/dist/OpenSRF
-
- CPAN Ratings
- http://cpanratings.perl.org/d/OpenSRF
-
- Search CPAN
- http://search.cpan.org/dist/OpenSRF
+ http://svn.open-ils.org/trac/OpenSRF
COPYRIGHT AND LICENCE
-Copyright (C) 2008 Equinox
+Copyright (C) 2008 Equinox Software, Inc.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
+++ /dev/null
-#!perl -T
-
-use strict;
-use warnings;
-use Test::More tests => 3;
-
-sub not_in_file_ok {
- my ($filename, %regex) = @_;
- open( my $fh, '<', $filename )
- or die "couldn't open $filename for reading: $!";
-
- my %violated;
-
- while (my $line = <$fh>) {
- while (my ($desc, $regex) = each %regex) {
- if ($line =~ $regex) {
- push @{$violated{$desc}||=[]}, $.;
- }
- }
- }
-
- if (%violated) {
- fail("$filename contains boilerplate text");
- diag "$_ appears on lines @{$violated{$_}}" for keys %violated;
- } else {
- pass("$filename contains no boilerplate text");
- }
-}
-
-sub module_boilerplate_ok {
- my ($module) = @_;
- not_in_file_ok($module =>
- 'the great new $MODULENAME' => qr/ - The great new /,
- 'boilerplate description' => qr/Quick summary of what the module/,
- 'stub function definition' => qr/function[12]/,
- );
-}
-
-TODO: {
- local $TODO = "Need to replace the boilerplate text";
-
- not_in_file_ok(README =>
- "The README is used..." => qr/The README is used/,
- "'version information here'" => qr/to provide version information/,
- );
-
- not_in_file_ok(Changes =>
- "placeholder date/time" => qr(Date/time)
- );
-
- module_boilerplate_ok('lib/OpenSRF.pm');
-
-
-}
-