Class: Nokogiri::XML::Namespace
- Inherits:
-
Object
- Object
- Nokogiri::XML::Namespace
- Includes:
- PP::Node
- Defined in:
- lib/nokogiri/xml/namespace.rb,
ext/nokogiri/xml_namespace.c
Instance Attribute Summary collapse
-
#document ⇒ Object
readonly
Returns the value of attribute document.
Instance Method Summary collapse
-
#href ⇒ Object
Get the href for this namespace.
-
#prefix ⇒ Object
Get the prefix for this namespace.
Methods included from PP::Node
Instance Attribute Details
#document ⇒ Object (readonly)
Returns the value of attribute document.
5 6 7 |
# File 'lib/nokogiri/xml/namespace.rb', line 5 def document @document end |
Instance Method Details
#href ⇒ Object
Get the href for this namespace
55 56 57 58 59 60 61 62 63 |
# File 'ext/nokogiri/xml_namespace.c', line 55
static VALUE href(VALUE self)
{
xmlNsPtr ns;
Data_Get_Struct(self, xmlNs, ns);
if(!ns->href) return Qnil;
return NOKOGIRI_STR_NEW2(ns->href);
}
|
#prefix ⇒ Object
Get the prefix for this namespace. Returns nil
if there is no prefix.
39 40 41 42 43 44 45 46 47 |
# File 'ext/nokogiri/xml_namespace.c', line 39
static VALUE prefix(VALUE self)
{
xmlNsPtr ns;
Data_Get_Struct(self, xmlNs, ns);
if(!ns->prefix) return Qnil;
return NOKOGIRI_STR_NEW2(ns->prefix);
}
|