final changes for script which we won't use
authorDobrica Pavlinusic <dpavlin@rot13.org>
Thu, 21 Apr 2016 12:55:11 +0000 (14:55 +0200)
committerDobrica Pavlinusic <dpavlin@rot13.org>
Thu, 21 Apr 2016 12:55:11 +0000 (14:55 +0200)
star2016-abstracts.pl

index 0c58a04..25fa196 100755 (executable)
@@ -59,6 +59,8 @@ foreach my $abstract ( @$abstracts ) {
 
        $id2nr->{ $id } = $nr++;
 
+warn "$nr";
+
        my $t = $doc->appendParagraph(text => $abstract->{Title}->[0], style => 'Heading 1');
        $doc->setPageBreak( $t, position => 'before', style => 'Heading 1');
 
@@ -71,11 +73,19 @@ foreach my $abstract ( @$abstracts ) {
 
        $doc->appendParagraph(text => $abstract->{Content}->[0], style => 'Abstract');
        
-       $doc->appendParagraph(text => "Theme: " . $f->{2}->{'content'}, style => 'Theme');
+       $doc->appendParagraph(text => "\nTheme: " . $f->{2}->{'content'}, style => 'Theme');
+       
 
+       $doc->appendParagraph(text => "\nID: " . $abstract->{Id}->[0], style => 'Abstract');
 }
 
 warn "# stat = ",dump($stat);
 
 $doc->save;
 
+
+open(my $fh, '>', 'affiliation.csv');
+foreach my $a ( sort keys %{ $stat->{_Affiliation} } ) {
+       print $fh '"',$a,'","',dump( $stat->{_Affiliation}->{$a} ), '"', "\n";
+}
+