This file contains hidden or 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
| #cover_obalkyknih, #catalogue_detail_biblio { | |
| float:left; | |
| } | |
| #cover_obalkyknih { | |
| margin-right: 10px; | |
| margin-top: 5px; | |
| } |
This file contains hidden or 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
| <?xml version="1.0" encoding="UTF-8" ?> | |
| <config xmlns="http://github.com/wimmuskee/shell-harvester/"> | |
| <!-- default record save location --> | |
| <recordpath>/root/shell-oaiharvester/harvested</recordpath> | |
| <!-- temporary files are stored here --> | |
| <temppath>/tmp/shell-oaiharvester</temppath> | |
| <!-- location of log file --> | |
| <logfile>/root/shell-oaiharvester/oaiharvester-log.csv</logfile> | |
| <!-- type of logging: | |
| "combined" putting all instance logs in one file (default), or |
This file contains hidden or 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
| public function getSerie() | |
| { | |
| $ret = []; | |
| $fields = $this->getMarcRecord()->getFields('787'); | |
| foreach ($fields as $field) { | |
| if (strpos($field->getSubfield('i')->getData(), 'Z cyklu') !== false) { | |
| $subfield_g = $field->getSubfield('g'); | |
| $subfield_t = $field->getSubfield('t'); | |
| $ret[] = [ |
This file contains hidden or 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
| <?php // templates/RecordTab/holdingsils.phtml ?> | |
| <? if (count($holdings)): ?> | |
| <? if (($this->ils()->getHoldsMode() == 'driver' && !empty($holdings)) || $this->ils()->getTitleHoldsMode() == 'driver'): ?> | |
| <? if ($account->loginEnabled() && $offlineMode != 'ils-offline'): ?> | |
| <? if (!$user): ?> | |
| <div class="alert alert-info"> | |
| <?=$this->translate("hold_profile_html2", array('%%url%%' => $this->currentPath() . '?catalogLogin=true'))?> | |
| </div> | |
| <? elseif (!$user->cat_username): ?> |
This file contains hidden or 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
| /* predvyplneni formulare v editaci dosleho periodika */ | |
| /* set item type for newspaper */ | |
| $("#ser_serials-edit #serials_edit input[name='subscriptionid'][value='4'], #ser_serials-edit #serials_edit input[name='subscriptionid'][value='5'], #ser_serials-edit #serials_edit input[name='subscriptionid'][value='6'], #ser_serials-edit #serials_edit input[name='subscriptionid'][value='7'], #ser_serials-edit #serials_edit input[name='subscriptionid'][value='8'], #ser_serials-edit #serials_edit input[name='subscriptionid'][value='9']").parent().find("[id^='subfield'][id$='y'] select").first().val("NO"); | |
| /* set human readable date to text date field for newspaper */ | |
| today = new Date(); | |
| todayHuman = today.getDate() + '. ' + (today.getMonth() + 1) + '. ' + today.getFullYear(); | |
| $("#ser_serials-edit #serials_edit input[name='subscriptionid'][value='4'], #ser_serials-edit #serials_edit input[name='subscriptionid'][value='5'], #ser_serials-edit #serials_edit input[name='subscriptionid'][value='6'], #ser_serials- |
This file contains hidden or 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
| <!-- rozšíření schématu solru o specifické pole - | |
| pro funkčnost není nutné, ale pokud se nepoužije, je třeba odpovídajícím | |
| způsobem upravit šablonu | |
| --> | |
| <!-- Zakony pro lidi --> | |
| <field name="law_doctype" type="string" indexed="true" stored="true" multiValued="true"/> |
This file contains hidden or 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 hidden or 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
| UPDATE biblio b JOIN biblioitems bi ON b.biblionumber = bi.biblionumber | |
| SET b.copyrightdate = SUBSTRING(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(ExtractValue(bi.marcxml, '//datafield[@tag="264"]/subfield[@code="c"]'), "[", ""), "]", ""), "?", ""), "c", ""), "©", ""), "℗", ""), -4) | |
| WHERE copyrightdate IS NULL AND frameworkcode = "KN"; | |
| SELECT b.frameworkcode, b.biblionumber, b.copyrightdate, | |
| SUBSTRING(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(ExtractValue(bi.marcxml, '//datafield[@tag="264"]/subfield[@code="c"]'), "[", ""), "]", ""), "?", ""), "c", ""), "©", ""),"℗", ""), -4) as year | |
| FROM biblio b JOIN biblioitems bi ON b.biblionumber = bi.biblionumber | |
| WHERE copyrightdate IS NULL | |
| LIMIT 10; |
This file contains hidden or 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
| SELECT i.itype, i.ccode, | |
| (SELECT COUNT(*) FROM items i2 WHERE i2.dateaccessioned < @From AND i2.homebranch = @Library AND i2.ccode = i.ccode) AS "Počátek", | |
| COUNT(*) AS "Přírůstek", | |
| (SELECT COUNT(*) FROM items i3 WHERE i3.withdrawn_on BETWEEN @From AND @To AND i3.homebranch = @Library AND i3.ccode = i.ccode) AS "Úbytek", | |
| (SELECT COUNT(*) FROM items i4 WHERE i4.dateaccessioned <= @To AND i4.homebranch = @Library AND i4.ccode = i.ccode) AS Konec | |
| FROM items i | |
| JOIN (SELECT @Library:=<<Knihovna|branches>> COLLATE utf8_unicode_ci, @From:=<<Od|date>>, @To:=<<Do|date>>) as vars | |
| WHERE i.homebranch = @Library | |
| AND i.dateaccessioned BETWEEN @From AND @To | |
| GROUP BY i.itype, i.ccode |
This file contains hidden or 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
| [ | |
| { | |
| "op": "core/column-split", | |
| "description": "Split column rcislo by field lengths", | |
| "engineConfig": { | |
| "facets": [], | |
| "mode": "row-based" | |
| }, | |
| "columnName": "rcislo", | |
| "guessCellType": true, |