-
Notifications
You must be signed in to change notification settings - Fork 3
/
repositoryToVdexMapping.xsl
68 lines (64 loc) · 4.1 KB
/
repositoryToVdexMapping.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.openarchives.org/OAI/2.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.0">
<xsl:output method="xml" indent="no" encoding="UTF-8" standalone="no"/>
<!-- Include VDEX mappings -->
<xsl:include href="edurep://discipline_20060628"/>
<xsl:include href="edurep://domeinoverstijgende_vakken_mbo_2009"/>
<xsl:include href="edurep://educationallevel_20060628"/>
<xsl:include href="edurep://educationallevel_20071115"/>
<xsl:include href="edurep://kerndoelen_po_04_2006"/>
<xsl:include href="edurep://kerndoelen_onderbouw_vo_20071115"/>
<xsl:include href="edurep://referentiekader_taal_en_rekenen_czp_2009"/>
<xsl:include href="edurep://vakaanduiding_po_2009"/>
<xsl:include href="edurep://vakaanduiding_vo_20071115"/>
<!-- Map repositories and VDEX -->
<xsl:template name="collectionMapping">
<xsl:choose>
<xsl:when test="$collectionName = 'biodesk'">
<xsl:call-template name="vdex_classification_educationallevel_czp_20071115_oldToNew"/>
<xsl:call-template name="vdex_classification_kerndoelen_onderbouw_vo_20071115_oldToNew"/>
<xsl:call-template name="vdex_classification_kerndoelen_po_04_2006_oldToNew"/>
<xsl:call-template name="vdex_classification_vakaanduidingen_po_2009_oldToNew"/>
<xsl:call-template name="vdex_classification_vakaanduidingen_vo_20071115_oldToNew"/>
</xsl:when>
<xsl:when test="$collectionName = 'digibordopschool'">
<xsl:call-template name="vdex_classification_discipline_czp_20060628_oldToNew"/>
<xsl:call-template name="vdex_classification_educationallevel_czp_20071115_oldToNew"/>
<xsl:call-template name="vdex_classification_kerndoelen_onderbouw_vo_20071115_oldToNew"/>
<xsl:call-template name="vdex_classification_kerndoelen_po_04_2006_oldToNew"/>
<xsl:call-template name="vdex_classification_vakaanduidingen_po_2009_oldToNew"/>
<xsl:call-template name="vdex_classification_vakaanduidingen_vo_20071115_oldToNew"/>
</xsl:when>
<xsl:when test="$collectionName = 'FreudenthalInstituut'">
<xsl:call-template name="vdex_classification_educationallevel_czp_20060628_oldToNew"/>
<xsl:call-template name="vdex_classification_educationallevel_czp_20071115_oldToNew"/>
<xsl:call-template name="vdex_classification_referentiekader_taal_en_rekenen_czp_2009_oldToNew"/>
<xsl:call-template name="vdex_classification_vakaanduidingen_po_2009_oldToNew"/>
<xsl:call-template name="vdex_classification_vakaanduidingen_vo_20071115_oldToNew"/>
</xsl:when>
<xsl:when test="$collectionName = 'geologievannederland'">
<xsl:call-template name="vdex_classification_educationallevel_czp_20071115_oldToNew"/>
<xsl:call-template name="vdex_classification_vakaanduidingen_po_2009_oldToNew"/>
<xsl:call-template name="vdex_classification_vakaanduidingen_vo_20071115_oldToNew"/>
</xsl:when>
<xsl:when test="$collectionName = 'krantindeklas'">
<xsl:call-template name="vdex_classification_educationallevel_czp_20071115_oldToNew"/>
<xsl:call-template name="vdex_classification_vakaanduidingen_po_2009_oldToNew"/>
<xsl:call-template name="vdex_classification_kerndoelen_po_04_2006_oldToNew"/>
<xsl:call-template name="vdex_classification_vakaanduidingen_vo_20071115_oldToNew"/>
<xsl:call-template name="vdex_classification_kerndoelen_onderbouw_vo_20071115_oldToNew"/>
<xsl:call-template name="vdex_classification_domeinoverstijgende_vakken_mbo_2009_oldToNew"/>
</xsl:when>
<xsl:when test="$collectionName = 'NME'">
<xsl:call-template name="vdex_classification_educationallevel_czp_20071115_oldToNew"/>
</xsl:when>
<xsl:when test="$collectionName = 'nmegids'">
<xsl:call-template name="vdex_classification_educationallevel_czp_20071115_oldToNew"/>
<xsl:call-template name="vdex_classification_vakaanduidingen_po_2009_oldToNew"/>
</xsl:when>
<xsl:when test="$collectionName = 'webkwestie'">
<xsl:call-template name="vdex_classification_educationallevel_czp_20060628_oldToNew"/>
<xsl:call-template name="vdex_classification_vakaanduidingen_po_2009_oldToNew"/>
</xsl:when>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>