Mercurial > repos > guerler > springsuite
diff planemo/lib/python3.7/site-packages/rdflib/plugins/parsers/pyMicrodata/registry.py @ 1:56ad4e20f292 draft
"planemo upload commit 6eee67778febed82ddd413c3ca40b3183a3898f1"
author | guerler |
---|---|
date | Fri, 31 Jul 2020 00:32:28 -0400 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/planemo/lib/python3.7/site-packages/rdflib/plugins/parsers/pyMicrodata/registry.py Fri Jul 31 00:32:28 2020 -0400 @@ -0,0 +1,135 @@ +# -*- coding: utf-8 -*- +""" + +Hardcoded version of the current microdata->RDF registry. There is also a local registry to include some test cases. +Finally, there is a local dictionary for prefix mapping for the registry items; these are the preferred prefixes +for those vocabularies, and are used to make the output nicer. + +@organization: U{World Wide Web Consortium<http://www.w3.org>} +@author: U{Ivan Herman<a href="http://www.w3.org/People/Ivan/">} +@license: This software is available for use under the +U{W3C® SOFTWARE NOTICE AND LICENSE<href="http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231">} +""" + +""" +$Id: registry.py,v 1.5 2012/09/05 16:40:43 ivan Exp $ +$Date: 2012/09/05 16:40:43 $ +""" + +import sys +(py_v_major, py_v_minor, py_v_micro, py_v_final, py_v_serial) = sys.version_info + +# To be added soon: + # "Class" : {"subPropertyOf" : "http://www.w3.org/2000/01/rdf-schema#Class"}, + # "Property" : {"subPropertyOf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"} + +_registry = """ +{ + "http://schema.org/": { + "propertyURI": "vocabulary", + "multipleValues": "unordered", + "properties": { + "additionalType": {"subPropertyOf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"}, + "blogPosts": {"multipleValues": "list"}, + "breadcrumb": {"multipleValues": "list"}, + "byArtist": {"multipleValues": "list"}, + "creator": {"multipleValues": "list"}, + "episode": {"multipleValues": "list"}, + "episodes": {"multipleValues": "list"}, + "event": {"multipleValues": "list"}, + "events": {"multipleValues": "list"}, + "founder": {"multipleValues": "list"}, + "founders": {"multipleValues": "list"}, + "itemListElement": {"multipleValues": "list"}, + "musicGroupMember": {"multipleValues": "list"}, + "performerIn": {"multipleValues": "list"}, + "actor": {"multipleValues": "list"}, + "actors": {"multipleValues": "list"}, + "performer": {"multipleValues": "list"}, + "performers": {"multipleValues": "list"}, + "producer": {"multipleValues": "list"}, + "recipeInstructions": {"multipleValues": "list"}, + "season": {"multipleValues": "list"}, + "seasons": {"multipleValues": "list"}, + "subEvent": {"multipleValues": "list"}, + "subEvents": {"multipleValues": "list"}, + "track": {"multipleValues": "list"}, + "tracks": {"multipleValues": "list"} + } + }, + "http://microformats.org/profile/hcard": { + "propertyURI": "vocabulary", + "multipleValues": "unordered" + }, + "http://microformats.org/profile/hcalendar#": { + "propertyURI": "vocabulary", + "multipleValues": "unordered", + "properties": { + "categories": {"multipleValues": "list"} + } + } +} +""" + +vocab_names = { + "http://schema.org/" : "schema", + "http://xmlns.com/foaf/0.1/" : "foaf", + "http://microformats.org/profile/hcard#" : "hcard", + "http://microformats.org/profile/hcalendar#" : "hcalendar" +} + +# This is the local version, added mainly for testing +_myRegistry = """ +{ + "http://vocabulary.list/": { + "propertyURI": "vocabulary", + "multipleValues": "list", + "properties": { + "list": {"multipleValues": "list"}, + "typed": {"datatype": "http://typed"} + } + }, + "http://vocabulary.unordered/": { + "propertyURI": "vocabulary", + "multipleValues": "unordered", + "properties": { + "list": {"multipleValues": "list"}, + "typed": {"datatype": "http://typed"} + } + }, + "http://contextual.unordered/": { + "propertyURI": "contextual", + "multipleValues": "unordered", + "properties": { + "list": {"multipleValues": "list"}, + "typed": {"datatype": "http://typed"} + } + }, + "http://contextual.list/": { + "propertyURI": "contextual", + "multipleValues": "list", + "properties": { + "list": {"multipleValues": "list"}, + "typed": {"datatype": "http://typed"} + } + }, + "http://n.whatwg.org/work": { + "propertyURI" : "contextual", + "multipleValues" : "list" + } +} +""" + + +registry = [] +myRegistry = [] +if py_v_major >= 3 or (py_v_major == 2 and py_v_minor >= 6) : + import json + registry = json.loads(_registry) + myRegistry = json.loads(_myRegistry) +else : + import simplejson + registry = simplejson.loads(_registry) + myRegistry = simplejson.loads(_myRegistry) + +for (k,v) in list(myRegistry.items()) : registry[k] = v