/[webpac2]/trunk/conf/normalize/webpacus.pl
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/conf/normalize/webpacus.pl

Parent Directory Parent Directory | Revision Log Revision Log


Revision 974 - (show annotations)
Fri Nov 2 14:59:32 2007 UTC (16 years, 5 months ago) by dpavlin
File MIME type: text/plain
File size: 996 byte(s)
 r1491@llin:  dpavlin | 2007-11-02 15:59:31 +0100
 example usage

1 search_display('ISBN',
2 isbn_13(
3 rec('020','a')
4 )
5 );
6
7 warn "### isbn_13 = ",dump(
8 isbn_13(
9 rec('020','a')
10 )
11 );
12
13 search_display('ISBN_incorrect',
14 rec('010','z')
15 );
16
17 search_display('ISSN',
18 rec('022','a')
19 );
20
21
22 search_display('Language',
23 rec('041','a')
24 );
25
26 search_display('TitleProper',
27 join_with('',
28 rec('245','a'),
29 join_with(' / ',
30 rec('245','b'),
31 rec('245','c')
32 )
33 )
34 );
35
36 # regex('s/\s*[=:\/;]\s*//g',
37
38 sorted('TitleProper',
39 rec('245','a'),
40 );
41
42 search_display('ReminderTitle',
43 join_with(' : ',
44 prefix(' = ',
45 rec('245','d')
46 ),
47 rec('245','e')
48 )
49 );
50
51 #display('Pripadajuci',
52 # lookup(
53 # sub { rec('200','a') },
54 # 'hidra','bib',
55 # sub { rec('900') },
56 # sub { rec('451','a') }
57 # )
58 #);
59
60
61 search('PlacePublication',
62 rec('260','a')
63 );
64
65 search('NamePublisher',
66 rec('260','b'),
67 );
68
69 search_display('DatePublication',
70 rec('260','c')
71 );
72
73 display('Impresum',
74 rec('260'),
75 );
76
77 search_display('Dimensions',
78 rec('300','c')
79 );
80
81 search_display('GeneralNote',
82 rec('500')
83 );
84

  ViewVC Help
Powered by ViewVC 1.1.26