X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=html.pl;h=10c6392d60c46dacead3ad07a5c1aa66888a723b;hb=c928efda112ef1c5f1a05f01d62066362d803a40;hp=32fa1737e2933fdf1cb1e3cc618eb041503d348a;hpb=baea1f26f977c3da020afb0fce7722732b19ac6e;p=koha-bibliografija diff --git a/html.pl b/html.pl index 32fa173..10c6392 100755 --- a/html.pl +++ b/html.pl @@ -12,6 +12,7 @@ use locale; use Text::Unaccent; use Carp qw(confess); use utf8; +use JSON; use lib '/srv/koha_ffzg'; use C4::Context; @@ -28,16 +29,22 @@ sub debug { my $xslfilename = 'compact.xsl'; my $azvo_group_title = { -'znanstveno nastavni' => qr/(profesor|docent|znanstveni)/i, +'znanstveno nastavni' => qr/(profes|docent|znanstveni savjetnik|znanstveni suradnik)/i, 'lektori i predavači' => qr/(lektor|predavač)/i, 'asistenti i novaci' => qr/(asistent|novak)/i, }; +my $department_groups = { +'AAB_humanističke' => qr/(anglistiku|arheologiju|antropologiju|filozofiju|fonetiku|germanistiku|hungarologiju|indologiju|slavenske|filologiju|komparativnu|kroatistiku|lingvistiku|povijest|romanistiku|talijanistiku)/i, +'AAC_društvene' => qr/(informacijske|pedagogiju|psihologiju|sociologiju)/i, +}; + my $auth_header; my $auth_department; my $auth_group; my @authors; my $department_in_sum; +my $department_in_group; my $skip; @@ -79,8 +86,17 @@ while( my $row = $sth_auth->fetchrow_hashref ) { push @{ $auth_department->{ $row->{department} } }, $row->{authid}; push @authors, $row; $department_in_sum->{ $row->{department} }++; + foreach my $name ( keys %$department_groups ) { + my $regex = $department_groups->{$name}; + if ( $row->{department} =~ $regex ) { + $department_in_group->{ $row->{department} } = $name; + last; + } + } } +debug 'department_in_group' => $department_in_group; + foreach my $department ( keys %$department_in_sum ) { $department_in_sum->{$department} = 0 unless $department =~ m/(centar|croaticum|katedra|odsjek)/i; } @@ -124,6 +140,7 @@ my $parsed = $xslt->parse_stylesheet($style_doc); my $biblio_html; my $biblio_parsed; my $biblio_data; +my $biblio_author_external; open(my $xml_fh, '>', '/tmp/bibliografija.xml') if $ENV{XML}; @@ -181,9 +198,9 @@ while( my $row = $sth_select_authors->fetchrow_hashref ) { my $extract = { '008' => undef, - '100' => '9', + '100' => '(9|a)', '680' => 'i', - '700' => '(9|4)', + '700' => '(9|4|a)', '942' => '(t|r|v)' }; @@ -218,15 +235,19 @@ while( my $row = $sth_select_authors->fetchrow_hashref ) { } } push @{ $data->{$tag} }, $sf_data if $sf_data; - } - } + } + } - if ( $data->{year} < 2008 ) { + if ( ! defined $data->{year} ) { + warn "MISSING year in ", $row->{biblionumber}; +=for remove-year-limit + } elsif ( $data->{year} < 2008 ) { push @{ $skip->{year_lt_2008} }, $row->{biblionumber}; next; } elsif ( $data->{year} > 2013 ) { push @{ $skip->{year_gt_2013} }, $row->{biblionumber}; next; +=cut } # warn "# ", $row->{biblionumber}, " data ",dump($data); @@ -241,7 +262,19 @@ while( my $row = $sth_select_authors->fetchrow_hashref ) { my $have_100 = 1; if ( exists $data->{100} ) { - my @first_author = map { $_->{'9'} } @{ $data->{100} }; + my @first_author = + map { $_->{'9'} } + grep { + if ( ! exists $_->{9} ) { + $biblio_author_external->{ $row->{biblionumber} }++; + 0; + } elsif ( exists $auth_header->{ $_->{9} } ) { + 1; # from FFZXG + } else { + 0; + } + } + @{ $data->{100} }; foreach my $authid ( @first_author ) { push @{ $authors->{$authid}->{aut}->{ $category } }, $row->{biblionumber}; } @@ -252,7 +285,19 @@ while( my $row = $sth_select_authors->fetchrow_hashref ) { my $have_edt; if ( exists $data->{700} ) { - foreach my $auth ( @{ $data->{700} } ) { + my @other_authors = + grep { + if ( ! exists $_->{9} ) { + $biblio_author_external->{ $row->{biblionumber} }++; + 0; + } elsif ( exists $auth_header->{ $_->{9} } ) { + 1; # from FFZXG + } else { + 0; + } + } + @{ $data->{700} }; + foreach my $auth ( @other_authors ) { my $authid = $auth->{9} || next; my $type = $auth->{4} || next; #die "no 4 in ",dump($data); @@ -289,6 +334,7 @@ debug 'type_stats' => $type_stats; debug 'skip' => $skip; debug 'biblio_year' => $biblio_year; debug 'biblio_data' => $biblio_data; +debug 'biblio_author_external' => $biblio_author_external; my $category_label; my $sth_categories = $dbh->prepare(q{ @@ -307,6 +353,7 @@ sub html_title { |, join(" ", @_), qq| + |; @@ -327,7 +374,7 @@ debug 'authors' => \@authors; sub li_biblio { my ($biblionumber) = @_; - return qq|
  • |, + return qq|
  • |, qq|$biblionumber|, biblioitem_html($biblionumber), qq|edit|, @@ -343,14 +390,29 @@ sub author_html { foreach my $category ( sort keys %{ $authors->{$authid}->{$type} } ) { my $label = $category_label->{$category} || 'Bez kategorije'; - print $fh qq|

    $label

    \n