Class: Nokogiri::XML::Namespace

Inherits:
Object
  • Object
show all
Includes:
PP::Node
Defined in:
lib/nokogiri/xml/namespace.rb,
ext/nokogiri/xml_namespace.c

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from PP::Node

#inspect, #pretty_print

Instance Attribute Details

#documentObject (readonly)

Returns the value of attribute document.



6
7
8
# File 'lib/nokogiri/xml/namespace.rb', line 6

def document
  @document
end

Instance Method Details

#hrefObject

Get the href for this namespace



69
70
71
72
73
74
75
76
77
78
# File 'ext/nokogiri/xml_namespace.c', line 69

static VALUE
href(VALUE self)
{
  xmlNsPtr ns;

  Data_Get_Struct(self, xmlNs, ns);
  if (!ns->href) { return Qnil; }

  return NOKOGIRI_STR_NEW2(ns->href);
}

#prefixObject

Get the prefix for this namespace. Returns nil if there is no prefix.



52
53
54
55
56
57
58
59
60
61
# File 'ext/nokogiri/xml_namespace.c', line 52

static VALUE
prefix(VALUE self)
{
  xmlNsPtr ns;

  Data_Get_Struct(self, xmlNs, ns);
  if (!ns->prefix) { return Qnil; }

  return NOKOGIRI_STR_NEW2(ns->prefix);
}