Sha256: eee23da07dad99aef885528c624fd71f37f1b4d0bfb68aaead943549b5696bc6

Contents?: true

Size: 812 Bytes

Versions: 328

Compression:

Stored size: 812 Bytes

Contents

#include <html_entity_lookup.h>

/*
 * call-seq:
 *  get(key)
 *
 * Get the HTML::EntityDescription for +key+
 */
static VALUE get(VALUE self, VALUE key)
{
  const htmlEntityDesc * desc =
    htmlEntityLookup((const xmlChar *)StringValuePtr(key));
  VALUE klass, args[3];

  if(NULL == desc) return Qnil;
  klass = rb_const_get(mNokogiriHtml, rb_intern("EntityDescription"));

  args[0] = INT2NUM((long)desc->value);
  args[1] = NOKOGIRI_STR_NEW2(desc->name);
  args[2] = NOKOGIRI_STR_NEW2(desc->desc);

  return rb_class_new_instance(3, args, klass);
}

void init_html_entity_lookup()
{
  VALUE nokogiri = rb_define_module("Nokogiri");
  VALUE html = rb_define_module_under(nokogiri, "HTML");
  VALUE klass = rb_define_class_under(html, "EntityLookup", rb_cObject);

  rb_define_method(klass, "get", get, 1);
}

Version data entries

328 entries across 328 versions & 29 rubygems

Version Path
vagrant-compose-yaml-0.1.3 vendor/bundle/ruby/2.2.0/gems/nokogiri-1.6.7.1/ext/nokogiri/html_entity_lookup.c
vagrant-compose-yaml-0.1.2 vendor/bundle/ruby/2.2.0/gems/nokogiri-1.6.7.1/ext/nokogiri/html_entity_lookup.c
vagrant-compose-yaml-0.1.1 vendor/bundle/ruby/2.2.0/gems/nokogiri-1.6.7.1/ext/nokogiri/html_entity_lookup.c
vagrant-compose-yaml-0.1.0 vendor/bundle/ruby/2.2.0/gems/nokogiri-1.6.7.1/ext/nokogiri/html_entity_lookup.c
vagrant-unbundled-1.8.5.2 vendor/bundle/ruby/2.3.0/gems/nokogiri-1.6.7.2/ext/nokogiri/html_entity_lookup.c
vagrant-unbundled-1.8.5.1 vendor/bundle/ruby/2.3.0/gems/nokogiri-1.6.7.2/ext/nokogiri/html_entity_lookup.c
vagrant-unbundled-1.8.4.2 vendor/bundle/ruby/2.3.0/gems/nokogiri-1.6.7.2/ext/nokogiri/html_entity_lookup.c
vagrant-unbundled-1.8.4.1 vendor/bundle/ruby/2.3.0/gems/nokogiri-1.6.7.2/ext/nokogiri/html_entity_lookup.c
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/nokogiri-1.6.7.2/ext/nokogiri/html_entity_lookup.c
nokogiri-1.6.7.2 ext/nokogiri/html_entity_lookup.c
nokogiri-1.6.7.2-x86-mingw32 ext/nokogiri/html_entity_lookup.c
nokogiri-1.6.7.2-x64-mingw32 ext/nokogiri/html_entity_lookup.c
nokogiri-1.6.7.2-java ext/nokogiri/html_entity_lookup.c
angular-rails4-templates-0.4.1 vendor/ruby/2.1.0/gems/nokogiri-1.6.6.2/ext/nokogiri/html_entity_lookup.c
vagrant-unbundled-1.8.1.1 vendor/bundle/ruby/2.3.0/gems/nokogiri-1.6.7.1/ext/nokogiri/html_entity_lookup.c
angular-rails4-templates-0.4.0 vendor/ruby/2.1.0/gems/nokogiri-1.6.6.2/ext/nokogiri/html_entity_lookup.c
angular-rails4-templates-0.3.0 vendor/ruby/2.1.0/gems/nokogiri-1.6.6.2/ext/nokogiri/html_entity_lookup.c
nokogiri-1.6.8.rc1 ext/nokogiri/html_entity_lookup.c
nokogiri-1.6.8.rc1-x86-mingw32 ext/nokogiri/html_entity_lookup.c
nokogiri-1.6.8.rc1-x64-mingw32 ext/nokogiri/html_entity_lookup.c