Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why doesn't clojure.data.xml return xml namespaces when parsing a RDF file?

Tags:

xml

clojure

rdf

I'm working on a semantic web library for clojure and I wanted to check if data.xml returns XML namespaces for the document being parsed, so I threw together a quick program that parsed this RDF document from W3Schools RDF tutorial

<?xml version="1.0"?>

<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cd="http://www.recshop.fake/cd#">

<rdf:Description
rdf:about="http://www.recshop.fake/cd/Empire Burlesque">
  <cd:artist>Bob Dylan</cd:artist>
  <cd:country>USA</cd:country>
  <cd:company>Columbia</cd:company>
  <cd:price>10.90</cd:price>
  <cd:year>1985</cd:year>
</rdf:Description>

<rdf:Description
rdf:about="http://www.recshop.fake/cd/Hide your heart">
  <cd:artist>Bonnie Tyler</cd:artist>
  <cd:country>UK</cd:country>
  <cd:company>CBS Records</cd:company>
  <cd:price>9.90</cd:price>
  <cd:year>1988</cd:year>
</rdf:Description>
</rdf:RDF>

And I got this. (Formatted for easier reading.)

{:tag :RDF, 
 :attrs {},
 :content ({:tag :Description, 
            :attrs {:rdf/about "http://www.recshop.fake/cd/Empire Burlesque"},
            :content ({:tag :artist,
                       :attrs {},
                       :content ("Bob Dylan")}
                      {:tag :country, 
                       :attrs {},
                       :content ("USA")}
                      {:tag :company,
                       :attrs {},
                       :content ("Columbia")}
                      {:tag :price, 
                       :attrs {},
                       :content ("10.90")}
                      {:tag :year,
                       :attrs {},
                       :content ("1985")})}
           {:tag :Description, 
            :attrs {:rdf/about "http://www.recshop.fake/cd/Hide your heart"},
            :content ({:tag :artist,
                       :attrs {},
                       :content ("Bonnie Tyler")}
                      {:tag :country,
                       :attrs {},
                       :content ("UK")}
                      {:tag :company,
                       :attrs {},
                       :content ("CBS Records")}
                      {:tag :price,
                       :attrs {},
                       :content ("9.90")}
                      {:tag :year,
                      :attrs {},
                      :content ("1988")})})}

So if I wanted to create triples from the parsed document, I couldn't, because the parsers in data.xml don't don't return namespaces from the root of a document. Why is that?

like image 690
Levi Campbell Avatar asked Feb 13 '14 01:02

Levi Campbell


1 Answers

clojure.data.xml now supports this, but at the time this question was asked it did not.

Support for namespaces was introduced in 0.1.0-beta1 (January 2016), and as we are now up to 0.2.0-beta5 it is safe to say that it is fairly established and battle-tested.

like image 166
Venantius Avatar answered Nov 08 '22 00:11

Venantius