View | Details | Raw Unified | Return to bug 28639
Collapse All | Expand All

(-)a/Koha/OAI/Server/Repository.pm (-1 / +3 lines)
Lines 40-45 use C4::Biblio qw( GetFrameworkCode ); Link Here
40
use C4::Charset qw( StripNonXmlChars );
40
use C4::Charset qw( StripNonXmlChars );
41
use Koha::XSLT::Base;
41
use Koha::XSLT::Base;
42
use Koha::Biblios;
42
use Koha::Biblios;
43
use Koha::Filter::MARC::EmbedSeeFromHeadings;
43
44
44
use MARC::Record;
45
use MARC::Record;
45
46
Lines 175-180 sub get_biblio_marcxml { Link Here
175
    my ( $self, $biblionumber, $format ) = @_;
176
    my ( $self, $biblionumber, $format ) = @_;
176
    my $with_items   = 0;
177
    my $with_items   = 0;
177
    my $expanded_avs = 0;
178
    my $expanded_avs = 0;
179
    my $embedseefromheadings = C4::Context->preference('OAI-PMH:EmbedSeeFromInBibRecord') || 0;
178
    if ( my $conf = $self->{conf} ) {
180
    if ( my $conf = $self->{conf} ) {
179
        $with_items   = $conf->{format}->{$format}->{include_items  };
181
        $with_items   = $conf->{format}->{$format}->{include_items  };
180
        $expanded_avs = $conf->{format}->{$format}->{expanded_avs};
182
        $expanded_avs = $conf->{format}->{$format}->{expanded_avs};
Lines 194-200 sub get_biblio_marcxml { Link Here
194
        $record         = $biblio->metadata->record_strip_nonxml( { embed_items => $with_items, opac => 1 } );
196
        $record         = $biblio->metadata->record_strip_nonxml( { embed_items => $with_items, opac => 1 } );
195
    }
197
    }
196
    if ($record) {
198
    if ($record) {
197
199
        Koha::Filter::MARC::EmbedSeeFromHeadings->filter($record) if $embedseefromheadings;
198
        my $rules = C4::Context->yaml_preference('OpacHiddenItems') // {};
200
        my $rules = C4::Context->yaml_preference('OpacHiddenItems') // {};
199
        if ( $biblio->hidden_in_opac( { rules => $rules } ) ) {
201
        if ( $biblio->hidden_in_opac( { rules => $rules } ) ) {
200
            return;
202
            return;
(-)a/installer/data/mysql/atomicupdate/bug_28639-add_EmbedSeeFromInBibRecord_syspref.pl (+21 lines)
Line 0 Link Here
1
use Modern::Perl;
2
3
return {
4
    bug_number  => "bug_28639",
5
    description => "Add embed see-from headings for oai",
6
    up          => sub {
7
        my ($args) = @_;
8
        my ( $dbh, $out ) = @$args{qw(dbh out)};
9
10
        $dbh->do(
11
            q{
12
            INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type)
13
            VALUES (
14
                'EmbedSeeFromInBibRecord', '0', NULL, 'Add embed see-from headings for OAI', 'YesNo'
15
                )
16
            }
17
        );
18
19
        say $out "Syspref EmbedSeeFromInBibRecord for OAI";
20
    },
21
};
(-)a/installer/data/mysql/mandatory/sysprefs.sql (+1 lines)
Lines 446-451 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
446
('OAI-PMH:AutoUpdateSetsEmbedItemData', '0', '', 'Embed item information when automatically updating OAI sets. Requires OAI-PMH:AutoUpdateSets syspref to be enabled', 'YesNo'),
446
('OAI-PMH:AutoUpdateSetsEmbedItemData', '0', '', 'Embed item information when automatically updating OAI sets. Requires OAI-PMH:AutoUpdateSets syspref to be enabled', 'YesNo'),
447
('OAI-PMH:ConfFile','',NULL,'If empty, Koha OAI Server operates in normal mode, otherwise it operates in extended mode.','File'),
447
('OAI-PMH:ConfFile','',NULL,'If empty, Koha OAI Server operates in normal mode, otherwise it operates in extended mode.','File'),
448
('OAI-PMH:DeletedRecord','persistent','Koha\'s deletedbiblio table will never be deleted (persistent), might be deleted (transient), or will never have any data in it (no)','transient|persistent|no','Choice'),
448
('OAI-PMH:DeletedRecord','persistent','Koha\'s deletedbiblio table will never be deleted (persistent), might be deleted (transient), or will never have any data in it (no)','transient|persistent|no','Choice'),
449
('OAI-PMH:EmbedSeeFromInBibRecord','0','','Embed see-from headings in bibliographic records exposed through OAI repository.','YesNo'),
449
('OAI-PMH:MaxCount','50',NULL,'OAI-PMH maximum number of records by answer to ListRecords and ListIdentifiers queries','Integer'),
450
('OAI-PMH:MaxCount','50',NULL,'OAI-PMH maximum number of records by answer to ListRecords and ListIdentifiers queries','Integer'),
450
('OnSiteCheckoutAutoCheck','0','','Enable/Do not enable onsite checkout by default if last checkout was an onsite checkout','YesNo'),
451
('OnSiteCheckoutAutoCheck','0','','Enable/Do not enable onsite checkout by default if last checkout was an onsite checkout','YesNo'),
451
('OnSiteCheckouts','0','','Enable/Disable the on-site checkouts feature','YesNo'),
452
('OnSiteCheckouts','0','','Enable/Disable the on-site checkouts feature','YesNo'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/web_services.pref (-1 / +6 lines)
Lines 91-96 Web services: Link Here
91
                  transient: might be emptied or truncated at some point (transient)
91
                  transient: might be emptied or truncated at some point (transient)
92
                  no: will never have any data in it (no)
92
                  no: will never have any data in it (no)
93
            - "."
93
            - "."
94
        -
95
            - pref: "OAI-PMH:EmbedSeeFromInBibRecord"
96
              choices:
97
                1: Enable
98
                0: "Don't enabled"
99
            - "Embed <em>see from</em> (non-preferred form) headings in bibliographic records exposed through OAI repository."
94
    ILS-DI:
100
    ILS-DI:
95
        -
101
        -
96
            - pref: ILS-DI
102
            - pref: ILS-DI
97
- 

Return to bug 28639