为什么clojure.data.xml在解析RDF文件时不返回xml命名空间?

时间:2014-02-13 01:33:49

标签: xml clojure rdf

我正在开发一个用于clojure的语义Web库,我想检查data.xml是否为正在解析的文档返回XML名称空间,因此我将一个快速程序汇总在一起,从{{3}解析了这个RDF文档}}

<?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>

我得到了这个。 (格式化以便于阅读。)

{: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")})})}

因此,如果我想从解析的文档中创建三元组,我就不能,因为data.xml中的解析器不会从文档的根目录返回名称空间。那是为什么?

1 个答案:

答案 0 :(得分:1)

clojure.data.xml现在支持这一点,但当时问这个问题却没有。

0.1.0-beta1(2016年1月)引入了对命名空间的支持,现在我们现在已经0.2.0-beta5,可以肯定地说它已经相当成熟且经过了实战考验。