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 | |
cd /usr/share/koha/misc/translator/po | |
rm cs-CZ* | |
wget http://translate.koha-community.org/download/cs/316/cs-CZ-i-opac-t-prog-v-3006000.po | |
wget http://translate.koha-community.org/download/cs/316/cs-CZ-i-staff-t-prog-v-3006000.po | |
wget http://translate.koha-community.org/download/cs/316/cs-CZ-opac-ccsr.po | |
wget http://translate.koha-community.org/download/cs/316/cs-CZ-opac-bootstrap.po | |
wget http://translate.koha-community.org/download/cs/316/cs-CZ-staff-help.po | |
wget http://translate.koha-community.org/download/cs/316/cs-CZ-pref.po | |
koha-translate -u cs-CZ |
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/bin/env python3 | |
# install dependencies: | |
# pip install base45 cbor2 (cwt - not used here) | |
import sys | |
import zlib | |
from base45 import b45decode | |
from cbor2 import loads |
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
#cover_obalkyknih, #catalogue_detail_biblio { | |
float:left; | |
padding-top: 0.5em; | |
padding-bottom: 0.5em; | |
} |
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
# ---------------------------------------------------------------------- | |
# iamrobert.com | |
# JOOMLA 3 HTACCESS | |
# October 29, 2019 | |
# Replace https://www.domain.com/ with current site URL (LINE 625) | |
# Update OSMAP SITEMAP.XML (LINE 637) | |
# ---------------------------------------------------------------------- | |
# ---------------------------------------------------------------------- | |
# | SITEGROUND PHP 7 RULES |
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
<?php | |
namespace ocra\libraryThing; | |
/** | |
* Search LibraryThing's Common Knowledge API for a book and return and array with author/title and maybe year. | |
*/ | |
function find_by_isbn($isbn) { | |
$lturl = 'http://www.librarything.com/services/rest/1.1/?method=librarything.ck.getwork&isbn=%s&apikey=%s'; | |
$lturl = sprintf($lturl, $isbn, LIBRARYTHING_API_KEY); |