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