Mercurial > hg > dbtune-rdf-services
view jamendo/sparql-archived/jamendo_xml.pl @ 27:d95e683fbd35 tip
Enable CORS on urispace redirects as well
author | Chris Cannam |
---|---|
date | Tue, 20 Feb 2018 14:52:02 +0000 |
parents | df9685986338 |
children |
line wrap: on
line source
:- module(jamendo_xml,[parsed_dump/1]). xml_dump('dbdump.en.xml'). :- dynamic parsed_dump/1. load_xml_dump :- xml_dump(Dump), load_xml_file(Dump,Content), assert(parsed_dump(Content)). :- load_xml_dump.