22 lines
871 B
Text
22 lines
871 B
Text
# $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> .
|