diff --git a/Repositories/otago_eprints3/otago_eprints/cfg/cfg.d/eprint_render.pl b/Repositories/otago_eprints3/otago_eprints/cfg/cfg.d/eprint_render.pl index f5b29a2..530bd52 100755 --- a/Repositories/otago_eprints3/otago_eprints/cfg/cfg.d/eprint_render.pl +++ b/Repositories/otago_eprints3/otago_eprints/cfg/cfg.d/eprint_render.pl @@ -30,7 +30,7 @@ $page = $session->make_doc_fragment; # Citation - $p = $session->make_element( "p", class=>"ep_block", style=>"margin-bottom: 1em" ); + $p = $session->make_element( "p", style=>"margin-bottom: 1em" ); $p->appendChild( $eprint->render_citation() ); $page->appendChild( $p ); @@ -72,7 +72,7 @@ my $docs_to_show = scalar @documents; - $p = $session->make_element( "p", class=>"ep_block", style=>"margin-bottom: 1em" ); + $p = $session->make_element( "p", style=>"margin-bottom: 1em" ); $page->appendChild( $p ); if( $docs_to_show == 0 ) @@ -94,7 +94,7 @@ $p->appendChild( $session->html_phrase( "page:fulltext" ) ); my( $doctable, $doctr, $doctd ); - $doctable = $session->make_element( "table", class=>"ep_block", style=>"margin-bottom: 1em" ); + $doctable = $session->make_element( "table", style=>"margin-bottom: 1em" ); foreach my $doc ( @documents ) { @@ -205,7 +205,7 @@ # Alternative locations if( $eprint->is_set( "official_url" ) ) { - $p = $session->make_element( "p", class=>"ep_block", style=>"margin-bottom: 1em" ); + $p = $session->make_element( "p", style=>"margin-bottom: 1em" ); $page->appendChild( $p ); $p->appendChild( $session->html_phrase( "eprint_fieldname_official_url" ) ); $p->appendChild( $session->make_text( ": " ) ); @@ -315,6 +315,12 @@ + # NJS 2008-07-22 + # Affiliations... + $table->appendChild( $session->render_row( + $session->html_phrase( "eprint_fieldname_affiliations" ), + $eprint->render_value( "affiliations" ) ) ); + # Subjects... $table->appendChild( $session->render_row( $session->html_phrase( "eprint_fieldname_subjects" ),