Skip to content

Instantly share code, notes, and snippets.

{"@context":"http:\/\/iiif.io\/api\/presentation\/2\/context.json","@id":"https:\/\/dams.antwerpen.be\/iiif\/A1D5mRT8r8gPgYAnaWcuennB\/manifest","@type":"sc:Manifest","label":"Opvoering van De Prijs door het Reizend Volkstheater. <p> Op de foto staan Roger Thoelen (Victor Franz) en Frans Vercammen (Gregory Solomon).","thumbnail":{"@id":"https:\/\/media.antwerpen.be\/media\/18\/p\/p22aXMKJKmTOZVjKlmsX6lHb\/p22aXMKJKmTOZVjKlmsX6lHb.jpg","@type":"dctypes:Image"},"sequences":[{"@id":"https:\/\/media.antwerpen.be\/media\/iiif\/A1D5mRT8r8gPgYAnaWcuennB\/sequence\/normal","@type":"sc:Sequence","rendering":[{"label":"tg_lhph_48219.tif","@id":"https:\/\/s3-ant1.antwerpen.be\/prod-digitalassets-dams\/U\/USUOMcB7QlQETCiUZRVH9AH3\/tg_lhph_48219.tif","format":"image\/tiff"}],"viewingDirection":"left-to-right","viewingHint":"paged","canvases":[{"@id":"https:\/\/media.antwerpen.be\/media\/iiif\/A1D5mRT8r8gPgYAnaWcuennB\/canvas\/normal","@type":"sc:Canvas","label":"Opvoering van De Prijs door het Reizend Volkstheater. <p> Op
{"@context":"http:\/\/iiif.io\/api\/presentation\/2\/context.json","@id":"https:\/\/dams.antwerpen.be\/iiif\/A1D5mRT8r8gPgYAnaWcuennB\/manifest","@type":"sc:Manifest","label":"Opvoering van De Prijs door het Reizend Volkstheater. <p> Op de foto staan Roger Thoelen (Victor Franz) en Frans Vercammen (Gregory Solomon).","thumbnail":{"@id":"https:\/\/media.antwerpen.be\/media\/18\/p\/p22aXMKJKmTOZVjKlmsX6lHb\/p22aXMKJKmTOZVjKlmsX6lHb.jpg","@type":"dctypes:Image"},"sequences":[{"@id":"https:\/\/media.antwerpen.be\/media\/iiif\/A1D5mRT8r8gPgYAnaWcuennB\/sequence\/normal","@type":"sc:Sequence","rendering":[{"label":"tg_lhph_48219.tif","@id":"https:\/\/s3-ant1.antwerpen.be\/prod-digitalassets-dams\/U\/USUOMcB7QlQETCiUZRVH9AH3\/tg_lhph_48219.tif","format":"image\/tiff"}],"viewingDirection":"left-to-right","viewingHint":"paged","canvases":[{"@id":"https:\/\/media.antwerpen.be\/media\/iiif\/A1D5mRT8r8gPgYAnaWcuennB\/canvas\/normal","@type":"sc:Canvas","label":"Opvoering van De Prijs door het Reizend Volkstheater. <p> Op
{
"@context": "http://iiif.io/api/presentation/2/context.json",
"@id": "https://dams.antwerpen.be/iiif/A1D5mRT8r8gPgYAnaWcuennB/manifest",
"@type": "sc:Manifest",
"label": "DAMS LOCALBREW - label - Opvoering van De Prijs door het Reizend Volkstheater. &lt;p&gt; Op de foto staan Roger Thoelen (Victor Franz) en Frans Vercammen (Gregory Solomon).",
"thumbnail": {
"@id": "https://media.antwerpen.be/media/18/p/p22aXMKJKmTOZVjKlmsX6lHb/p22aXMKJKmTOZVjKlmsX6lHb.jpg",
"@type": "dctypes:Image"
},
"sequences": [
{
"@context": "http://iiif.io/api/presentation/2/context.json",
"@id": "https://dams.antwerpen.be/iiif/A1D5mRT8r8gPgYAnaWcuennB/manifest",
"@type": "sc:Manifest",
"label": "DAMS DIRECT - label - Opvoering van De Prijs door het Reizend Volkstheater. <p> Op de foto staan Roger Thoelen (Victor Franz) en Frans Vercammen (Gregory Solomon).",
"thumbnail": {
"@id": "https://media.antwerpen.be/media/18/p/p22aXMKJKmTOZVjKlmsX6lHb/p22aXMKJKmTOZVjKlmsX6lHb.jpg",
"@type": "dctypes:Image"
},
"sequences": [
@rvdb
rvdb / schematron+xslt.sch
Created March 10, 2017 20:28
a Schematron file and XML test file, illustrating how (any?) XSLT instructions inside in Schematron patterns just seem to be executed
<?xml version="1.0" encoding="UTF-8"?>
<sch:schema xmlns:sch="http://purl.oclc.org/dsdl/schematron" queryBinding="xslt2"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:local="local">
<!-- all XSLT -->
<xsl:variable name="test">test value</xsl:variable>
<xsl:template name="get.test">
<xsl:value-of select="local:get.test()"/>
@rvdb
rvdb / gist:85147b23ad30c37433b0
Created March 2, 2016 16:22
generate JQuery UI sliders with scales
http://jsfiddle.net/ux4dz85n/
@rvdb
rvdb / ns_main.xq
Created October 25, 2013 10:01
two test files demonstrating that eXist-2.1 seems to treat 'xquery' as a reserved namespace prefix in an imported module
xquery version "3.0";
import module namespace test="testimport" at "ns_module.xq";
declare namespace xquery="test";
declare variable $xquery:test := 'test';
test:echo($xquery:test)
@rvdb
rvdb / ns_standalone.xq
Created October 25, 2013 09:58
a test file demonstrating that eXist-2.1 has no problems when 'xquery' is used as namespace prefix in a main module
xquery version "3.0";
declare namespace xquery="test";
declare variable $xquery:test := 'test';
$xquery:test