Skip to content

Instantly share code, notes, and snippets.

View jsicot's full-sized avatar

Julien Sicot jsicot

View GitHub Profile
function resolveBasesearch(openurl){
var url = "http://catalogue.bu.univ-rennes2.fr/opac-tmpl/rennes2/svc/getBasesearch.php"+openurl;
console.log(url);
jQuery.ajax({
url : url,
dataType: 'jsonp',
success : function(data) {
if (data['response']['numFound'] !== '0') {
jQuery(".details").after("<div id='OA' class='details row span10'></div>");
<?php
$openurl = http_build_query($_GET, null, '&');
$ou = new openURLParser();
$ou->convertOpenURL($openurl);
$ou->parseData();
/* var_dump($ou->query); */
<?php
$openurl = http_build_query($_GET, null, '&');
$url = 'http://airway.lib.hokudai.ac.jp/airway/openURL?'.$openurl ;
$airway = file_get_contents($url);
$airway = str_replace(array("\n", "\r", "\t", "jnl:"), '', $airway);
$airway = trim(str_replace('"', "'", $airway ));
$airway = simplexml_load_string($airway);
header('Content-Type: text/javascript; charset=utf8');
@jsicot
jsicot / addOptionsInSelectLangs.js
Created February 4, 2014 12:17
Ajouters des langues dans la recherche avancée de l'opac Koha
jQuery(document).ready(function() {
if (jQuery('body#advsearch').size() > 0) {
addOptionsInSelectLangs();
jQuery('#subtypes_unimarc fieldset:first-child').hide();
}
});
function addOptionsInSelectLangs(){
@jsicot
jsicot / local.js
Created October 16, 2013 15:53
Fix for summon 2.0 localization
if(__locale == "fr") {
jQuery(document).ready(function($){
$('div.languageSwitcher a.customSecondaryLink').text("Français ").append("<b class='caret'></b>");
})
__locale == "fr-FR";
__summonLocale = 'fr-FR';
__translations = {"Always check your references for accuracy":"Vérifiez toujours l'exactitude de vos références","Czech":"Tchèque","Kannada":null,"Clear":"Effacer","to present":"jusqu'à aujourd'hui","Sep":"Sept.","Danish":null,"only in unstable":"only in unstable","Publication":"Publication","Poem":"Poème","Newspaper Article":"Article de Presse","Type (e.g. book, journal article, etc.)":"Type (p. ex. livre, article de périodique, etc.)","Western Frisian":"Frison occidental","Standard":"Norme","Image (if any)":"Image (le cas échéant)","Journal Article":"Article de périodique","Publisher":"Éditeur","Azerbaijani":"Azerbaïdjanais","Serbian":"Serbe","inupiaq":null,"About":"À-propos","Try different keywords.":"Essayez avec d'autres mots-clés.","Kit":"Ensemble multi-supports","Personal Narrative":"Récit"
@jsicot
jsicot / gist:7008816
Last active December 25, 2015 16:49
Quick fix for summon localization
if((__locale == "en-US" && __summonLocale = 'en') || __locale == "en") {
__translations = {"Always check your references for accuracy":"Vérifiez toujours l'exactitude de vos références","Czech":"Tchèque","Kannada":null,"Clear":"Effacer","to present":"jusqu'à aujourd'hui","Sep":"Sept.","Danish":null,"only in unstable":"only in unstable","Publication":"Publication","Poem":"Poème","Newspaper Article":"Article de Presse","Type (e.g. book, journal article, etc.)":"Type (p. ex. livre, article de périodique, etc.)","Western Frisian":"Frison occidental","Standard":"Norme","Image (if any)":"Image (le cas échéant)","Journal Article":"Article de périodique","Publisher":"Éditeur","Azerbaijani":"Azerbaïdjanais","Serbian":"Serbe","inupiaq":null,"About":"À-propos","Try different keywords.":"Essayez avec d'autres mots-clés.","Kit":"Ensemble multi-supports","Personal Narrative":"Récit","Exclude Newspaper Articles":"Exclure les articles de presse","Available Online":"Accessible en ligne","Note This list of saved items may not
@jsicot
jsicot / bookreaderToItemShow
Created July 16, 2013 14:33
add bookreader viewer
echo get_specific_plugin_hook_output('BookReader' , 'public_items_show', array('view' => $this,'item' => $item,'page' => '0','embed_functions' => false,));
@jsicot
jsicot / UNIMARCslim2OPACDetail.xsl
Created March 22, 2013 10:51
UNIMARCslim2OPACDetail.xsl
<!DOCTYPE stylesheet [<!ENTITY nbsp "&#160;" >]>
<xsl:stylesheet version="1.0" xmlns:marc="http://www.loc.gov/MARC21/slim" xmlns:items="http://www.koha-community.org/items" xmlns:intralinks="http://www.koha.org/intralinks" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" exclude-result-prefixes="marc items">
<xsl:import href="UNIMARCslimUtils.xsl"/>
<xsl:output method="xml" indent="yes" omit-xml-declaration="yes"/>
<xsl:key name="intralinks" match="intralinks:intralinks" use="intralinks:ppn"/>
<xsl:template match="/">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="marc:record">
@jsicot
jsicot / UNIMARCslimUtils.xsl
Created March 22, 2013 10:51
UNIMARCslimUtils.xsl
<!DOCTYPE stylesheet [<!ENTITY nbsp "&#160;" >]>
<xsl:stylesheet version="1.0" xmlns:marc="http://www.loc.gov/MARC21/slim" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template name="datafield">
<xsl:param name="tag"/>
<xsl:param name="ind1"><xsl:text> </xsl:text></xsl:param>
<xsl:param name="ind2"><xsl:text> </xsl:text></xsl:param>
<xsl:param name="subfields"/>
<xsl:element name="datafield">
<xsl:attribute name="tag">
<xsl:value-of select="$tag"/>
@jsicot
jsicot / UNIMARCslim2OPACResults.xsl
Last active December 15, 2015 06:59
UNIMARCslim2OPACResults.xsl
<!DOCTYPE stylesheet [<!ENTITY nbsp "&#160;" >]>
<!-- $Id: MARC21slim2DC.xsl,v 1.1 2003/01/06 08:20:27 adam Exp $ -->
<xsl:stylesheet version="1.0" xmlns:re = 'http://exslt.org/regular-expressions' xmlns:marc="http://www.loc.gov/MARC21/slim" xmlns:items="http://www.koha-community.org/items" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" exclude-result-prefixes="marc items">
<xsl:import href="UNIMARCslimUtils.xsl"/>
<xsl:output method = "html" indent="yes" omit-xml-declaration = "yes" encoding="UTF-8"/>
<xsl:key name="item-by-status" match="items:item" use="items:status"/>
<xsl:key name="item-by-status-and-branch" match="items:item" use="concat(items:status, ' ', items:homebranch)"/>
<xsl:template match="/">
<xsl:apply-templates/>