1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
MARC::Record and its family
===========================
SYNOPSIS
The MARC::* series of modules create a simple object-oriented
abstraction of MARC record handling. The files are:
MARC::Doc::Tutorial
A tutorial explaining how to use MARC::Record.
MARC::Record
The core class for representing a single MARC record.
MARC::Field
Another core class for representing a single field in a record.
MARC::Batch
The basic object for access to a batch of one or more MARC records.
MARC::File
Base class for the MARC file.
MARC::File::USMARC
MARC::File::MicroLIF
Subclasses of MARC::File specific to the USMARC and MicroLIF formats
MARC::Lint
Extension to check MARC records for validity.
INSTALLATION
To install this module type the following:
perl Makefile.PL
make
make test
make install
DEPENDENCIES
MARC::Record now requires a perl version >= 5.8.2 for processing unicode
correctly.
COPYRIGHT AND LICENCE
Copyright (C) 2001-2013 by contributors:
2001-2007 Andy Lester <marc@petdance.com>
2002-2007 Ed Summers <ehs@pobox.net>
2003-2005 Eric Lease Morgan <emorgan@nd.edu>
2003 Morbus Iff
2004-2005 Bryan Baldus
2004 Mark Jordan
2007 Mike Rylander
2007 Dan Scott
2009 Bill Dueber
2010-2013 Galen Charlton <gmcharlt@gmail.com>
2010 Frédéric Demians <f.demians@tamil.fr>
2010 Dan Wells
2010 Alex Arnaud <alex.arnaud@biblibre.com>
2010 Colin Campbell <colin.campbell@ptfs-europe.com>
2013 Robin Sheat <robin@catalyst.net.nz>
This software is free software and may be distributed under the same
terms as Perl itself .
|