-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 081cfed
Showing
15 changed files
with
1,028 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
PREFIX rt: <https://artbase.rhizome.org/prop/direct/> | ||
SELECT DISTINCT ?workTitle ?creationDate ?artworkPage ?artbaseLegacyTags WHERE { | ||
# r:Q676 is the artist Andy Cox if I need to sub it in next line for testing | ||
?artwork rt:P29 <{{.}}> ; # artwork by artist | ||
rdfs:label ?workTitle; | ||
rt:P26 ?creationDateTime . | ||
OPTIONAL { ?artwork rt:P48 ?artbaseLegacyTags . } | ||
BIND(SUBSTR(str(?creationDateTime),1,10) AS ?creationDate) | ||
?artworkPage schema:about ?artwork; | ||
schema:isPartOf <https://artbase.rhizome.org/>. | ||
} | ||
ORDER BY (?workTitle) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
PREFIX rt: <https://artbase.rhizome.org/prop/direct/> | ||
SELECT DISTINCT ?artistName ?artist ?searchTag WHERE { | ||
BIND("Flash" AS ?searchTag) | ||
?artwork rt:P29 ?artist . | ||
?artist rdfs:label ?artistName . | ||
?artwork rt:P48 ?artbaseLegacyTags . | ||
# Compare lower-case versions of both to make it case-insensitive | ||
FILTER CONTAINS(LCASE(?artbaseLegacyTags),LCASE(?searchTag)) | ||
} | ||
ORDER BY (?artistName) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<table class="test"> | ||
|
||
<tr><td> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<table> | ||
|
||
<tr><td> |
Oops, something went wrong.