annotate cmn/urispace/mapping.pl @ 27:d95e683fbd35 tip

Enable CORS on urispace redirects as well
author Chris Cannam
date Tue, 20 Feb 2018 14:52:02 +0000
parents 9e70cd92f14e
children
rev   line source
Chris@21 1 :- module(mapping,[
Chris@21 2 see_other_rdf/2
Chris@21 3 , see_other/2
Chris@21 4 ]).
Chris@21 5
Chris@21 6 /**
Chris@21 7 * See other when Accept: application/rdf+xml
Chris@21 8 * is in the request header
Chris@21 9 */
Chris@21 10 :- multifile see_other_rdf/2.
Chris@21 11
Chris@21 12 /**
Chris@21 13 * See other, default behavior
Chris@21 14 */
Chris@21 15 :- multifile see_other/2.
Chris@21 16