Bugzilla – Attachment 1408 Details for
Bug 3550
Use GetRecordValue to get the subtitle
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
bugfix
0001--bug-3550-use-GetRecordValue-to-retrieve-subtitle.patch (text/plain), 7.71 KB, created by
Chris Cormack
on 2009-08-25 09:55:00 UTC
(
hide
)
Description:
bugfix
Filename:
MIME Type:
Creator:
Chris Cormack
Created:
2009-08-25 09:55:00 UTC
Size:
7.71 KB
patch
obsolete
>From 7035372dc3f08c0d11b2910072ed9b93fc01ee2e Mon Sep 17 00:00:00 2001 >From: Nahuel ANGELINETTI <nahuel.angelinetti@biblibre.com> >Date: Tue, 25 Aug 2009 11:53:50 +0200 >Subject: [PATCH] (bug #3550) use GetRecordValue to retrieve subtitle >Content-Type: text/plain; charset="utf-8" > >This patch, is the first use of GetRecordValue, that use the Field mapping. >It retrieve the subtitle in Intranet using it, instead of the use an old function that doesn't work anymore. >This is a way to made koha more generic with each framework. >--- > C4/Search.pm | 15 +++++++++++++-- > catalogue/detail.pl | 2 +- > .../prog/en/modules/catalogue/detail.tmpl | 5 ++++- > .../prog/en/modules/catalogue/results.tmpl | 19 +++++++++++++++---- > 4 files changed, 33 insertions(+), 8 deletions(-) > >diff --git a/C4/Search.pm b/C4/Search.pm >index 7444e43..be1cac4 100644 >--- a/C4/Search.pm >+++ b/C4/Search.pm >@@ -1246,11 +1246,22 @@ sub searchResults { > $times = $hits; # FIXME: if $hits is undefined, why do we want to equal it? > } > >+ # We get the biblionumber position in MARC >+ my ($bibliotag,$bibliosubf)=GetMarcFromKohaField('biblio.biblionumber',''); >+ my $fw; >+ > # loop through all of the records we've retrieved > for ( my $i = $offset ; $i <= $times - 1 ; $i++ ) { > my $marcrecord = MARC::File::USMARC::decode( $marcresults[$i] ); >- my $oldbiblio = TransformMarcToKoha( $dbh, $marcrecord, '' ); >- $oldbiblio->{subtitle} = C4::Biblio::get_koha_field_from_marc('bibliosubtitle', 'subtitle', $marcrecord, ''); >+ >+ if ($bibliotag<10){ >+ $fw = GetFrameworkCode($marcrecord->field($bibliotag)->data); >+ }else{ >+ $fw = GetFrameworkCode($marcrecord->subfield($bibliotag,$bibliosubf)); >+ } >+ >+ my $oldbiblio = TransformMarcToKoha( $dbh, $marcrecord, $fw ); >+ $oldbiblio->{subtitle} = GetRecordValue('subtitle', $marcrecord, $fw); > $oldbiblio->{result_number} = $i + 1; > > # add imageurl to itemtype if there is one >diff --git a/catalogue/detail.pl b/catalogue/detail.pl >index eb40db1..ffa2b24 100755 >--- a/catalogue/detail.pl >+++ b/catalogue/detail.pl >@@ -65,7 +65,7 @@ my $marcauthorsarray = GetMarcAuthors( $record, $marcflavour ); > my $marcsubjctsarray = GetMarcSubjects( $record, $marcflavour ); > my $marcseriesarray = GetMarcSeries($record,$marcflavour); > my $marcurlsarray = GetMarcUrls ($record,$marcflavour); >-my $subtitle = C4::Biblio::get_koha_field_from_marc('bibliosubtitle', 'subtitle', $record, ''); >+my $subtitle = GetRecordValue('subtitle', $record, $fw); > > # Get Branches, Itemtypes and Locations > my $branches = GetBranches(); >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tmpl >index ccfb248..24b7765 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tmpl >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tmpl >@@ -56,7 +56,10 @@ function verify_images() { > <!-- TMPL_IF NAME="AmazonContent" --><div class="yui-gb"><!-- TMPL_ELSE --><div class="yui-g"><!-- /TMPL_IF --> > <div id="catalogue_detail_biblio" class="yui-u first"> > >- <h3><!-- TMPL_VAR NAME="title" --> <!-- TMPL_VAR NAME="subtitle" --></h3> >+ <h3><!-- TMPL_VAR NAME="title" --></h3> >+ <!-- TMPL_LOOP NAME="subtitle" --> >+ <h4><!-- TMPL_VAR NAME="subfield" --></h4> >+ <!-- /TMPL_LOOP --> > <!-- TMPL_UNLESS NAME="item-level_itypes" --><img src="<!-- TMPL_VAR NAME="imageurl" -->" alt="<!-- TMPL_VAR NAME="description" -->" title="<!-- TMPL_VAR NAME="description" -->"><!-- /TMPL_UNLESS --> > <!-- TMPL_IF name="unititle" --><p><!-- TMPL_VAR name="unititle" escape="html" --></p><!-- /TMPL_IF --> > <!-- TMPL_IF NAME="author" --><p>By <a href="/cgi-bin/koha/catalogue/search.pl?q=au:<!-- TMPL_VAR NAME="author" ESCAPE="url" -->"><!-- TMPL_VAR NAME="author" --></a></p><!-- /TMPL_IF --> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tmpl >index dc75841..25dbdab 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tmpl >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tmpl >@@ -222,16 +222,27 @@ $(window).load(function() { > <!-- TMPL_IF name="BiblioDefaultViewmarc" --> > <a class="title" href="/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->"> > <b><!-- TMPL_IF NAME="title" --><!-- TMPL_VAR NAME="title" --><!-- TMPL_ELSE -->No title<!-- /TMPL_IF --></b> >- </a> <!-- TMPL_VAR NAME="subtitle" --> >-<!-- TMPL_IF name="volume" -->,<!-- TMPL_VAR name="volume" --><!-- /TMPL_IF --> <!-- TMPL_IF name="volumeddesc" -->, <!-- TMPL_VAR name="volumeddesc" --><!-- /TMPL_IF --> >+ </a> >+ <!-- TMPL_LOOP NAME="subtitle" --> >+ , <!-- TMPL_VAR NAME="subfield" --> >+ <!-- /TMPL_LOOP --> >+ <!-- TMPL_IF name="volume" -->,<!-- TMPL_VAR name="volume" --><!-- /TMPL_IF --> <!-- TMPL_IF name="volumeddesc" -->, <!-- TMPL_VAR name="volumeddesc" --><!-- /TMPL_IF --> > <!-- TMPL_ELSIF NAME="BiblioDefaultViewisbd" --> > <a class="title" href="/cgi-bin/koha/catalogue/ISBDdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->"> > <!-- TMPL_IF NAME="title" --><!-- TMPL_VAR NAME="title" --><!-- TMPL_ELSE -->No title<!-- /TMPL_IF --> >- </a> <!-- TMPL_VAR NAME="subtitle" --><!-- TMPL_IF name="volume" -->,<!-- TMPL_VAR name="volume" --><!-- /TMPL_IF --> <!-- TMPL_IF name="volumeddesc" -->, <!-- TMPL_VAR name="volumeddesc" --><!-- /TMPL_IF --> >+ </a> >+ <!-- TMPL_LOOP NAME="subtitle" --> >+ , <!-- TMPL_VAR NAME="subfield" --> >+ <!-- /TMPL_LOOP --> >+ <!-- TMPL_IF name="volume" -->,<!-- TMPL_VAR name="volume" --><!-- /TMPL_IF --> <!-- TMPL_IF name="volumeddesc" -->, <!-- TMPL_VAR name="volumeddesc" --><!-- /TMPL_IF --> > <!-- TMPL_ELSE --> > <a class="title" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->"> > <!-- TMPL_IF NAME="title" --><!-- TMPL_VAR NAME="title" --><!-- TMPL_ELSE -->No title<!-- /TMPL_IF --> >- </a> <!-- TMPL_VAR NAME="subtitle" --><!-- TMPL_IF name="volume" -->,<!-- TMPL_VAR name="volume" --><!-- /TMPL_IF --> <!-- TMPL_IF name="volumeddesc" -->, <!-- TMPL_VAR name="volumeddesc" --><!-- /TMPL_IF --> >+ </a> >+ <!-- TMPL_LOOP NAME="subtitle" --> >+ , <!-- TMPL_VAR NAME="subfield" --> >+ <!-- /TMPL_LOOP --> >+ <!-- TMPL_IF name="volume" -->,<!-- TMPL_VAR name="volume" --><!-- /TMPL_IF --> <!-- TMPL_IF name="volumeddesc" -->, <!-- TMPL_VAR name="volumeddesc" --><!-- /TMPL_IF --> > <!-- /TMPL_IF --> > </p> > <!-- TMPL_IF name="summary" --> >-- >1.6.0.4 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 3550
:
1408
|
1409
|
1410
|
1411
|
2967
|
3192