-
Notifications
You must be signed in to change notification settings - Fork 0
/
collections_in_repositories.xsl
40 lines (35 loc) · 1.54 KB
/
collections_in_repositories.xsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:math="http://www.w3.org/2005/xpath-functions/math" exclude-result-prefixes="xs math"
version="3.0">
<xsl:variable name="arts_sub_collections" select="map{
'VRC': 'Visual Resources Collection'
}"/>
<xsl:variable name="beinecke_sub_collections" select="map{
'JWJ': 'James Weldon Johnson Memorial Collection',
'OSB': 'James Marshall and Marie-Louise Osborn Collection',
'OSBORN': 'James Marshall and Marie-Louise Osborn Collection',
'WA': 'Yale Collection of Western Americana',
'YCAL': 'Yale Collection of American Literature',
'YCGL': 'Yale Collection of German Literature',
(: remove once beinecke.livingtheatre is finished :)
'Multiple': 'Yale Collection of American Literature'
}"/>
<xsl:variable name="mssa_sub_collections" select="map{
'RU': 'University Archives',
'MS': 'Manuscript Collections'
}"/>
<xsl:variable name="ypm_sub_collections" select="map{
'ANTAR': 'Anthropology',
'BOTAR': 'Botany',
'ENTAR': 'Entomology',
'IPAR': 'Invertebrate Paleontology',
'IZAR': 'Invertebrate Zoology',
'MINAR': 'Mineralogy & Meteoritics',
'PBAR': 'Paleobotany',
'VPAR': 'Vertebrate Paleontology',
'VZAR': 'Vertebrate Zoology',
'YPMAR': 'Archives'
}"/>
</xsl:stylesheet>