Class: Nokogiri::EncodingHandler
- Inherits:
-
Object
- Object
- Nokogiri::EncodingHandler
- Defined in:
- ext/nokogiri/xml_encoding_handler.c
Class Method Summary collapse
-
.Nokogiri::EncodingHandler.[](name) ⇒ Object
Get the encoding handler for
name
. -
.Nokogiri::EncodingHandler.alias(from, to) ⇒ Object
Alias encoding handler with name
from
to nameto
. -
.Nokogiri::EncodingHandler.clear_aliases! ⇒ Object
Remove all encoding aliases.
-
.Nokogiri::EncodingHandler.delete(name) ⇒ Object
Delete the encoding alias named
name
.
Instance Method Summary collapse
-
#name ⇒ Object
Get the name of this EncodingHandler.
Class Method Details
.Nokogiri::EncodingHandler.[](name) ⇒ Object
Get the encoding handler for name
8 9 10 11 12 13 14 15 16 17 |
# File 'ext/nokogiri/xml_encoding_handler.c', line 8
static VALUE get(VALUE klass, VALUE key)
{
xmlCharEncodingHandlerPtr handler;
handler = xmlFindCharEncodingHandler(StringValueCStr(key));
if(handler)
return Data_Wrap_Struct(klass, NULL, NULL, handler);
return Qnil;
}
|
.Nokogiri::EncodingHandler.alias(from, to) ⇒ Object
Alias encoding handler with name from
to name to
36 37 38 39 40 41 |
# File 'ext/nokogiri/xml_encoding_handler.c', line 36
static VALUE alias(VALUE klass, VALUE from, VALUE to)
{
xmlAddEncodingAlias(StringValueCStr(from), StringValueCStr(to));
return to;
}
|
.Nokogiri::EncodingHandler.clear_aliases! ⇒ Object
Remove all encoding aliases.
48 49 50 51 52 53 |
# File 'ext/nokogiri/xml_encoding_handler.c', line 48
static VALUE clear_aliases(VALUE klass)
{
xmlCleanupEncodingAliases();
return klass;
}
|
.Nokogiri::EncodingHandler.delete(name) ⇒ Object
Delete the encoding alias named name
24 25 26 27 28 29 |
# File 'ext/nokogiri/xml_encoding_handler.c', line 24
static VALUE delete(VALUE klass, VALUE name)
{
if(xmlDelEncodingAlias(StringValueCStr(name))) return Qnil;
return Qtrue;
}
|
Instance Method Details
#name ⇒ Object
Get the name of this EncodingHandler
60 61 62 63 64 65 66 67 |
# File 'ext/nokogiri/xml_encoding_handler.c', line 60
static VALUE name(VALUE self)
{
xmlCharEncodingHandlerPtr handler;
Data_Get_Struct(self, xmlCharEncodingHandler, handler);
return NOKOGIRI_STR_NEW2(handler->name);
}
|