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

Diff of /trunk/t/3-normalize.t

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 631 by dpavlin, Wed Sep 6 14:25:16 2006 UTC revision 1021 by dpavlin, Sat Nov 10 11:11:16 2007 UTC
# Line 1  Line 1 
1  #!/usr/bin/perl -w  #!/usr/bin/perl -w
2    
3  use strict;  use strict;
   
 use Test::More tests => 155;  
 use Test::Exception;  
 use Cwd qw/abs_path/;  
4  use blib;  use blib;
5  use File::Slurp;  
6  use Getopt::Long;  use Test::More tests => 343;
7    
8  BEGIN {  BEGIN {
9            use_ok( 'WebPAC::Test' );
10          use_ok( 'WebPAC::Normalize' );          use_ok( 'WebPAC::Normalize' );
11  }  }
12    
 use Data::Dump qw/dump/;  
   
 my $debug = 0;  
 GetOptions(  
         "debug+", \$debug  
 );  
   
13  cmp_ok(_debug(1), '==', 1, '_debug level');  cmp_ok(_debug(1), '==', 1, '_debug level');
14  cmp_ok(_debug(0), '==', 0, '_debug level');  cmp_ok(_debug(0), '==', 0, '_debug level');
15    
# Line 28  if ($debug > 2) { Line 18  if ($debug > 2) {
18          diag "debug level for WebPAC::Normalize is ", _debug( $debug - 2 );          diag "debug level for WebPAC::Normalize is ", _debug( $debug - 2 );
19  }  }
20    
 ok(my $abs_path = abs_path($0), "abs_path");  
 $abs_path =~ s#/[^/]*$#/#;  
 diag "abs_path: $abs_path" if ($debug);  
   
 #throws_ok { new WebPAC::Normalize::XML( lookup_regex => 'foo' ) } qr/pair/, "lookup_regex without lookup";  
   
