namespace(arg=nil)
public
Returns the namespace URL, if
defined, or nil otherwise
e = Element.new("el")
e.add_namespace("ns", "http://url")
e.add_attribute("ns:a", "b")
e.add_attribute("nsx:a", "c")
e.attribute("ns:a").namespace
e.attribute("nsx:a").namespace
Show source
def namespace arg=nil
arg = prefix if arg.nil?
@element.namespace arg
end