Skip to content

Commit 7e59290

Browse files
author
Gavin Kistner
committed
Fixes #3: The reserved xml prefix may be used without pre-declaring it.
1 parent cdcce0e commit 7e59290

File tree

4 files changed

+30
-2
lines changed

4 files changed

+30
-2
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -140,10 +140,15 @@ In this case no table will have a `parent` attribute, elements will not have the
140140
- No support for extended (Unicode) characters in element/attribute names
141141
- No support for charset
142142
- No support for [XInclude](http://www.w3.org/TR/xinclude/)
143+
- Does not ensure that the reserved `xml` prefix is never redefined to an illegal namespace
144+
- Does not ensure that the reserved `xmlns` prefix is never used as an element prefix
143145

144146

145147
## History
146148

149+
### v0.5.3 2014-Feb-12
150+
+ Fixes Issue #3: The [reserved `xml` prefix](http://www.w3.org/TR/xml-names/#ns-decl) may be used without pre-declaring it. (Thanks David Durkee.)
151+
147152
### v0.5.2 2013-Nov-7
148153
+ Lua 5.2 compatible
149154
+ Parser now errors if it finishes without finding a root element,

slaxml.lua

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--[=====================================================================[
2-
v0.5.2 Copyright © 2013 Gavin Kistner <[email protected]>; MIT Licensed
2+
v0.5.3 Copyright © 2013 Gavin Kistner <[email protected]>; MIT Licensed
33
See http://github.com/Phrogz/SLAXML for details.
44
--]=====================================================================]
55
local SLAXML = {
@@ -85,6 +85,7 @@ function SLAXML:parse(xml,options)
8585
end
8686

8787
local function nsForPrefix(prefix)
88+
if prefix=='xml' then return 'http://www.w3.org/XML/1998/namespace' end -- http://www.w3.org/TR/xml-names/#ns-decl
8889
for i=#nsStack,1,-1 do if nsStack[i][prefix] then return nsStack[i][prefix] end end
8990
error(("Cannot find namespace for prefix %s"):format(prefix))
9091
end

test/files/xml_namespace.svg

+12
Loading

test/test.lua

+11-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ local SLAXML = require 'slaxdom'
44
require 'io'
55
require 'lunity'
66

7-
module( 'TEST_LXSC', lunity )
7+
module( 'TEST_SLAXML', lunity )
88

99
local XML = {}
1010
for filename in io.popen('ls files'):lines() do
@@ -125,6 +125,16 @@ function test_dom_entities()
125125
assertEqual(t.kids[6].value,' your code &gt; all ')
126126
end
127127

128+
function test_xml_namespace()
129+
local doc = SLAXML:dom(XML['xml_namespace'])
130+
for i,attr in ipairs(doc.root.attr) do
131+
if attr.name=='space' then
132+
assertEqual(attr.nsURI,[[http://www.w3.org/XML/1998/namespace]])
133+
break
134+
end
135+
end
136+
end
137+
128138
function test_dom_namespaces()
129139
local scxmlNS = "http://www.w3.org/2005/07/scxml"
130140
local phrogzNS = "http://phrogz.net/"

0 commit comments

Comments
 (0)