21  my $rec1 = {  my $rec1 = {
22          '200' => [{          '200' => [{
23                  'a' => '200a',                  'a' => '200a',
# Line 109  my $rec2 = { Line 93  my $rec2 = {
93  };  };
94    
95    
96  my $lookup1 = {  my $lookup_hash1 = {
97          '00900' => [          'db1' => {
98                  'lookup 1',                  'input1' => {
99                  'lookup 2',                          'key1' => { 1 => 1 },
100          ],                          'key2' => { 2 => 1 },
101                    },
102                    'input2' => {
103                            'key3' => { 3 => 1 },
104                            'key4' => { 4 => 1 },
105                    },
106            },
107            'db2' => {
108                    'input3' => {
109                            'key5' => { 5 => 1 },
110                            'key6' => { 6 => 1 },
111                    },
112            }
113  };  };
114    
115  my $lookup2 = {  my $lookup_hash2 = {
116          '00900' => 'lookup',          'db3' => {
117                    'input4' => {
118                            'key7' => { 7 => 1 },
119                            'key8' => { 8 => 1 },
120                    },
121            }
122  };  };
123    
   
124  sub test {  sub test {
125          print dump( @_ ), ("-" x 78), "\n";          print dump( @_ ), ("-" x 78), "\n";
126          ok( defined(@_) );          ok( defined(@_) );
# Line 162  sub test_s { Line 162  sub test_s {
162    
163          ok(! _set_lookup( undef ), "set_lookup(undef)");          ok(! _set_lookup( undef ), "set_lookup(undef)");
164    
165          _set_rec( $rec1 );          _set_ds( $rec1 );
166    
167          cmp_ok( join(",", rec2('200','a') ), 'eq', '200a,200a*2', 'join rec2' );          cmp_ok( join(",", rec2('200','a') ), 'eq', '200a,200a*2', 'join rec2' );
168          cmp_ok( join(",", rec2('200','a'), rec2('200','b') ), 'eq', '200a,200a*2,200b', 'join rec2 rec2' );          cmp_ok( join(",", rec2('200','a'), rec2('200','b') ), 'eq', '200a,200a*2,200b', 'join rec2 rec2' );
# Line 177  sub test_s { Line 177  sub test_s {
177    
178          # simple list manipulatons          # simple list manipulatons
179          cmp_ok( join('', prefix('ab', 'cd') ), 'eq', 'abcd', 'prefix');          cmp_ok( join('', prefix('ab', 'cd') ), 'eq', 'abcd', 'prefix');
180            cmp_ok( join('-', prefix('', 'x', 'y') ), 'eq', 'x-y', 'prefix empty');
181            cmp_ok( join('-', prefix(0, 'x', 'y') ), 'eq', '0x-0y', 'prefix 0');
182    
183          cmp_ok( join('', suffix('xy', 'cd') ), 'eq', 'cdxy', 'suffix');          cmp_ok( join('', suffix('xy', 'cd') ), 'eq', 'cdxy', 'suffix');
184            cmp_ok( join('-', suffix('', 'x', 'y' ) ), 'eq', 'x-y', 'suffix empty');
185            cmp_ok( join('-', suffix(0, 'x', 'y' ) ), 'eq', 'x0-y0', 'suffix 0');
186    
187          cmp_ok( join('', surround('->', '<-', 'a','b','c') ), 'eq', '->a<-->b<-->c<-', 'surround');          cmp_ok( join('', surround('->', '<-', 'a','b','c') ), 'eq', '->a<-->b<-->c<-', 'surround');
188            cmp_ok( join('-', surround('', '', 'x','y','z') ), 'eq', 'x-y-z', 'surround empty');
189            cmp_ok( join('-', surround(0, 0, 'x','y','z') ), 'eq', '0x0-0y0-0z0', 'surround 0 0');
190    
191            # count
192            my @el;
193            for my $i ( 0 .. 10 ) {
194                    cmp_ok( count( @el ), '==', $i, "count($i)");
195                    push @el, "element $i";
196            }
197    
198            # lookups
199    
200            throws_ok { _set_load_row() } qr/CODE/, 'empty _set_load_row()';
201    
202            ok(_set_load_row(sub {
203                    my ($database,$input,$mfn) = @_;
204                    diag "load_row( $database, $input, $mfn )" if ($debug);
205                    cmp_ok( $#_, '==', 2, 'have 3 arguments');
206                    ok($database, '_load_row database');
207                    ok($input, '_load_row input');
208                    ok($mfn, '_load_row mfn');
209                    return {
210                            '900' => [{ x => '900x-' . $mfn , y => '900y-' . $mfn }],
211                    }
212    
213            }), '_set_load_row');
214    
215            my @v = qw/foo bar baz aaa bbb ccc ddd/;
216    
217            my @accumulated;
218    
219            for my $i ( 0 .. $#v ) {
220    
221                    my $mfn = 1000 + $i;
222    
223                    ok(WebPAC::Normalize::_set_config({ '_mfn' => $mfn }), "_set_config _mfn=$mfn");
224    
225                    my $size = $#v + 1;
226    
227                    cmp_ok(
228                            save_into_lookup('db','input','key', sub { @v }),
229                            '==', $size, "save_into_lookup $size values"
230                    );
231    
232                    ok(my $l = WebPAC::Normalize::_get_lookup(), '_get_lookup');
233                    diag "_get_lookup = ", dump($l) if ($debug);
234    
235                    my @lookup;
236    
237                    ok(@lookup = lookup(
238                                    sub {
239                                            diag "in show" if ($debug);
240                                            rec('900','x');
241                                    },
242                                    'db','input','key',
243                                    sub {
244                                            return @v;
245                                    }
246                            ),
247                    "lookup db/input/key");
248    
249                    push @accumulated, '900x-' . $mfn;
250    
251                    is_deeply(\@lookup, \@accumulated, "lookup db/input/key");
252    
253                    shift @v;
254    
255            }
256    
257            ok(my $l = WebPAC::Normalize::_get_lookup(), '_get_lookup');
258            diag "_get_lookup = ", dump($l) if ($debug);
259    
260            is_deeply( $l, {
261                    db => {
262                            input => {
263                                    key => {
264                                            foo => { 1000 => 1 },
265                                            bar => { 1000 => 1, 1001 => 1 },
266                                            baz => { 1000 => 1, 1001 => 1, 1002 => 1 },
267                                            aaa => { 1000 => 1, 1001 => 1, 1002 => 1, 1003 => 1 },
268                                            bbb => { 1000 => 1, 1001 => 1, 1002 => 1, 1003 => 1, 1004 => 1 },
269                                            ccc => { 1000 => 1, 1001 => 1, 1002 => 1, 1003 => 1, 1004 => 1, 1005 => 1 },
270                                            ddd => { 1000 => 1, 1001 => 1, 1002 => 1, 1003 => 1, 1004 => 1, 1005 => 1, 1006 => 1 },
271                                    },
272                            },
273                    },
274            }, 'lookup data');
275    
276    #######
277    
278            diag "lookup_hash1 = ", dump($lookup_hash1) if ($debug);
279            ok(_set_lookup( $lookup_hash1 ), '_set_lookup $lookup_hash1');
280    
281            throws_ok { _set_load_row() } qr/CODE/, 'empty _set_load_row()';
282    
283            ok(_set_load_row(sub {
284                    my ($database,$input,$mfn) = @_;
285                    diag "load_row( $database, $input, $mfn )";
286                    cmp_ok( $#_, '==', 2, 'have 3 arguments');
287                    ok($database, 'database');
288                    ok($input, 'input');
289                    ok($mfn, 'mfn');
290    
291            }), '_set_load_row');
292    
293    
294    #       cmp_ok(lookup(
295    #               sub {
296    #                       'found'
297    #               },
298    #               'db1','input1','key1',
299    #               sub {
300    #                       rec('200','a')
301    #               }
302    #       ), 'eq', 'found', 'lookup db1/input1/key1');
303    
304    
         _set_lookup( $lookup1 );  
305                    
306          cmp_ok(  #       cmp_ok(
307                  join_with(" i ",  #               lookup(
308                          lookup(  #               ),
309                                  regex( 's/^/00/',  #       'eq', 'lookup 1 i lookup 2', 'join lookup regex rec2');
                                         rec2('902','z')  
                                 )  
                         )  
                 ),  
         'eq', 'lookup 1 i lookup 2', 'join lookup regex rec2');  
310    
311          # check join_with operations          # check join_with operations
312    
# Line 235  sub test_s { Line 350  sub test_s {
350    
351          # test lookups          # test lookups
352    
353          _set_lookup( $lookup2 );          _set_lookup( $lookup_hash2 );
354    
355            throws_ok { lookup() } qr/need/, 'empty lookup';
356    
357          is_deeply( \[ lookup( prefix( '00', rec('902') ) ) ], \[ 'lookup' ], 'lookup prefix' );          #is_deeply( \[ lookup( prefix( '00', rec('902') ) ) ], \[ 'lookup' ], 'lookup prefix' );
358    
359          ok(! lookup('non-existent'), 'lookup non-existant' );          #ok(! lookup('non-existent'), 'lookup non-existant' );
360    
361          _set_rec( $rec2 );          _set_ds( $rec2 );
362    
363          test_s(qq{          test_s(qq{
364                  tag('Title',                  search_display('Title',
365                          rec('200','a')                          rec('200','a')
366                  );                  );
367          });          });
368          test_s(qq{          test_s(qq{
369                  tag('Who',                  search_display('Who',
370                          join_with(" ",                          join_with(" ",
371                                  rec('702','a'),                                  rec('702','a'),
372                                  rec('702','b')                                  rec('702','b')
# Line 300  sub test_s { Line 417  sub test_s {
417          test_check_ds('display');          test_check_ds('display');
418    
419          _clean_ds();          _clean_ds();
420          test_s(qq{ tag('something', '42'); });          test_s(qq{ search_display('something', '42'); });
421          test_s(qq{ tag('empty', ''); });          test_s(qq{ search_display('empty', ''); });
422          test_check_ds('search');          test_check_ds('search');
423          test_check_ds('display');          test_check_ds('display');
424    
425          _clean_ds();          _clean_ds();
426            test_s(qq{ sorted('something', '42'); });
427            test_s(qq{ sorted('empty', ''); });
428            test_check_ds('sorted');
429    
430            _clean_ds();
431          my $n = read_file( "$abs_path/data/normalize.pl" );          my $n = read_file( "$abs_path/data/normalize.pl" );
432          $n .= "\n1;\n";          $n .= "\n1;\n";
433          #diag "normalize code:\n$n\n";          #diag "normalize code:\n$n\n";
# Line 323  sub test_s { Line 445  sub test_s {
445          my $rules = qq{ search('mixed', rec('200') ) };          my $rules = qq{ search('mixed', rec('200') ) };
446                    
447          _clean_ds();          _clean_ds();
448          _set_rec( $rec );          _set_ds( $rec );
449          test_s( $rules );          test_s( $rules );
450          ok($ds = _get_ds(), "get_ds");          ok($ds = _get_ds(), "get_ds");
451          is_deeply( $ds, {          is_deeply( $ds, {
452                  'mixed' => {                  'mixed' => {
453                          'search' => [ '200a', '200b' ],                          'search' => [ '200a', '200b' ],
                         'tag' => 'mixed'  
454                  }                  }
455          }, 'correct get_ds');          }, 'correct get_ds');
456    
# Line 341  sub test_s { Line 462  sub test_s {
462    
463          # wird and non-valid structure which is supported anyway          # wird and non-valid structure which is supported anyway
464          _clean_ds();          _clean_ds();
465          _set_rec({          _set_ds({
466                  '200' => [{                  '200' => [{
467                          'a' => '200a',                          'a' => '200a',
468                  },                  },
# Line 353  sub test_s { Line 474  sub test_s {
474          is_deeply( $ds, {          is_deeply( $ds, {
475                  'mixed' => {                  'mixed' => {
476                          'search' => [ '200a', '200-solo' ],                          'search' => [ '200a', '200-solo' ],
                         'tag' => 'mixed'  
477                  }                  }
478          }, 'correct get_ds');          }, 'correct get_ds');
479    
480          #          #
481          # MARC          # MARC
482          #          #
483          _debug( 4 );          #_debug( 4 );
484    
485          test_s(qq{ marc_indicators('900',1,2) });          test_s(qq{ marc_indicators('900',1,2) });
486          test_s(qq{ marc('900','a', rec('200') ) });          test_s(qq{ marc('900','a', rec('200') ) });
# Line 392  sub test_s { Line 512  sub test_s {
512                  my ($msg, $rec, $rules, $struct) = @_;                  my ($msg, $rec, $rules, $struct) = @_;
513    
514                  _clean_ds();                  _clean_ds();
515                  _set_rec($rec);                  _set_ds($rec);
516    
517                  foreach my $r (split(/;/, $rules)) {                  foreach my $r (split(/;\s*$/, $rules)) {
518                          $r =~ s/[\s\n\r]+/ /gs;                          $r =~ s/[\s\n\r]+/ /gs;
519                          $r =~ s/^\s+//gs;                          $r =~ s/^\s+//gs;
520                          $r =~ s/\s+$//gs;                          $r =~ s/\s+$//gs;
521                            diag "rule: $r" if $debug;
522                          test_s($r) if ($r);                          test_s($r) if ($r);
523                  }                  }
524    
525                  ok(my $marc = WebPAC::Normalize::_get_marc_fields(), "_get_marc_fields");                  ok(my $marc = WebPAC::Normalize::_get_marc_fields(), "_get_marc_fields");
526                  diag dump( $marc ) if ($debug);                  diag dump( $marc ) if $debug;
527                  diag "expects:\n", dump($struct) if ($debug > 1);                  diag "expects:\n", dump($struct) if ($debug > 1);
528                  is_deeply( $marc, $struct, $msg );                  is_deeply( $marc, $struct, $msg );
529          }          }
# Line 501  sub test_s { Line 622  sub test_s {
622          sub test_rule {          sub test_rule {
623                  my ($msg, $rec, $rule, $struct) = @_;                  my ($msg, $rec, $rule, $struct) = @_;
624                  _clean_ds();                  _clean_ds();
625                  _set_rec( $rec );                  _set_ds( $rec );
626                  $rule =~ s/\\/\\/gs;                  $rule =~ s/\\/\\/gs;
627                  my $r = test_s( $rule );                  my $r = test_s( $rule );
628                  diag "for ", dump($rec), " got:\n", dump($r), "\nexpect:\n" if ($debug > 1);                  diag "for ", dump($rec), " got:\n", dump($r), "\nexpect:\n" if ($debug > 1);
# Line 609  sub test_s { Line 730  sub test_s {
730                          [ '901', ' ', ' ', 'b', 'bar', 'c', 'baz' ],                          [ '901', ' ', ' ', 'b', 'bar', 'c', 'baz' ],
731                  ],                  ],
732          );          );
733    
734            test_s(qq{ marc_remove('*'); });
735            ok(! WebPAC::Normalize::_get_marc_fields(), 'marc_remove(*)');
736    
737          test_rec_rules(          test_rec_rules(
738                  'marc_duplicate',                  'marc_duplicate',
739                  { '200' => [{ a => 42, b => 'bar', c => 'baz', d => 'bing', e => 'bong' }] },                  { '200' => [{ a => 42, b => 'bar', c => 'baz', d => 'bing', e => 'bong' }] },
740                  qq{                  qq{
741                            marc_leader('06',42);
742                            marc_leader('11',0);
743                          marc('900', 'a', rec('200','a') );                          marc('900', 'a', rec('200','a') );
744                          marc('900', 'b', rec('200','b') );                          marc('900', 'b', rec('200','b') );
745                          marc_duplicate;                          marc_duplicate;
746                            marc_leader('11',1);
747                          marc_remove('900','b');                          marc_remove('900','b');
748                          marc('900', 'b', rec('200','c') );                          marc('900', 'b', rec('200','c') );
749                          marc_duplicate;                          marc_duplicate;
750                            marc_leader('11',2);
751                          marc_remove('900','b');                          marc_remove('900','b');
752                          marc('900', 'b', rec('200','d') );                          marc('900', 'b', rec('200','d') );
753                          marc_duplicate;                          marc_duplicate;
754                            marc_leader('11',3);
755                          marc_remove('900','b');                          marc_remove('900','b');
756                          marc('900', 'b', rec('200','e') );                          marc('900', 'b', rec('200','e') );
757                  },                  },
# Line 631  sub test_s { Line 761  sub test_s {
761                  ],                  ],
762          );          );
763    
764            cmp_ok( marc_count(), '==', 3, 'marc_count' );
765    
766          my $i = 0;          my $i = 0;
767          foreach my $v ( qw/bar baz bing bong/ ) {          foreach my $v ( qw/bar baz bing bong/ ) {
768    
# Line 642  sub test_s { Line 774  sub test_s {
774                          [ [ '900', ' ', ' ', 'a', 42, 'b', $v ] ],                          [ [ '900', ' ', ' ', 'a', 42, 'b', $v ] ],
775                          "MARC copy $i has $v",                          "MARC copy $i has $v",
776                  );                  );
777                    is_deeply(WebPAC::Normalize::_get_marc_leader(), { '06' => 42, 11 => $i }, "_get_marc_leader copy $i");
778                  $i++;                  $i++;
779          }          }
780    
# Line 679  sub test_s { Line 812  sub test_s {
812                  qq{                  qq{
813                          rec1(200);                          rec1(200);
814                  },                  },
815                  ["a1", "b1", "a2", "b2", "c1", "c2"],                  ['a1', 'b1', 'a2', 'b2', 'c1', 'c2', 'a3', 'a4', 'b3', 'c3', 'a5' ],
816            );
817    
818            is_deeply(
819                    [ _pack_subfields_hash({
820                            a => [ 'a1', 'a2' ], b => [ 'b1', 'b2' ], c => [ 'c1', 'c2' ],
821                            subfields => [ qw/a 0 b 0 a 1 b 1 c 0 c 1/ ],
822                    }) ],
823                    ['a1', 'b1', 'a2', 'b2', 'c1', 'c2'],
824                    '_pack_subfields_hash( $h )'
825            );
826    
827            cmp_ok(
828                    _pack_subfields_hash({
829                            a => [ 'a1', 'a2' ], b => [ 'b1', 'b2' ], c => [ 'c1', 'c2' ],
830                            subfields => [ qw/a 0 b 0 a 1 b 1 c 0 c 1/ ],
831                    }, 1),
832                    'eq',
833                    '^aa1^bb1^aa2^bb2^cc1^cc2',
834                    '_pack_subfields_hash( $h, 1 )'
835            );
836    
837            _clean_ds();
838            test_s(qq{
839                    marc_fixed('008', 0, 'abcdef');
840                    marc_fixed('000', 5, '5');
841                    marc_fixed('000', 10, 'A');
842                    marc_fixed('000', 0, '0');
843            });
844            ok( my $m = WebPAC::Normalize::_get_marc_fields(), '_get_marc_fields');
845            diag dump( $m );
846            is_deeply( WebPAC::Normalize::_get_marc_fields(),
847                    [
848                            ["008", "abcdef"],
849                            #        0....5....10
850                            ["000", "0    5    A"]
851                    ]
852            );
853    
854            test_s(qq{ isbn_13( '1558607013', '978-1558607019' ) });
855            test_s(qq{ isbn_10( '1558607013', '978-1558607019' ) });
856    
857            is_deeply(
858                    [ isbn_13( '1558607013', '978-1558607019' ) ],
859                    [ '978-1-55860-701-9', '978-1-55860-701-9', ],
860            'isbn_13' );
861    
862            is_deeply(
863                    [ isbn_10( '1558607013', '978-1558607019' ) ],
864                    [ '1-55860-701-3', '1-55860-701-3' ],
865            'isbn_10' );
866    
867            # frec
868    
869            my $rec = {
870                            '200' => [ {
871                                    a => [ 'a1', 'a2' ], b => [ 'b1', 'b2' ], c => [ 'c1', 'c2' ],
872                                    subfields => [ qw/a 0 b 0 a 1 b 1 c 0 c 1/ ],
873                            }, {
874                                    a => [ 'a3', 'a4', 'a5' ], b => 'b3', c => 'c3',
875                                    subfields => [ qw/a 0 a 1 b 0 c 0 a 2/ ],
876                            } ],
877            };
878    
879            test_rule( 'frec', $rec, qq{ frec(200) }, [ 'a1' ] );
880            test_rule( 'frec', $rec, qq{ frec(200,'a') }, [ 'a1' ] );
881            test_rule( 'frec', $rec, qq{ frec(200,'b') }, [ 'b1' ] );
882            test_rule( 'frec', $rec, qq{ frec(200,'c') }, [ 'c1' ] );
883    
884            $rec->{'900'} = $rec->{'200'};
885            foreach my $sf ( qw/a b c/ ) {
886                    ok( frec_eq( '200' => $sf, '900' => $sf ), "frec_eq 200 == 900 $sf");
887                    ok( ! frec_ne( '200' => $sf, '900' => $sf ), "! frec_ne 200 == 900 $sf");
888            }
889    
890            foreach my $sf ( qw/a b/ ) {
891                    ok( ! frec_eq( '200' => $sf, '200' => 'c' ), "! frec_eq 200 $sf == 200 c");
892                    ok( frec_ne( '200' => $sf, '200' => 'c' ), "frec_ne 200 $sf == 200 c");
893            }
894    
895            # marc_template
896    
897            test_rec_rules(
898                    'marc_template',
899                    {
900                            '225' => [{
901                                    'a' => 'a-1-1',
902                                    'i' => 'i-1-1',
903                                    'v' => 'v-1-1',
904                                    'w' => 'w-1-1',
905                                    'h' => 'h-1-1',
906                                    'x' => 'x-1-1',
907                            },{
908                                    'a' => 'a-2-1',
909                                    'v' => 'v-2-1',
910                                    'i' => 'i-2-1',
911                            },{
912                                    'a' => 'a-3-1',
913                                    'i' => 'i-3-1',
914                                    'v' => 'v-3-1',
915                            },{
916                                    'a' => 'a-4-1',
917                                    'v' => 'v-4-1',
918                                    'i' => 'i-4-1',
919                                    'w' => 'w-4-1',
920                            },{
921                                    'a' => 'a-4-1',
922                                    'v' => 'v-4-1',
923                                    'i' => 'i-4-1',
924                            },{
925                                    'a' => 'a-4-1',
926                                    'i' => 'i-4-1',
927                                    'w' => 'w-4-1',
928                            }],
929                    },
930                    qq{
931                            marc_template(
932                                    from => 225, to => 440,
933                                    subfields_rename => [
934                                            'a' => 'a',
935                                            'x' => 'x',
936                                            'v' => 'v',
937                                            'h' => 'n',
938                                            'i' => 'p',
939                                            'w' => 'v',
940                                    ],
941                                    isis_template => [
942                                            'a ; |v. |i',
943                                            'a. |i ; |w',
944                                    ],
945                                    marc_template => [
946                                            'a',
947                                            'a, |x ; |v. |n, |p ; |v',
948                                            'a ; |v. |p ; |v',
949                                    ],
950                            );
951                    },
952                    [
953                            [440, " ", " ", "a", "a-1-1", "x", "x-1-1", "v", "v-1-1", "n", "h-1-1", "p", "i-1-1", "v", "w-1-1", ],
954                            [440, " ", " ", "a", "a-2-1", "p", "i-2-1", "v", "v-2-1"],
955                            [440, " ", " ", "a", "a-3-1", "p", "i-3-1", "v", "v-3-1"],
956                            [440, " ", " ", "a", "a-4-1", "v", "v-4-1", "p", "i-4-1", "v", "w-4-1"],
957                            [440, " ", " ", "a", "a-5-1"],
958                    ],
959          );          );
960  }  }
961    

Legend:
Removed from v.631  
changed lines
  Added in v.1021

  ViewVC Help
Powered by ViewVC 1.1.26