added header_first to WebPAC::Input::CSV
[webpac2] / vhost / refcas-old / psycinfo2json.pl
1 tag('title', uc ( rec('A') ) );
2 tag('issn',     
3         join_with(' ; ',
4                 rec('B'),
5                 rec('C')
6         )
7 );
8 tag('publisher', rec('D') );
9
10 my $vol;
11 if ( rec('F') =~ m/Y/ ) {
12         $vol = ', Vol. 1'
13 } else {
14         $vol = '';
15 }
16
17 tag('coverage',
18         suffix( $vol, rec('E') )
19 );
20
21 tag( 'database',        
22         config('input description')
23 );
24