-
Notifications
You must be signed in to change notification settings - Fork 36
/
record-conv.xml
39 lines (39 loc) · 2.13 KB
/
record-conv.xml
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
<backend syntax="xml">
<xslt stylesheet="xsl/marc2bibframe2.xsl">
<param name="idsource" value="http://id.loc.gov/vocabulary/organizations/dlc"/>
</xslt>
<rdf-lookup timeout="3">
<namespace prefix="bf" href="http://id.loc.gov/ontologies/bibframe/"/>
<namespace prefix="bflc" href="http://id.loc.gov/ontologies/bflc/"/>
<namespace prefix="rdf" href="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/>
<lookup xpath="//bf:Agent[contains(@rdf:about,'example.org')]">
<key field="bflc:name11MatchKey"/>
<key field="bflc:name00MatchKey"/>
<key field="bflc:name10MatchKey"/>
<server url="https://id.loc.gov/authorities/names/label/%s" method="HEAD"/>
</lookup>
</rdf-lookup>
<rdf-lookup timeout="3">
<namespace prefix="bf" href="http://id.loc.gov/ontologies/bibframe/"/>
<namespace prefix="bflc" href="http://id.loc.gov/ontologies/bflc/"/>
<namespace prefix="rdf" href="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/>
<namespace prefix="rdfs" href="http://www.w3.org/2000/01/rdf-schema#"/>
<lookup xpath="//bf:Work/bf:subject/bf:Temporal[contains(@rdf:about,'example.org')] |
//bf:Work/bf:subject/bf:Topic[contains(@rdf:about,'example.org') and bf:source/bf:Source/bf:code='lcsh'] |
//bf:Work/bf:subject/bf:Place[contains(@rdf:about,'example.org')] |
//bf:Work/bf:genreForm/bf:GenreForm[contains(@rdf:about,'example.org')]">
<key field="rdfs:label"/>
<server url="https://id.loc.gov/authorities/subjects/label/%s" method="HEAD"/>
</lookup>
</rdf-lookup>
<rdf-lookup timeout="3">
<namespace prefix="bf" href="http://id.loc.gov/ontologies/bibframe/"/>
<namespace prefix="bflc" href="http://id.loc.gov/ontologies/bflc/"/>
<namespace prefix="rdf" href="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/>
<namespace prefix="rdfs" href="http://www.w3.org/2000/01/rdf-schema#"/>
<lookup xpath="//bf:Role[not(@rdf:about)] | //bflc:relation/bflc:Relation[not(@rdf:about)]">
<key field="rdfs:label"/>
<server url="https://id.loc.gov/vocabulary/relators/label/%s" method="HEAD"/>
</lookup>
</rdf-lookup>
</backend>