Mercurial > hg > dbtune-rdf-services
annotate 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 |
rev | line source |
---|---|
Chris@0 | 1 :- module(jamendo_xml,[parsed_dump/1]). |
Chris@0 | 2 |
Chris@0 | 3 xml_dump('dbdump.en.xml'). |
Chris@0 | 4 |
Chris@0 | 5 :- dynamic parsed_dump/1. |
Chris@0 | 6 |
Chris@0 | 7 load_xml_dump :- |
Chris@0 | 8 xml_dump(Dump), |
Chris@0 | 9 load_xml_file(Dump,Content), |
Chris@0 | 10 assert(parsed_dump(Content)). |
Chris@0 | 11 |
Chris@0 | 12 :- load_xml_dump. |
Chris@0 | 13 |