tommorris (owner)

Revisions

gist: 134913 Download_button fork
public
Public Clone URL: git://gist.github.com/134913.git
Text only
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
@prefix audio "http://purl.org/media/audio#";
@prefix comm "http://purl.org/commerce#";
@prefix dc "http://purl.org/dc/terms/";
@prefix foaf "http://xmlns.com/foaf/0.1/";
@prefix media "http://purl.org/media#";
 
abbr[property][title] {
-rdf-content: attr(title);
}
.haudio {
-rdf-typeof: "audio:Recording";
-rdf-about: nearest-ancestor(".haudio");
}
.haudio * {
-rdf-about: nearest-ancestor(".haudio");
}
.haudio .fn {
-rdf-property: "dc:title" "rdfs:label";
-rdf-datatype: "xsd:string";
}
.haudio .album {
-rdf-property: "dc:isPartOf";
-rdf-datatype: "xsd:string";
}
.haudio .category {
-rdf-property: "dc:type";
-rdf-datatype: "xsd:string";
}
.haudio .contributor {
-rdf-property: "dc:contributor";
-rdf-datatype: "xsd:string";
}
.haudio .description {
-rdf-property: "dc:description";
-rdf-datatype: "xsd:string";
}
.haudio .position {
-rdf-property: "media:position";
-rdf-datatype: "xsd:integer";
}
.haudio .photo {
-rdf-rel: "media:depiction" "foaf:depiction";
}
.haudio .price {
-rdf-property: "comm:costs";
-rdf-datatype: "xsd:string";
}
.haudio *[rel=~"enclosure"] {
-rdf-rel: "media:download";
}
.haudio *[rel=~"payment"] {
-rdf-rel: "comm:payment";
}
.haudio *[rel=~"sample"] {
-rdf-rel: "media:sample";
}
.haudio .url {
-rdf-rel: "foaf:page";
}
.haudio .item {
-rdf-rel: "media:contains" "dc:hasPart";
-rdf-rev: "dc:isPartOf";
-rdf-about: nearest-ancestor(".haudio .item");
}
.haudio .item * {
-rdf-about: nearest-ancestor(".haudio .item");
}