Adding proof of concept SPARQL update VIVO-101
This commit is contained in:
parent
54f79f2ea7
commit
463453111d
6 changed files with 199 additions and 8 deletions
22
webapp/web/WEB-INF/ontologies/app/sparqlTestMenu.n3
Normal file
22
webapp/web/WEB-INF/ontologies/app/sparqlTestMenu.n3
Normal file
|
@ -0,0 +1,22 @@
|
|||
# $This file is distributed under the terms of the license in /doc/license.txt$
|
||||
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> .
|
||||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
|
||||
### Test page for SPARQL UPDATE ###
|
||||
### Not For Production ###
|
||||
display:SparqlTestMenuItem
|
||||
a display:NavigationElement ;
|
||||
display:linkText "SPARQL Update Test";
|
||||
display:toPage display:SparqlUpdateTestPage .
|
||||
|
||||
display:SparqlUpdateTestPage
|
||||
a display:Page ;
|
||||
display:title "SPARQL Update Test" ;
|
||||
display:urlMapping "/sparqlUpdateTest" ;
|
||||
display:hasDataGetter display:sparqlUpdateDataGetter .
|
||||
|
||||
display:sparqlUpdateDataGetter
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.utils.dataGetter.SparqlUpdateTestDataGetter> .
|
Loading…
Add table
Add a link
Reference in a new issue