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
/** | |
* Removes all references from temp Refworks account that have not been modified for 30 minutes | |
* Then removes all empty folders | |
* Used by cron to clear down RefWorks temp account | |
*/ | |
public static function cleartemp() { | |
GLOBAL $SESSION; | |
$return = ""; | |
//kill any previous api sessions |
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
SO Name,American Association of Cancer Research:Master:2013:OS1,,,,,,,,,,,,,,,, | |
SO Identifier,American Association of Cancer Research_Master_2013_OS1,,,,,,,,,,,,,,,, | |
Provider,American Association of Cancer Research,,,,,,,,,,,,,,,, | |
Package Identifier,American Association of Cancer Research:Master:2013:OS1,,,,,,,,,,,,,,,, | |
Package Name,American Association of Cancer Research:Master:2013:OS1,,,,,,,,,,,,,,,, | |
Agreement Term Start Year,01/01/2013,,,,,,,,,,,,,,,, | |
Agreement Term End Year,31/12/2013,,,,,,,,,,,,,,,, | |
Consortium,,,,,,,,,,,,,,,,, | |
publication_title,ID.issn,ID.eissn,date_first_issue_online,num_first_vol_online,num_first_issue_online,date_last_issue_online,num_last_vol_online,num_last_issue_online,ID.kbart_title_id,embargo_info,coverage_depth,coverage_notes,publisher_name,ID.doi,platform.host.name,platform.host.url,platform.admin.name | |
AACR Annual Meeting Education Book,1943-6475,,01/04/2005,,,,,,,,fulltext,,American Association of Cancer Research,,Cancer Prevention Journals Portal,http://educationbook.aacrjou |
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
if( | |
length(value.parseJson()["records"])>1, | |
"Multiple Records match that identifier, check CRED (Web UI) for errors", | |
with( | |
filter(value.parseJson()["records"][0]["sameAs"],v,v["namespace"]=="issn"), | |
issns, | |
if(length(issns)>1,"Multiple ISSNs for one Title": ","") + forEach(issns,v,v["identifier"]).join(",") | |
) | |
) | |
) |
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
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | |
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> | |
PREFIX owl: <http://www.w3.org/2002/07/owl#> | |
PREFIX skos: <http://www.w3.org/2004/02/skos/core#> | |
PREFIX foaf: <http://xmlns.com/foaf/0.1/> | |
PREFIX dct: <http://purl.org/dc/terms/> |
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
SELECT * | |
WHERE { | |
?subject ?predicate ?object | |
} | |
LIMIT 10 |
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
SELECT * | |
WHERE { | |
?subject ?predicate <http://bnb.data.bl.uk/id/person/AustenJane1775-1817> | |
} | |
LIMIT 10 |
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
SELECT * | |
WHERE { | |
?book <http://purl.org/dc/terms/creator> <http://bnb.data.bl.uk/id/person/AustenJane1775-1817> | |
} | |
LIMIT 10 |
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
PREFIX dct: <http://purl.org/dc/terms/> | |
SELECT * | |
WHERE { | |
?subject dct:creator <http://bnb.data.bl.uk/id/person/AustenJane1775-1817> | |
} | |
LIMIT 10 |
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
PREFIX banana: <http://purl.org/dc/terms/> | |
SELECT * | |
WHERE { | |
?subject banana:creator <http://bnb.data.bl.uk/id/person/AustenJane1775-1817> | |
} | |
LIMIT 10 |
OlderNewer