--- trunk/all2xml.pl 2004/03/14 11:50:29 274 +++ branches/ffzg/all2xml.pl 2004/04/04 22:11:13 303 @@ -17,6 +17,7 @@ my $config_file = $0; $config_file =~ s/\.pl$/.conf/; +$config_file = $ARGV[0] if (-f $ARGV[0]); die "FATAL: can't find configuration file '$config_file'" if (! -e $config_file); my $config; @@ -150,6 +151,8 @@ } } + + # init variables for different types sub init_visible_type($) { my $type = shift; @@ -170,6 +173,35 @@ return ($s,$se,$d,$i,$il); } + + # convert + # + # + # , + # 200a + # + # + # to + # + # 200a + # + # but without loosing spaces in delimiter (becasue + # new XML::Simple strips spaces in attribute values + # as defined in XML specification) + # + sub unroll_x($) { + my $x = shift; + + if (defined $x->{value}) { + my ($v,$d) = ($x->{value}->{content}, $x->{delimiter}->{content}); + delete $x->{value}; + delete $x->{delimiter}; + $x->{content} = $v; + $x->{delimiter} = $d; + } + return $x; + } + # begin real work: go field by field foreach my $field (@sorted_tags) { @@ -203,6 +235,8 @@ foreach my $x (@{$config->{indexer}->{$field}->{$tag}}) { + $x = unroll_x($x); + my $format = x($x->{content}); my $delimiter = x($x->{delimiter}) || ' '; @@ -212,7 +246,7 @@ # what will separate last line from this one? if ($display_data && $x->{append}) { - $line_delimiter = ' '; + $line_delimiter = $delimiter; } elsif ($display_data) { $line_delimiter = '
'; } @@ -429,6 +463,8 @@ # now try to parse variables from configuration file foreach my $x (@{$config->{indexer}->{$field}->{'config'}}) { + $x = unroll_x($x); + my $delimiter = x($x->{delimiter}) || ' '; my $val = $cfg->val($database, x($x->{content})); @@ -613,7 +649,7 @@ my $type_base = $type; $type_base =~ s/_.+$//g; - $config=XMLin("./import_xml/$type.xml", forcearray => [ $type2tag{$type_base}, 'config', 'format' ], forcecontent => 1); + $config=XMLin("./import_xml/$type.xml", ForceArray => [ $type2tag{$type_base}, 'config', 'format' ], ForceContent => 1 ); # output current progress indicator my $last_p = 0; @@ -883,6 +919,10 @@ all2xml.pl - read various file formats and dump XML for SWISH-E +=head1 SYNOPSYS + + $ all2xml.pl [test.conf] + =head1 DESCRIPTION This command will read ISIS data file using OpenIsis perl module, MARC @@ -891,6 +931,9 @@ this script B from isis files (isis allready has something like that). Output of this script is tailor-made for SWISH-E. +If no configuration file is specified, it will use default one called +C. + =head1 BUGS Documentation is really lacking. However, in true Open Source spirit, source