kohabug 2417 Removing hardcoded query limit from reports
[koha.git] / C4 / Reports.pm
1 package C4::Reports;
2
3 # Copyright 2007 Liblime Ltd
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20 use strict;
21 use CGI;
22
23 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
24 use C4::Context;
25 use C4::Output;
26 use XML::Simple;
27 use XML::Dumper;
28 use C4::Debug;
29 # use Smart::Comments;
30 # use Data::Dumper;
31
32 BEGIN {
33         # set the version for version checking
34         $VERSION = 0.12;
35         require Exporter;
36         @ISA = qw(Exporter);
37         @EXPORT = qw(
38                 get_report_types get_report_areas get_columns build_query get_criteria
39                 save_report get_saved_reports execute_query get_saved_report create_compound run_compound
40                 get_column_type get_distinct_values save_dictionary get_from_dictionary
41                 delete_definition delete_report format_results get_sql
42         );
43 }
44
45 our %table_areas;
46 $table_areas{'1'} =
47   [ 'borrowers', 'statistics','items', 'biblioitems' ];    # circulation
48 $table_areas{'2'} = [ 'items', 'biblioitems', 'biblio' ];   # catalogue
49 $table_areas{'3'} = [ 'borrowers' ];        # patrons
50 $table_areas{'4'} = ['aqorders', 'biblio', 'items'];        # acquisitions
51 $table_areas{'5'} = [ 'borrowers', 'accountlines' ];        # accounts
52 our %keys;
53 $keys{'1'} = [
54     'statistics.borrowernumber=borrowers.borrowernumber',
55     'items.itemnumber = statistics.itemnumber',
56     'biblioitems.biblioitemnumber = items.biblioitemnumber'
57 ];
58 $keys{'2'} = [
59     'items.biblioitemnumber=biblioitems.biblioitemnumber',
60     'biblioitems.biblionumber=biblio.biblionumber'
61 ];
62 $keys{'3'} = [ ];
63 $keys{'4'} = [
64         'aqorders.biblionumber=biblio.biblionumber',
65         'biblio.biblionumber=items.biblionumber'
66 ];
67 $keys{'5'} = ['borrowers.borrowernumber=accountlines.borrowernumber'];
68
69 # have to do someting here to know if its dropdown, free text, date etc
70
71 our %criteria;
72 $criteria{'1'} = [
73     'statistics.type',   'borrowers.categorycode',
74     'statistics.branch',
75     'biblioitems.publicationyear|date',
76     'items.dateaccessioned|date'
77 ];
78 $criteria{'2'} =
79   [ 'items.holdingbranch', 'items.homebranch' ,'items.itemlost', 'items.location', 'items.ccode'];
80 $criteria{'3'} = ['borrowers.branchcode'];
81 $criteria{'4'} = ['aqorders.datereceived|date'];
82 $criteria{'5'} = ['borrowers.branchcode'];
83
84 if (C4::Context->preference('item-level_itypes')) {
85     unshift @{ $criteria{'1'} }, 'items.itype';
86     unshift @{ $criteria{'2'} }, 'items.itype';
87 } else {
88     unshift @{ $criteria{'1'} }, 'biblioitems.itemtype';
89     unshift @{ $criteria{'2'} }, 'biblioitems.itemtype';
90 }
91
92 =head1 NAME
93    
94 C4::Reports - Module for generating reports 
95
96 =head1 SYNOPSIS
97
98   use C4::Reports;
99
100 =head1 DESCRIPTION
101
102
103 =head1 METHODS
104
105 =over 2
106
107 =cut
108
109 =item get_report_types()
110
111 This will return a list of all the available report types
112
113 =cut
114
115 sub get_report_types {
116     my $dbh = C4::Context->dbh();
117
118     # FIXME these should be in the database perhaps
119     my @reports = ( 'Tabular', 'Summary', 'Matrix' );
120     my @reports2;
121     for ( my $i = 0 ; $i < 3 ; $i++ ) {
122         my %hashrep;
123         $hashrep{id}   = $i + 1;
124         $hashrep{name} = $reports[$i];
125         push @reports2, \%hashrep;
126     }
127     return ( \@reports2 );
128
129 }
130
131 =item get_report_areas()
132
133 This will return a list of all the available report areas
134
135 =cut
136
137 sub get_report_areas {
138     my $dbh = C4::Context->dbh();
139
140     # FIXME these should be in the database
141     my @reports = ( 'Circulation', 'Catalog', 'Patrons', 'Acquisitions', 'Accounts');
142     my @reports2;
143     for ( my $i = 0 ; $i < 5 ; $i++ ) {
144         my %hashrep;
145         $hashrep{id}   = $i + 1;
146         $hashrep{name} = $reports[$i];
147         push @reports2, \%hashrep;
148     }
149     return ( \@reports2 );
150
151 }
152
153 =item get_all_tables()
154
155 This will return a list of all tables in the database 
156
157 =cut
158
159 sub get_all_tables {
160     my $dbh   = C4::Context->dbh();
161     my $query = "SHOW TABLES";
162     my $sth   = $dbh->prepare($query);
163     $sth->execute();
164     my @tables;
165     while ( my $data = $sth->fetchrow_arrayref() ) {
166         push @tables, $data->[0];
167     }
168     $sth->finish();
169     return ( \@tables );
170
171 }
172
173 =item get_columns($area)
174
175 This will return a list of all columns for a report area
176
177 =cut
178
179 sub get_columns {
180
181     # this calls the internal fucntion _get_columns
182     my ($area,$cgi) = @_;
183     my $tables = $table_areas{$area};
184     my @allcolumns;
185     my $first = 1;
186     foreach my $table (@$tables) {
187         my @columns = _get_columns($table,$cgi, $first);
188         $first = 0;
189         push @allcolumns, @columns;
190     }
191     return ( \@allcolumns );
192 }
193
194 sub _get_columns {
195     my ($tablename,$cgi, $first) = @_;
196     my $dbh         = C4::Context->dbh();
197     my $sth         = $dbh->prepare("show columns from $tablename");
198     $sth->execute();
199     my @columns;
200         my $column_defs = _get_column_defs($cgi);
201         my %tablehash;
202         $tablehash{'table'}=$tablename;
203     $tablehash{'__first__'} = $first;
204         push @columns, \%tablehash;
205     while ( my $data = $sth->fetchrow_arrayref() ) {
206         my %temphash;
207         $temphash{'name'}        = "$tablename.$data->[0]";
208         $temphash{'description'} = $column_defs->{"$tablename.$data->[0]"};
209         push @columns, \%temphash;
210     }
211     $sth->finish();
212     return (@columns);
213 }
214
215 =item build_query($columns,$criteria,$orderby,$area)
216
217 This will build the sql needed to return the results asked for, 
218 $columns is expected to be of the format tablename.columnname.
219 This is what get_columns returns.
220
221 =cut
222
223 sub build_query {
224     my ( $columns, $criteria, $orderby, $area, $totals, $definition ) = @_;
225 ### $orderby
226     my $keys   = $keys{$area};
227     my $tables = $table_areas{$area};
228
229     my $sql =
230       _build_query( $tables, $columns, $criteria, $keys, $orderby, $totals, $definition );
231     return ($sql);
232 }
233
234 sub _build_query {
235     my ( $tables, $columns, $criteria, $keys, $orderby, $totals, $definition) = @_;
236 ### $orderby
237     # $keys is an array of joining constraints
238     my $dbh           = C4::Context->dbh();
239     my $joinedtables  = join( ',', @$tables );
240     my $joinedcolumns = join( ',', @$columns );
241     my $joinedkeys    = join( ' AND ', @$keys );
242     my $query =
243       "SELECT $totals $joinedcolumns FROM $tables->[0] ";
244         for (my $i=1;$i<@$tables;$i++){
245                 $query .= "LEFT JOIN $tables->[$i] on ($keys->[$i-1]) ";
246         }
247
248     if ($criteria) {
249                 $criteria =~ s/AND/WHERE/;
250         $query .= " $criteria";
251     }
252         if ($definition){
253                 my @definitions = split(',',$definition);
254                 my $deftext;
255                 foreach my $def (@definitions){
256                         my $defin=get_from_dictionary('',$def);
257                         $deftext .=" ".$defin->[0]->{'saved_sql'};
258                 }
259                 if ($query =~ /WHERE/i){
260                         $query .= $deftext;
261                 }
262                 else {
263                         $deftext  =~ s/AND/WHERE/;
264                         $query .= $deftext;                     
265                 }
266         }
267     if ($totals) {
268         my $groupby;
269         my @totcolumns = split( ',', $totals );
270         foreach my $total (@totcolumns) {
271             if ( $total =~ /\((.*)\)/ ) {
272                 if ( $groupby eq '' ) {
273                     $groupby = " GROUP BY $1";
274                 }
275                 else {
276                     $groupby .= ",$1";
277                 }
278             }
279         }
280         $query .= $groupby;
281     }
282     if ($orderby) {
283         $query .= $orderby;
284     }
285     return ($query);
286 }
287
288 =item get_criteria($area,$cgi);
289
290 Returns an arraref to hashrefs suitable for using in a tmpl_loop. With the criteria and available values.
291
292 =cut
293
294 sub get_criteria {
295     my ($area,$cgi) = @_;
296     my $dbh    = C4::Context->dbh();
297     my $crit   = $criteria{$area};
298         my $column_defs = _get_column_defs($cgi);
299     my @criteria_array;
300     foreach my $localcrit (@$crit) {
301         my ( $value, $type )   = split( /\|/, $localcrit );
302         my ( $table, $column ) = split( /\./, $value );
303         if ( $type eq 'date' ) {
304                         my %temp;
305             $temp{'name'}   = $value;
306             $temp{'date'}   = 1;
307                         $temp{'description'} = $column_defs->{$value};
308             push @criteria_array, \%temp;
309         }
310         else {
311
312             my $query =
313               "SELECT distinct($column) as availablevalues FROM $table";
314             my $sth = $dbh->prepare($query);
315             $sth->execute();
316             my @values;
317             while ( my $row = $sth->fetchrow_hashref() ) {
318                 push @values, $row;
319                 ### $row;
320             }
321             $sth->finish();
322             my %temp;
323             $temp{'name'}   = $value;
324                         $temp{'description'} = $column_defs->{$value};
325             $temp{'values'} = \@values;
326             push @criteria_array, \%temp;
327         }
328     }
329     return ( \@criteria_array );
330 }
331
332 =item execute_query
333
334 =head2 ($results, $total) = execute_query($sql, $type, $offset, $limit, $format, $id)
335
336     When passed C<$sql>, this function returns an array ref containing a result set
337     suitably formatted for display in html or for output as a flat file when passed in
338     C<$format> and C<$id>.  Valid values for C<$format> are 'text,' 'tab,' 'csv,' or 'url.
339     C<$sql>, C<$type>, C<$offset>, and C<$limit> are required parameters. If a valid
340     C<$format> is passed in, C<$offset> and C<$limit> are ignored for obvious reasons.
341     A LIMIT specified by the user in a user-supplied SQL query WILL apply in any case.
342
343 =cut
344
345 sub execute_query ($$$$;$$) {
346     my ( $sql, $type, $offset, $limit, $format, $id ) = @_;
347     my @params;
348     my $total = 0;
349     my ($useroffset, $userlimit);
350     my $dbh = C4::Context->dbh();
351     unless ($format eq 'text' || $format eq 'tab' || $format eq 'csv' || $format eq 'url'){
352         # Grab offset/limit from user supplied LIMIT and drop the LIMIT so we can control pagination
353         if ($sql =~ /LIMIT/i) {
354             $sql =~ s/LIMIT\W?(\d+)?\,?\W+?(\d+)//ig;
355             $debug and warn "User has supplied LIMIT\n";
356             $useroffset = $1;
357             $userlimit = $2;
358             $debug and warn "User supplied offset = $useroffset, limit = $userlimit\n";
359             $offset += $useroffset if $useroffset;
360             # keep track of where we are if there is a user supplied LIMIT
361             if ( $offset + $limit > $userlimit ) {
362                 $limit = $userlimit - $offset;
363             }
364         }
365         my $countsql = $sql;
366         $sql .= " LIMIT ?, ?";
367         $debug and warn "Passing query with params offset = $offset, limit = $limit\n";
368         @params = ($offset, $limit);
369         # Modify the query passed in to create a count query... (I think this covers all cases -crn)
370         $countsql =~ s/\bSELECT\W+(?:\w+\W+){1,}?FROM\b|\bSELECT\W\*\WFROM\b/SELECT count(*) FROM /ig;
371         $debug and warn "original query: $sql\n";
372         $debug and warn "count query: $countsql\n";
373         my $sth1 = $dbh->prepare($countsql);
374         $sth1->execute();
375         $total = $sth1->fetchrow();
376         $debug and warn "total records for this query: $total\n";
377         $total = $userlimit if defined($userlimit) and $userlimit < $total;     # we will never exceed a user defined LIMIT and...
378         $userlimit = $total if defined($userlimit) and $userlimit > $total;     # we will never exceed the total number of records available to satisfy the query
379     }
380     my $sth = $dbh->prepare($sql);
381     $sth->execute(@params);
382     my $colnames=$sth->{'NAME'};
383     my @results;
384     my $row;
385     my %temphash;
386     $row = join ('</th><th>',@$colnames);
387     $row = "<tr><th>$row</th></tr>";
388     $temphash{'row'} = $row;
389     push @results, \%temphash;
390     my $string;
391     if ($format eq 'tab') {
392         $string = join("\t",@$colnames);
393     }
394     if ($format eq 'csv') {
395         $string = join(",",@$colnames);
396     }
397     my @xmlarray;
398     while ( my @data = $sth->fetchrow_array() ) {
399         # if the field is a date field, it needs formatting
400         foreach my $data (@data) {
401             next unless $data =~ C4::Dates->regexp("iso");
402             my $date = C4::Dates->new($data, "iso");
403             $data = $date->output();
404         }
405         # tabular
406         my %temphash;
407         my $row = join( '</td><td>', @data );
408         $row = "<tr><td>$row</td></tr>";
409         $temphash{'row'} = $row;
410         if ( $format eq 'text' ) {
411             $string .= "\n" . $row;
412         }
413         if ($format eq 'tab' ){
414             $row = join("\t",@data);
415             $string .="\n" . $row;
416         }
417         if ($format eq 'csv' ){
418             $row = join(",",@data);
419             $string .="\n" . $row;
420         }
421         if ($format eq 'url'){
422             my $temphash;
423             @$temphash{@$colnames}=@data;
424             push @xmlarray,$temphash;
425         }
426         push @results, \%temphash;
427     }
428     if ( $format eq 'text' || $format eq 'tab' || $format eq 'csv' ) {
429         return $string;
430     }
431     elsif ($format eq 'url') {
432         my $url = "/cgi-bin/koha/reports/guided_reports.pl?phase=retrieve%20results&id=$id";
433         my $dump = new XML::Dumper;
434         my $xml = $dump->pl2xml( \@xmlarray );
435         store_results($id,$xml);
436         return $url;
437     }
438     else {
439         return ( \@results, $total );
440     }
441 }
442
443 =item save_report($sql,$name,$type,$notes)
444
445 Given some sql and a name this will saved it so that it can resued
446
447 =cut
448
449 sub save_report {
450     my ( $sql, $name, $type, $notes ) = @_;
451     my $dbh = C4::Context->dbh();
452     my $query =
453 "INSERT INTO saved_sql (borrowernumber,date_created,last_modified,savedsql,report_name,type,notes)  VALUES (?,now(),now(),?,?,?,?)";
454     my $sth = $dbh->prepare($query);
455     $sth->execute( 0, $sql, $name, $type, $notes );
456     $sth->finish();
457
458 }
459
460 sub store_results {
461         my ($id,$xml)=@_;
462         my $dbh = C4::Context->dbh();
463         my $query = "SELECT * FROM saved_reports WHERE report_id=?";
464         my $sth = $dbh->prepare($query);
465         $sth->execute($id);
466         if (my $data=$sth->fetchrow_hashref()){
467                 my $query2 = "UPDATE saved_reports SET report=?,date_run=now() WHERE report_id=?";
468                 my $sth2 = $dbh->prepare($query2);
469             $sth2->execute($xml,$id);
470                 $sth2->finish();
471         }
472         else {
473                 my $query2 = "INSERT INTO saved_reports (report_id,report,date_run) VALUES (?,?,now())";
474                 my $sth2 = $dbh->prepare($query2);
475                 $sth2->execute($id,$xml);
476                 $sth2->finish();
477         }
478         $sth->finish();
479 }
480
481 sub format_results {
482         my ($id) = @_;
483         my $dbh = C4::Context->dbh();
484         my $query = "SELECT * FROM saved_reports WHERE report_id = ?";
485         my $sth = $dbh->prepare($query);
486         $sth->execute($id);
487         my $data = $sth->fetchrow_hashref();
488         my $dump = new XML::Dumper;
489         my $perl = $dump->xml2pl( $data->{'report'} );
490         foreach my $row (@$perl) {
491                 my $htmlrow="<tr>";
492                 foreach my $key (keys %$row){
493                         $htmlrow .= "<td>$row->{$key}</td>";
494                 }
495                 $htmlrow .= "</tr>";
496                 $row->{'row'} = $htmlrow;
497         }
498         $sth->finish;
499         $query = "SELECT * FROM saved_sql WHERE id = ?";
500         $sth = $dbh->prepare($query);
501         $sth->execute($id);
502         $data = $sth->fetchrow_hashref();
503     $sth->finish();
504         return ($perl,$data->{'report_name'},$data->{'notes'}); 
505 }       
506
507 sub delete_report {
508         my ( $id ) = @_;
509         my $dbh = C4::Context->dbh();
510         my $query = "DELETE FROM saved_sql WHERE id = ?";
511         my $sth = $dbh->prepare($query);
512         $sth->execute($id);
513         $sth->finish();
514 }       
515
516 sub get_saved_reports {
517     my $dbh   = C4::Context->dbh();
518     my $query = "SELECT *,saved_sql.id AS id FROM saved_sql 
519     LEFT JOIN saved_reports ON saved_reports.report_id = saved_sql.id
520     ORDER by date_created";
521     my $sth   = $dbh->prepare($query);
522     $sth->execute();
523     my @reports;
524     while ( my $data = $sth->fetchrow_hashref() ) {
525         push @reports, $data;
526     }
527     $sth->finish();
528     return ( \@reports );
529 }
530
531 sub get_saved_report {
532     my ($id)  = @_;
533     my $dbh   = C4::Context->dbh();
534     my $query = " SELECT * FROM saved_sql WHERE id = ?";
535     my $sth   = $dbh->prepare($query);
536     $sth->execute($id);
537     my $data = $sth->fetchrow_hashref();
538     $sth->finish();
539     return ( $data->{'savedsql'}, $data->{'type'}, $data->{'report_name'}, $data->{'notes'} );
540 }
541
542 =item create_compound($masterID,$subreportID)
543
544 This will take 2 reports and create a compound report using both of them
545
546 =cut
547
548 sub create_compound {
549         my ($masterID,$subreportID) = @_;
550         my $dbh = C4::Context->dbh();
551         # get the reports
552         my ($mastersql,$mastertype) = get_saved_report($masterID);
553         my ($subsql,$subtype) = get_saved_report($subreportID);
554         
555         # now we have to do some checking to see how these two will fit together
556         # or if they will
557         my ($mastertables,$subtables);
558         if ($mastersql =~ / from (.*) where /i){ 
559                 $mastertables = $1;
560         }
561         if ($subsql =~ / from (.*) where /i){
562                 $subtables = $1;
563         }
564         return ($mastertables,$subtables);
565 }
566
567 =item get_column_type($column)
568
569 This takes a column name of the format table.column and will return what type it is
570 (free text, set values, date)
571
572 =cut
573
574 sub get_column_type {
575         my ($tablecolumn) = @_;
576         my ($table,$column) = split(/\./,$tablecolumn);
577         my $dbh = C4::Context->dbh();
578         my $catalog;
579         my $schema;
580
581         # mysql doesnt support a column selection, set column to %
582         my $tempcolumn='%';
583         my $sth = $dbh->column_info( $catalog, $schema, $table, $tempcolumn ) || die $dbh->errstr;
584         while (my $info = $sth->fetchrow_hashref()){
585                 if ($info->{'COLUMN_NAME'} eq $column){
586                         #column we want
587                         if ($info->{'TYPE_NAME'} eq 'CHAR' || $info->{'TYPE_NAME'} eq 'VARCHAR'){
588                                 $info->{'TYPE_NAME'} = 'distinct';
589                         }
590                         return $info->{'TYPE_NAME'};            
591                 }
592         }
593         $sth->finish();
594 }
595
596 =item get_distinct_values($column)
597
598 Given a column name, return an arrary ref of hashrefs suitable for use as a tmpl_loop 
599 with the distinct values of the column
600
601 =cut
602
603 sub get_distinct_values {
604         my ($tablecolumn) = @_;
605         my ($table,$column) = split(/\./,$tablecolumn);
606         my $dbh = C4::Context->dbh();
607         my $query =
608           "SELECT distinct($column) as availablevalues FROM $table";
609         my $sth = $dbh->prepare($query);
610         $sth->execute();
611         my @values;
612         while ( my $row = $sth->fetchrow_hashref() ) {
613                 push @values, $row;
614         }
615         $sth->finish();
616         return \@values;
617 }       
618
619 sub save_dictionary {
620         my ($name,$description,$sql,$area) = @_;
621         my $dbh = C4::Context->dbh();
622         my $query = "INSERT INTO reports_dictionary (name,description,saved_sql,area,date_created,date_modified)
623   VALUES (?,?,?,?,now(),now())";
624     my $sth = $dbh->prepare($query);
625     $sth->execute($name,$description,$sql,$area) || return 0;
626     $sth->finish();
627     return 1;
628 }
629
630 sub get_from_dictionary {
631         my ($area,$id) = @_;
632         my $dbh = C4::Context->dbh();
633         my $query = "SELECT * FROM reports_dictionary";
634         if ($area){
635                 $query.= " WHERE area = ?";
636         }
637         elsif ($id){
638                 $query.= " WHERE id = ?"
639         }
640         my $sth = $dbh->prepare($query);
641         if ($id){
642                 $sth->execute($id);
643         }
644         elsif ($area) {
645                 $sth->execute($area);
646         }
647         else {
648                 $sth->execute();
649         }
650         my @loop;
651         my @reports = ( 'Circulation', 'Catalog', 'Patrons', 'Acquisitions', 'Accounts');
652         while (my $data = $sth->fetchrow_hashref()){
653                 $data->{'areaname'}=$reports[$data->{'area'}-1];
654                 push @loop,$data;
655                 
656         }
657         $sth->finish();
658         return (\@loop);
659 }
660
661 sub delete_definition {
662         my ($id) = @_;
663         my $dbh = C4::Context->dbh();
664         my $query = "DELETE FROM reports_dictionary WHERE id = ?";
665         my $sth = $dbh->prepare($query);
666         $sth->execute($id);
667         $sth->finish();
668 }
669
670 sub get_sql {
671         my ($id) = @_;
672         my $dbh = C4::Context->dbh();
673         my $query = "SELECT * FROM saved_sql WHERE id = ?";
674         my $sth = $dbh->prepare($query);
675         $sth->execute($id);
676         my $data=$sth->fetchrow_hashref();
677         $sth->finish(); 
678         return $data->{'savedsql'};
679 }
680
681 sub _get_column_defs {
682         my ($cgi) = @_;
683         my %columns;
684         my $columns_def_file = "columns.def";
685         my $htdocs = C4::Context->config('intrahtdocs');                       
686         my $section='intranet';
687         my ($theme, $lang) = themelanguage($htdocs, $columns_def_file, $section,$cgi);
688
689         my $full_path_to_columns_def_file="$htdocs/$theme/$lang/$columns_def_file";    
690         open (COLUMNS,$full_path_to_columns_def_file);
691         while (my $input = <COLUMNS>){
692                 my @row =split(/\t/,$input);
693                 $columns{$row[0]}=$row[1];
694         }
695
696         close COLUMNS;
697         return \%columns;
698 }
699 1;
700 __END__
701
702 =head1 AUTHOR
703
704 Chris Cormack <crc@liblime.com>
705
706 =cut