This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[% USE ItemTypes %] | |
[% BLOCK detail %] | |
<p style="font-size: 1.1em; border-bottom: 1px solid black;"> | |
[% IF checkout.item.biblio.author %]<i>[% checkout.item.biblio.author | $Remove_MARC_punctuation %]</i>:[% END %] | |
<strong>[% checkout.item.biblio.title | $Remove_MARC_punctuation %]</strong> | |
[% record = checkout.item.biblio.metadata.record %] | |
[% field787 = record.field('787') %] | |
[% IF field787 %]. | |
[% field787.subfield('t') %] [% field787.subfield('g') %]. | |
[% END %] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[% USE KohaDates %] | |
<p><small>Tisk: [% today | $KohaDates with_hours => 1 %]</small></p> | |
<h2 style="border-bottom: 1px solid black; margin-bottom: 1em;">[% branch.branchname %]</h2> | |
<div style="font-size: 1.2em; font-weight: bold;"><i>[% biblio.author %]</i>:<br />[% biblio.title %]</div> | |
<ul> | |
<li>Č. kód: [% item.barcode %]</li> | |
<li>Čeká do: <strong>[% hold.expirationdate | $KohaDates%]</strong></li> | |
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[% USE KohaDates %] | |
[% BLOCK detail %] | |
<p style="font-size: 1.1em; border-bottom: 1px dotted black;"> | |
[% IF checkout.item.biblio.author %]<i>[% checkout.item.biblio.author | remove(',$') %]</i>:[% END %] | |
<strong>[% checkout.item.biblio.title | remove(' \/$') | remove(' :$') %]</strong> | |
[%- IF checkout.item.enumchron %], [% checkout.item.enumchron %][% END %] | |
<br /> | |
Půjčeno od: [% checkout.issuedate | $KohaDates %]<br /> | |
Vrátit do: <b>[% checkout.date_due | $KohaDates %]</b><br /> | |
[% branch.branchname %] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# dependencies: xml-twig-tools, wget | |
apikey=test | |
collection=cs | |
export VUFIND_HOME="/usr/local/vufind" | |
export VUFIND_LOCAL_DIR="/usr/local/vufind/local" | |
cd /usr/local/vufind/local/harvest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /usr/local/vufind2/local/import/marc_local.properties | |
withdrawn_status = 9930 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
format: | |
marcxml: | |
metadataPrefix: marcxml | |
metadataNamespace: http://www.loc.gov/MARC21/slim http://www.loc.gov/standards/marcxml/schema/MARC21slim | |
schema: http://www.loc.gov/MARC21/slim http://www.loc.gov/standards/marcxml/schema/MARC21slim.xsd | |
xsl_file: /home/koha/xslt/ModifyMARC.xsl | |
marc21: | |
metadataPrefix: marc21 | |
metadataNamespace: http://www.loc.gov/MARC21/slim http://www.loc.gov/standards/marcxml/schema/MARC21slim | |
schema: http://www.loc.gov/MARC21/slim http://www.loc.gov/standards/marcxml/schema/MARC21slim.xsd |