tommorris (owner)

Revisions

gist: 138246 Download_button fork
public
Description:
OpenLibrary RDF/XML simple fix needed - see the comments from line 2 onwards of each file.
Public Clone URL: git://gist.github.com/138246.git
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?xml version="1.0" encoding="utf-8"?>
<!-- except for the presence of this comment, this is currently how
http://openlibrary.org/b/OL2211958M.rdf looks -->
<rdf:RDF
  xmlns:ol="http://openlibrary.org/type/edition#"
  xmlns:owl='http://www.w3.org/2002/07/owl#'
  xmlns:bibo='http://purl.org/ontology/bibo/'
  xmlns:rdfs='http://www.w3.org/2000/01/rdf-schema#'
  xmlns:dc='http://purl.org/dc/elements/1.1/'
  xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#'
  xmlns:dcterms='http://purl.org/dc/terms/'
 
>
 
 
    <!-- ol -->
        <ol:key>/b/OL2211958M</ol:key>
 
        <ol:by_statement>D.M. Armstrong.</ol:by_statement>
 
        <ol:lc_classifications>B105.U5 A74 1989</ol:lc_classifications>
 
        <ol:pagination>xii, 148 p. :</ol:pagination>
 
        <ol:notes>Includes bibliographical references (p. 141-143).</ol:notes>
 
        <ol:publish_country>cou</ol:publish_country>
 
 
    <!-- dc -->
 
    
        <dc:subject>Universals (Philosophy)</dc:subject>
    <dc:subject>Nominalism</dc:subject>
    <dc:subject>Realism</dc:subject>
    <dc:subject>Tropes (Philosophy)</dc:subject>
 
        <dc:publisher>Westview Press</dc:publisher>
 
    <!-- dcterms -->
        <dcterms:title>Universals</dcterms:title>
 
        <dcterms:language>/l/eng</dcterms:language>
 
        <dcterms:modified>2009-06-18 18:32:54.422943</dcterms:modified>
 
 
    <!-- bibo -->
 
    <bibo:authorList rdf:parseType="Collection">
      <rdf:Description rdf:about="http://openlibrary.org/a/OL456313A"/>
    </bibo:authorList>
 
    
        <bibo:lccn>89034723</bibo:lccn>
 
        <bibo:isbn10>0813307635</bibo:isbn10>
    <bibo:isbn10>0813307724</bibo:isbn10>
 
    
    
 
</rdf:RDF>
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?xml version="1.0" encoding="utf-8"?>
<!-- this is how it OUGHT to look.
you can run RDF/XML through http://www.w3.org/RDF/Validator/
to check it - use the "Triples and Graph" option and it'll
render you a pretty visual in your choice of format to see. -->
<rdf:RDF
  xmlns:ol="http://openlibrary.org/type/edition#"
  xmlns:owl='http://www.w3.org/2002/07/owl#'
  xmlns:bibo='http://purl.org/ontology/bibo/'
  xmlns:rdfs='http://www.w3.org/2000/01/rdf-schema#'
  xmlns:dc='http://purl.org/dc/elements/1.1/'
  xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#'
  xmlns:dcterms='http://purl.org/dc/terms/'>
 
<rdf:Description rdf:about="http://openlibrary.org/b/OL2211958M">
    <!-- ol -->
        <ol:key>/b/OL2211958M</ol:key>
 
        <ol:by_statement>D.M. Armstrong.</ol:by_statement>
 
        <ol:lc_classifications>B105.U5 A74 1989</ol:lc_classifications>
 
        <ol:pagination>xii, 148 p. :</ol:pagination>
 
        <ol:notes>Includes bibliographical references (p. 141-143).</ol:notes>
 
        <ol:publish_country>cou</ol:publish_country>
 
 
    <!-- dc -->
 
    
        <dc:subject>Universals (Philosophy)</dc:subject>
    <dc:subject>Nominalism</dc:subject>
    <dc:subject>Realism</dc:subject>
    <dc:subject>Tropes (Philosophy)</dc:subject>
 
        <dc:publisher>Westview Press</dc:publisher>
 
    <!-- dcterms -->
        <dcterms:title>Universals</dcterms:title>
 
        <dcterms:language>/l/eng</dcterms:language>
 
        <dcterms:modified>2009-06-18 18:32:54.422943</dcterms:modified>
 
 
    <!-- bibo -->
 
    <bibo:authorList rdf:parseType="Collection">
      <rdf:Description rdf:about="http://openlibrary.org/a/OL456313A"/>
    </bibo:authorList>
 
    
        <bibo:lccn>89034723</bibo:lccn>
 
        <bibo:isbn10>0813307635</bibo:isbn10>
    <bibo:isbn10>0813307724</bibo:isbn10>
</rdf:Description>
 
</rdf:RDF>