ac9bcc212918265394699203e04756ddd681e4dc
[Biblio-RFID.git] / README
1 RFID-Biblio
2
3 This is set of tools to use different RFID readers for library use.
4
5 Main idea is to develop simple API to reader, and than provide useful
6 abstractions on top of it to quickly write applications to respond on
7 tags which come in range of RFID reader.
8
9 scripts/RFID-JSONP-server.pl is example of such application. It's local
10 interface to RFID reader and JSONP REST server.
11
12 examples/koha-rfid.js is jQuery based JavaScript code which can be inserted
13 in Koha Library System to provide overlay with tags in range and check-in/check-out
14 form-fill functionality.
15
16 Currently supported readers:
17
18  * 3M 810  - RFID::Biblio::3M810
19  * CPR-M02 - RFID::Biblio::CPRM02
20  * OpenPCD, The Omnikey CardMan 5121 and 5321 - RFID::Biblio::librfid
21
22 For status of each implementation see pod documentation inside them.
23
24
25 INSTALLATION
26
27 To install this module, run the following commands:
28
29         perl Makefile.PL
30         make
31         make test
32         make install
33
34 SUPPORT AND DOCUMENTATION
35
36 After installing, you can find documentation for this module with the
37 perldoc command.
38
39     perldoc RFID::Biblio
40
41 You can also look for information at:
42
43     RT, CPAN's request tracker
44         http://rt.cpan.org/NoAuth/Bugs.html?Dist=RFID-Biblio
45
46     AnnoCPAN, Annotated CPAN documentation
47         http://annocpan.org/dist/RFID-Biblio
48
49     CPAN Ratings
50         http://cpanratings.perl.org/d/RFID-Biblio
51
52     Search CPAN
53         http://search.cpan.org/dist/RFID-Biblio/
54
55
56 LICENSE AND COPYRIGHT
57
58 Copyright (C) 2010 Dobrica Pavlinusic
59
60 This program is free software; you can redistribute it and/or modify
61 it under the terms of the GNU General Public License as published by
62 the Free Software Foundation; version 2 dated June, 1991 or at your option
63 any later version.
64
65 This program is distributed in the hope that it will be useful,
66 but WITHOUT ANY WARRANTY; without even the implied warranty of
67 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
68 GNU General Public License for more details.
69
70 A copy of the GNU General Public License is available in the source tree;
71 if not, write to the Free Software Foundation, Inc.,
72 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
73