class Nokogiri::XML::EntityDecl
Public Class Methods
Source
# File lib/nokogiri/xml/entity_decl.rb, line 12 def self.new(name, doc, *args) doc.create_entity(name, *args) end
Public Instance Methods
Source
static VALUE get_content(VALUE self) { xmlEntityPtr node; Noko_Node_Get_Struct(self, xmlEntity, node); if (!node->content) { return Qnil; } return NOKOGIRI_STR_NEW(node->content, node->length); }
Get the content
Source
static VALUE entity_type(VALUE self) { xmlEntityPtr node; Noko_Node_Get_Struct(self, xmlEntity, node); return INT2NUM((int)node->etype); }
Get the entity type
Source
static VALUE external_id(VALUE self) { xmlEntityPtr node; Noko_Node_Get_Struct(self, xmlEntity, node); if (!node->ExternalID) { return Qnil; } return NOKOGIRI_STR_NEW2(node->ExternalID); }
Get the external identifier for PUBLIC
Source
static VALUE original_content(VALUE self) { xmlEntityPtr node; Noko_Node_Get_Struct(self, xmlEntity, node); if (!node->orig) { return Qnil; } return NOKOGIRI_STR_NEW2(node->orig); }
Get the original_content
before ref substitution
Source
static VALUE system_id(VALUE self) { xmlEntityPtr node; Noko_Node_Get_Struct(self, xmlEntity, node); if (!node->SystemID) { return Qnil; } return NOKOGIRI_STR_NEW2(node->SystemID); }
Get the URI for a SYSTEM or PUBLIC Entity