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
//Dans les XSLT au niveau des 7xx ajouter : | |
<a> | |
<xsl:attribute name="href"><xsl:text></xsl:text></xsl:attribute> | |
<xsl:attribute name="class"><xsl:text>wikipedia</xsl:text></xsl:attribute> | |
<xsl:attribute name="target"><xsl:text>_blank</xsl:text></xsl:attribute> | |
<xsl:value-of select="marc:subfield[@code='b']"/> | |
<xsl:text>+</xsl:text> | |
<xsl:value-of select="marc:subfield[@code='a']"/> | |
</a> |
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
{ | |
"translatorID": "0e2235e7b-babf-413c-9acf-f27cce5f055d", | |
"label": "Unimarc MarcXML", | |
"creator": "Etienne Cavalie", | |
"target": "xml", | |
"minVersion": "2.1.9", | |
"maxVersion": "", | |
"priority": 50, | |
"configOptions": { | |
"dataMode": "xml/dom" |
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 | |
//this script use the TMDb PHP API class from glamorous https://github.com/glamorous/TMDb-PHP-API | |
function getInitials($name){ | |
$words=explode(" ",$name); | |
$inits=''; | |
foreach($words as $word){ | |
$inits.=strtoupper(substr($word,0,1)); | |
$inits.=' '; |
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
From 2b5c55774c7f0f1107bbbb814cd7070c4f797da7 Mon Sep 17 00:00:00 2001 | |
From: jsicot <[email protected]> | |
Date: Fri, 16 Nov 2012 14:01:30 +0100 | |
Subject: [PATCH] OaiPmhRepository - Relation : add square_thumbnail for item | |
--- | |
metadata/OaiDc.php | 27 +++++++++++++++++++++++---- | |
1 file changed, 23 insertions(+), 4 deletions(-) | |
diff --git a/metadata/OaiDc.php b/metadata/OaiDc.php |
NewerOlder