nokogiri 1.6.2.rc1-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of nokogiri might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/.autotest +26 -0
- data/.editorconfig +17 -0
- data/.gemtest +0 -0
- data/.travis.yml +25 -0
- data/CHANGELOG.ja.rdoc +857 -0
- data/CHANGELOG.rdoc +880 -0
- data/C_CODING_STYLE.rdoc +33 -0
- data/Gemfile +21 -0
- data/Manifest.txt +371 -0
- data/README.ja.rdoc +112 -0
- data/README.rdoc +180 -0
- data/ROADMAP.md +89 -0
- data/Rakefile +351 -0
- data/STANDARD_RESPONSES.md +47 -0
- data/Y_U_NO_GEMSPEC.md +155 -0
- data/bin/nokogiri +78 -0
- data/build_all +130 -0
- data/dependencies.yml +4 -0
- data/ext/nokogiri/depend +358 -0
- data/ext/nokogiri/extconf.rb +453 -0
- data/ext/nokogiri/html_document.c +170 -0
- data/ext/nokogiri/html_document.h +10 -0
- data/ext/nokogiri/html_element_description.c +279 -0
- data/ext/nokogiri/html_element_description.h +10 -0
- data/ext/nokogiri/html_entity_lookup.c +32 -0
- data/ext/nokogiri/html_entity_lookup.h +8 -0
- data/ext/nokogiri/html_sax_parser_context.c +116 -0
- data/ext/nokogiri/html_sax_parser_context.h +11 -0
- data/ext/nokogiri/html_sax_push_parser.c +87 -0
- data/ext/nokogiri/html_sax_push_parser.h +9 -0
- data/ext/nokogiri/nokogiri.c +148 -0
- data/ext/nokogiri/nokogiri.h +164 -0
- data/ext/nokogiri/xml_attr.c +94 -0
- data/ext/nokogiri/xml_attr.h +9 -0
- data/ext/nokogiri/xml_attribute_decl.c +70 -0
- data/ext/nokogiri/xml_attribute_decl.h +9 -0
- data/ext/nokogiri/xml_cdata.c +56 -0
- data/ext/nokogiri/xml_cdata.h +9 -0
- data/ext/nokogiri/xml_comment.c +54 -0
- data/ext/nokogiri/xml_comment.h +9 -0
- data/ext/nokogiri/xml_document.c +577 -0
- data/ext/nokogiri/xml_document.h +23 -0
- data/ext/nokogiri/xml_document_fragment.c +48 -0
- data/ext/nokogiri/xml_document_fragment.h +10 -0
- data/ext/nokogiri/xml_dtd.c +202 -0
- data/ext/nokogiri/xml_dtd.h +10 -0
- data/ext/nokogiri/xml_element_content.c +123 -0
- data/ext/nokogiri/xml_element_content.h +10 -0
- data/ext/nokogiri/xml_element_decl.c +69 -0
- data/ext/nokogiri/xml_element_decl.h +9 -0
- data/ext/nokogiri/xml_encoding_handler.c +79 -0
- data/ext/nokogiri/xml_encoding_handler.h +8 -0
- data/ext/nokogiri/xml_entity_decl.c +110 -0
- data/ext/nokogiri/xml_entity_decl.h +10 -0
- data/ext/nokogiri/xml_entity_reference.c +52 -0
- data/ext/nokogiri/xml_entity_reference.h +9 -0
- data/ext/nokogiri/xml_io.c +56 -0
- data/ext/nokogiri/xml_io.h +11 -0
- data/ext/nokogiri/xml_libxml2_hacks.c +112 -0
- data/ext/nokogiri/xml_libxml2_hacks.h +12 -0
- data/ext/nokogiri/xml_namespace.c +78 -0
- data/ext/nokogiri/xml_namespace.h +13 -0
- data/ext/nokogiri/xml_node.c +1541 -0
- data/ext/nokogiri/xml_node.h +13 -0
- data/ext/nokogiri/xml_node_set.c +467 -0
- data/ext/nokogiri/xml_node_set.h +14 -0
- data/ext/nokogiri/xml_processing_instruction.c +56 -0
- data/ext/nokogiri/xml_processing_instruction.h +9 -0
- data/ext/nokogiri/xml_reader.c +681 -0
- data/ext/nokogiri/xml_reader.h +10 -0
- data/ext/nokogiri/xml_relax_ng.c +161 -0
- data/ext/nokogiri/xml_relax_ng.h +9 -0
- data/ext/nokogiri/xml_sax_parser.c +312 -0
- data/ext/nokogiri/xml_sax_parser.h +39 -0
- data/ext/nokogiri/xml_sax_parser_context.c +262 -0
- data/ext/nokogiri/xml_sax_parser_context.h +10 -0
- data/ext/nokogiri/xml_sax_push_parser.c +115 -0
- data/ext/nokogiri/xml_sax_push_parser.h +9 -0
- data/ext/nokogiri/xml_schema.c +205 -0
- data/ext/nokogiri/xml_schema.h +9 -0
- data/ext/nokogiri/xml_syntax_error.c +63 -0
- data/ext/nokogiri/xml_syntax_error.h +13 -0
- data/ext/nokogiri/xml_text.c +52 -0
- data/ext/nokogiri/xml_text.h +9 -0
- data/ext/nokogiri/xml_xpath_context.c +307 -0
- data/ext/nokogiri/xml_xpath_context.h +10 -0
- data/ext/nokogiri/xslt_stylesheet.c +270 -0
- data/ext/nokogiri/xslt_stylesheet.h +14 -0
- data/lib/nokogiri.rb +137 -0
- data/lib/nokogiri/2.0/nokogiri.so +0 -0
- data/lib/nokogiri/2.1/nokogiri.so +0 -0
- data/lib/nokogiri/css.rb +27 -0
- data/lib/nokogiri/css/node.rb +52 -0
- data/lib/nokogiri/css/parser.rb +715 -0
- data/lib/nokogiri/css/parser.y +249 -0
- data/lib/nokogiri/css/parser_extras.rb +91 -0
- data/lib/nokogiri/css/syntax_error.rb +7 -0
- data/lib/nokogiri/css/tokenizer.rb +152 -0
- data/lib/nokogiri/css/tokenizer.rex +55 -0
- data/lib/nokogiri/css/xpath_visitor.rb +219 -0
- data/lib/nokogiri/decorators/slop.rb +35 -0
- data/lib/nokogiri/html.rb +37 -0
- data/lib/nokogiri/html/builder.rb +35 -0
- data/lib/nokogiri/html/document.rb +333 -0
- data/lib/nokogiri/html/document_fragment.rb +41 -0
- data/lib/nokogiri/html/element_description.rb +23 -0
- data/lib/nokogiri/html/element_description_defaults.rb +671 -0
- data/lib/nokogiri/html/entity_lookup.rb +13 -0
- data/lib/nokogiri/html/sax/parser.rb +52 -0
- data/lib/nokogiri/html/sax/parser_context.rb +16 -0
- data/lib/nokogiri/html/sax/push_parser.rb +16 -0
- data/lib/nokogiri/syntax_error.rb +4 -0
- data/lib/nokogiri/version.rb +106 -0
- data/lib/nokogiri/xml.rb +73 -0
- data/lib/nokogiri/xml/attr.rb +14 -0
- data/lib/nokogiri/xml/attribute_decl.rb +18 -0
- data/lib/nokogiri/xml/builder.rb +443 -0
- data/lib/nokogiri/xml/cdata.rb +11 -0
- data/lib/nokogiri/xml/character_data.rb +7 -0
- data/lib/nokogiri/xml/document.rb +279 -0
- data/lib/nokogiri/xml/document_fragment.rb +112 -0
- data/lib/nokogiri/xml/dtd.rb +32 -0
- data/lib/nokogiri/xml/element_content.rb +36 -0
- data/lib/nokogiri/xml/element_decl.rb +13 -0
- data/lib/nokogiri/xml/entity_decl.rb +19 -0
- data/lib/nokogiri/xml/namespace.rb +13 -0
- data/lib/nokogiri/xml/node.rb +982 -0
- data/lib/nokogiri/xml/node/save_options.rb +61 -0
- data/lib/nokogiri/xml/node_set.rb +355 -0
- data/lib/nokogiri/xml/notation.rb +6 -0
- data/lib/nokogiri/xml/parse_options.rb +98 -0
- data/lib/nokogiri/xml/pp.rb +2 -0
- data/lib/nokogiri/xml/pp/character_data.rb +18 -0
- data/lib/nokogiri/xml/pp/node.rb +56 -0
- data/lib/nokogiri/xml/processing_instruction.rb +8 -0
- data/lib/nokogiri/xml/reader.rb +112 -0
- data/lib/nokogiri/xml/relax_ng.rb +32 -0
- data/lib/nokogiri/xml/sax.rb +4 -0
- data/lib/nokogiri/xml/sax/document.rb +171 -0
- data/lib/nokogiri/xml/sax/parser.rb +123 -0
- data/lib/nokogiri/xml/sax/parser_context.rb +16 -0
- data/lib/nokogiri/xml/sax/push_parser.rb +60 -0
- data/lib/nokogiri/xml/schema.rb +63 -0
- data/lib/nokogiri/xml/syntax_error.rb +47 -0
- data/lib/nokogiri/xml/text.rb +9 -0
- data/lib/nokogiri/xml/xpath.rb +10 -0
- data/lib/nokogiri/xml/xpath/syntax_error.rb +11 -0
- data/lib/nokogiri/xml/xpath_context.rb +16 -0
- data/lib/nokogiri/xslt.rb +56 -0
- data/lib/nokogiri/xslt/stylesheet.rb +25 -0
- data/lib/xsd/xmlparser/nokogiri.rb +102 -0
- data/suppressions/README.txt +1 -0
- data/suppressions/nokogiri_ree-1.8.7.358.supp +61 -0
- data/suppressions/nokogiri_ruby-1.8.7.370.supp +0 -0
- data/suppressions/nokogiri_ruby-1.9.2.320.supp +28 -0
- data/suppressions/nokogiri_ruby-1.9.3.327.supp +28 -0
- data/tasks/nokogiri.org.rb +24 -0
- data/tasks/test.rb +95 -0
- data/test/css/test_nthiness.rb +222 -0
- data/test/css/test_parser.rb +358 -0
- data/test/css/test_tokenizer.rb +198 -0
- data/test/css/test_xpath_visitor.rb +96 -0
- data/test/decorators/test_slop.rb +16 -0
- data/test/files/2ch.html +108 -0
- data/test/files/address_book.rlx +12 -0
- data/test/files/address_book.xml +10 -0
- data/test/files/atom.xml +344 -0
- data/test/files/bar/bar.xsd +4 -0
- data/test/files/bogus.xml +0 -0
- data/test/files/dont_hurt_em_why.xml +422 -0
- data/test/files/encoding.html +82 -0
- data/test/files/encoding.xhtml +84 -0
- data/test/files/exslt.xml +8 -0
- data/test/files/exslt.xslt +35 -0
- data/test/files/foo/foo.xsd +4 -0
- data/test/files/metacharset.html +10 -0
- data/test/files/noencoding.html +47 -0
- data/test/files/po.xml +32 -0
- data/test/files/po.xsd +66 -0
- data/test/files/saml/saml20assertion_schema.xsd +283 -0
- data/test/files/saml/saml20protocol_schema.xsd +302 -0
- data/test/files/saml/xenc_schema.xsd +146 -0
- data/test/files/saml/xmldsig_schema.xsd +318 -0
- data/test/files/shift_jis.html +10 -0
- data/test/files/shift_jis.xml +5 -0
- data/test/files/shift_jis_no_charset.html +9 -0
- data/test/files/snuggles.xml +3 -0
- data/test/files/staff.dtd +10 -0
- data/test/files/staff.xml +59 -0
- data/test/files/staff.xslt +32 -0
- data/test/files/test_document_url/bar.xml +2 -0
- data/test/files/test_document_url/document.dtd +4 -0
- data/test/files/test_document_url/document.xml +6 -0
- data/test/files/tlm.html +850 -0
- data/test/files/to_be_xincluded.xml +2 -0
- data/test/files/valid_bar.xml +2 -0
- data/test/files/xinclude.xml +4 -0
- data/test/helper.rb +164 -0
- data/test/html/sax/test_parser.rb +141 -0
- data/test/html/sax/test_parser_context.rb +46 -0
- data/test/html/test_builder.rb +164 -0
- data/test/html/test_document.rb +619 -0
- data/test/html/test_document_encoding.rb +148 -0
- data/test/html/test_document_fragment.rb +261 -0
- data/test/html/test_element_description.rb +105 -0
- data/test/html/test_named_characters.rb +14 -0
- data/test/html/test_node.rb +196 -0
- data/test/html/test_node_encoding.rb +27 -0
- data/test/namespaces/test_additional_namespaces_in_builder_doc.rb +14 -0
- data/test/namespaces/test_namespaces_in_builder_doc.rb +75 -0
- data/test/namespaces/test_namespaces_in_cloned_doc.rb +31 -0
- data/test/namespaces/test_namespaces_in_created_doc.rb +75 -0
- data/test/namespaces/test_namespaces_in_parsed_doc.rb +66 -0
- data/test/test_convert_xpath.rb +135 -0
- data/test/test_css_cache.rb +45 -0
- data/test/test_encoding_handler.rb +46 -0
- data/test/test_memory_leak.rb +156 -0
- data/test/test_nokogiri.rb +138 -0
- data/test/test_reader.rb +558 -0
- data/test/test_soap4r_sax.rb +52 -0
- data/test/test_xslt_transforms.rb +279 -0
- data/test/xml/node/test_save_options.rb +28 -0
- data/test/xml/node/test_subclass.rb +44 -0
- data/test/xml/sax/test_parser.rb +382 -0
- data/test/xml/sax/test_parser_context.rb +115 -0
- data/test/xml/sax/test_push_parser.rb +157 -0
- data/test/xml/test_attr.rb +64 -0
- data/test/xml/test_attribute_decl.rb +86 -0
- data/test/xml/test_builder.rb +315 -0
- data/test/xml/test_c14n.rb +161 -0
- data/test/xml/test_cdata.rb +48 -0
- data/test/xml/test_comment.rb +29 -0
- data/test/xml/test_document.rb +934 -0
- data/test/xml/test_document_encoding.rb +28 -0
- data/test/xml/test_document_fragment.rb +228 -0
- data/test/xml/test_dtd.rb +187 -0
- data/test/xml/test_dtd_encoding.rb +33 -0
- data/test/xml/test_element_content.rb +56 -0
- data/test/xml/test_element_decl.rb +73 -0
- data/test/xml/test_entity_decl.rb +122 -0
- data/test/xml/test_entity_reference.rb +245 -0
- data/test/xml/test_namespace.rb +95 -0
- data/test/xml/test_node.rb +1155 -0
- data/test/xml/test_node_attributes.rb +113 -0
- data/test/xml/test_node_encoding.rb +107 -0
- data/test/xml/test_node_inheritance.rb +32 -0
- data/test/xml/test_node_reparenting.rb +374 -0
- data/test/xml/test_node_set.rb +755 -0
- data/test/xml/test_parse_options.rb +64 -0
- data/test/xml/test_processing_instruction.rb +30 -0
- data/test/xml/test_reader_encoding.rb +142 -0
- data/test/xml/test_relax_ng.rb +60 -0
- data/test/xml/test_schema.rb +129 -0
- data/test/xml/test_syntax_error.rb +12 -0
- data/test/xml/test_text.rb +45 -0
- data/test/xml/test_unparented_node.rb +422 -0
- data/test/xml/test_xinclude.rb +83 -0
- data/test/xml/test_xpath.rb +376 -0
- data/test/xslt/test_custom_functions.rb +133 -0
- data/test/xslt/test_exception_handling.rb +37 -0
- data/test_all +81 -0
- metadata +601 -0
@@ -0,0 +1,23 @@
|
|
1
|
+
#ifndef NOKOGIRI_XML_DOCUMENT
|
2
|
+
#define NOKOGIRI_XML_DOCUMENT
|
3
|
+
|
4
|
+
#include <nokogiri.h>
|
5
|
+
|
6
|
+
struct _nokogiriTuple {
|
7
|
+
VALUE doc;
|
8
|
+
st_table *unlinkedNodes;
|
9
|
+
VALUE node_cache;
|
10
|
+
};
|
11
|
+
typedef struct _nokogiriTuple nokogiriTuple;
|
12
|
+
typedef nokogiriTuple * nokogiriTuplePtr;
|
13
|
+
|
14
|
+
void init_xml_document();
|
15
|
+
VALUE Nokogiri_wrap_xml_document(VALUE klass, xmlDocPtr doc);
|
16
|
+
|
17
|
+
#define DOC_RUBY_OBJECT_TEST(x) ((nokogiriTuplePtr)(x->_private))
|
18
|
+
#define DOC_RUBY_OBJECT(x) (((nokogiriTuplePtr)(x->_private))->doc)
|
19
|
+
#define DOC_UNLINKED_NODE_HASH(x) (((nokogiriTuplePtr)(x->_private))->unlinkedNodes)
|
20
|
+
#define DOC_NODE_CACHE(x) (((nokogiriTuplePtr)(x->_private))->node_cache)
|
21
|
+
|
22
|
+
extern VALUE cNokogiriXmlDocument ;
|
23
|
+
#endif
|
@@ -0,0 +1,48 @@
|
|
1
|
+
#include <xml_document_fragment.h>
|
2
|
+
|
3
|
+
/*
|
4
|
+
* call-seq:
|
5
|
+
* new(document)
|
6
|
+
*
|
7
|
+
* Create a new DocumentFragment element on the +document+
|
8
|
+
*/
|
9
|
+
static VALUE new(int argc, VALUE *argv, VALUE klass)
|
10
|
+
{
|
11
|
+
xmlDocPtr xml_doc;
|
12
|
+
xmlNodePtr node;
|
13
|
+
VALUE document;
|
14
|
+
VALUE rest;
|
15
|
+
VALUE rb_node;
|
16
|
+
|
17
|
+
rb_scan_args(argc, argv, "1*", &document, &rest);
|
18
|
+
|
19
|
+
Data_Get_Struct(document, xmlDoc, xml_doc);
|
20
|
+
|
21
|
+
node = xmlNewDocFragment(xml_doc->doc);
|
22
|
+
|
23
|
+
nokogiri_root_node(node);
|
24
|
+
|
25
|
+
rb_node = Nokogiri_wrap_xml_node(klass, node);
|
26
|
+
rb_obj_call_init(rb_node, argc, argv);
|
27
|
+
|
28
|
+
if(rb_block_given_p()) rb_yield(rb_node);
|
29
|
+
|
30
|
+
return rb_node;
|
31
|
+
}
|
32
|
+
|
33
|
+
VALUE cNokogiriXmlDocumentFragment;
|
34
|
+
void init_xml_document_fragment()
|
35
|
+
{
|
36
|
+
VALUE nokogiri = rb_define_module("Nokogiri");
|
37
|
+
VALUE xml = rb_define_module_under(nokogiri, "XML");
|
38
|
+
VALUE node = rb_define_class_under(xml, "Node", rb_cObject);
|
39
|
+
|
40
|
+
/*
|
41
|
+
* DocumentFragment represents a DocumentFragment node in an xml document.
|
42
|
+
*/
|
43
|
+
VALUE klass = rb_define_class_under(xml, "DocumentFragment", node);
|
44
|
+
|
45
|
+
cNokogiriXmlDocumentFragment = klass;
|
46
|
+
|
47
|
+
rb_define_singleton_method(klass, "new", new, -1);
|
48
|
+
}
|
@@ -0,0 +1,202 @@
|
|
1
|
+
#include <xml_dtd.h>
|
2
|
+
|
3
|
+
static void notation_copier(void *payload, void *data, xmlChar *name)
|
4
|
+
{
|
5
|
+
VALUE hash = (VALUE)data;
|
6
|
+
VALUE klass = rb_const_get(mNokogiriXml, rb_intern("Notation"));
|
7
|
+
|
8
|
+
xmlNotationPtr c_notation = (xmlNotationPtr)payload;
|
9
|
+
VALUE notation;
|
10
|
+
VALUE argv[3];
|
11
|
+
argv[0] = (c_notation->name ? NOKOGIRI_STR_NEW2(c_notation->name) : Qnil);
|
12
|
+
argv[1] = (c_notation->PublicID ? NOKOGIRI_STR_NEW2(c_notation->PublicID) : Qnil);
|
13
|
+
argv[2] = (c_notation->SystemID ? NOKOGIRI_STR_NEW2(c_notation->SystemID) : Qnil);
|
14
|
+
|
15
|
+
notation = rb_class_new_instance(3, argv, klass);
|
16
|
+
|
17
|
+
rb_hash_aset(hash, NOKOGIRI_STR_NEW2(name),notation);
|
18
|
+
}
|
19
|
+
|
20
|
+
static void element_copier(void *_payload, void *data, xmlChar *name)
|
21
|
+
{
|
22
|
+
VALUE hash = (VALUE)data;
|
23
|
+
xmlNodePtr payload = (xmlNodePtr)_payload;
|
24
|
+
|
25
|
+
VALUE element = Nokogiri_wrap_xml_node(Qnil, payload);
|
26
|
+
|
27
|
+
rb_hash_aset(hash, NOKOGIRI_STR_NEW2(name), element);
|
28
|
+
}
|
29
|
+
|
30
|
+
/*
|
31
|
+
* call-seq:
|
32
|
+
* entities
|
33
|
+
*
|
34
|
+
* Get a hash of the elements for this DTD.
|
35
|
+
*/
|
36
|
+
static VALUE entities(VALUE self)
|
37
|
+
{
|
38
|
+
xmlDtdPtr dtd;
|
39
|
+
VALUE hash;
|
40
|
+
|
41
|
+
Data_Get_Struct(self, xmlDtd, dtd);
|
42
|
+
|
43
|
+
if(!dtd->entities) return Qnil;
|
44
|
+
|
45
|
+
hash = rb_hash_new();
|
46
|
+
|
47
|
+
xmlHashScan((xmlHashTablePtr)dtd->entities, element_copier, (void *)hash);
|
48
|
+
|
49
|
+
return hash;
|
50
|
+
}
|
51
|
+
|
52
|
+
/*
|
53
|
+
* call-seq:
|
54
|
+
* notations
|
55
|
+
*
|
56
|
+
* Get a hash of the notations for this DTD.
|
57
|
+
*/
|
58
|
+
static VALUE notations(VALUE self)
|
59
|
+
{
|
60
|
+
xmlDtdPtr dtd;
|
61
|
+
VALUE hash;
|
62
|
+
|
63
|
+
Data_Get_Struct(self, xmlDtd, dtd);
|
64
|
+
|
65
|
+
if(!dtd->notations) return Qnil;
|
66
|
+
|
67
|
+
hash = rb_hash_new();
|
68
|
+
|
69
|
+
xmlHashScan((xmlHashTablePtr)dtd->notations, notation_copier, (void *)hash);
|
70
|
+
|
71
|
+
return hash;
|
72
|
+
}
|
73
|
+
|
74
|
+
/*
|
75
|
+
* call-seq:
|
76
|
+
* attributes
|
77
|
+
*
|
78
|
+
* Get a hash of the attributes for this DTD.
|
79
|
+
*/
|
80
|
+
static VALUE attributes(VALUE self)
|
81
|
+
{
|
82
|
+
xmlDtdPtr dtd;
|
83
|
+
VALUE hash;
|
84
|
+
|
85
|
+
Data_Get_Struct(self, xmlDtd, dtd);
|
86
|
+
|
87
|
+
hash = rb_hash_new();
|
88
|
+
|
89
|
+
if(!dtd->attributes) return hash;
|
90
|
+
|
91
|
+
xmlHashScan((xmlHashTablePtr)dtd->attributes, element_copier, (void *)hash);
|
92
|
+
|
93
|
+
return hash;
|
94
|
+
}
|
95
|
+
|
96
|
+
/*
|
97
|
+
* call-seq:
|
98
|
+
* elements
|
99
|
+
*
|
100
|
+
* Get a hash of the elements for this DTD.
|
101
|
+
*/
|
102
|
+
static VALUE elements(VALUE self)
|
103
|
+
{
|
104
|
+
xmlDtdPtr dtd;
|
105
|
+
VALUE hash;
|
106
|
+
|
107
|
+
Data_Get_Struct(self, xmlDtd, dtd);
|
108
|
+
|
109
|
+
if(!dtd->elements) return Qnil;
|
110
|
+
|
111
|
+
hash = rb_hash_new();
|
112
|
+
|
113
|
+
xmlHashScan((xmlHashTablePtr)dtd->elements, element_copier, (void *)hash);
|
114
|
+
|
115
|
+
return hash;
|
116
|
+
}
|
117
|
+
|
118
|
+
/*
|
119
|
+
* call-seq:
|
120
|
+
* validate(document)
|
121
|
+
*
|
122
|
+
* Validate +document+ returning a list of errors
|
123
|
+
*/
|
124
|
+
static VALUE validate(VALUE self, VALUE document)
|
125
|
+
{
|
126
|
+
xmlDocPtr doc;
|
127
|
+
xmlDtdPtr dtd;
|
128
|
+
xmlValidCtxtPtr ctxt;
|
129
|
+
VALUE error_list;
|
130
|
+
|
131
|
+
Data_Get_Struct(self, xmlDtd, dtd);
|
132
|
+
Data_Get_Struct(document, xmlDoc, doc);
|
133
|
+
error_list = rb_ary_new();
|
134
|
+
|
135
|
+
ctxt = xmlNewValidCtxt();
|
136
|
+
|
137
|
+
xmlSetStructuredErrorFunc((void *)error_list, Nokogiri_error_array_pusher);
|
138
|
+
|
139
|
+
xmlValidateDtd(ctxt, doc, dtd);
|
140
|
+
|
141
|
+
xmlSetStructuredErrorFunc(NULL, NULL);
|
142
|
+
|
143
|
+
xmlFreeValidCtxt(ctxt);
|
144
|
+
|
145
|
+
return error_list;
|
146
|
+
}
|
147
|
+
|
148
|
+
/*
|
149
|
+
* call-seq:
|
150
|
+
* system_id
|
151
|
+
*
|
152
|
+
* Get the System ID for this DTD
|
153
|
+
*/
|
154
|
+
static VALUE system_id(VALUE self)
|
155
|
+
{
|
156
|
+
xmlDtdPtr dtd;
|
157
|
+
Data_Get_Struct(self, xmlDtd, dtd);
|
158
|
+
|
159
|
+
if(!dtd->SystemID) return Qnil;
|
160
|
+
|
161
|
+
return NOKOGIRI_STR_NEW2(dtd->SystemID);
|
162
|
+
}
|
163
|
+
|
164
|
+
/*
|
165
|
+
* call-seq:
|
166
|
+
* external_id
|
167
|
+
*
|
168
|
+
* Get the External ID for this DTD
|
169
|
+
*/
|
170
|
+
static VALUE external_id(VALUE self)
|
171
|
+
{
|
172
|
+
xmlDtdPtr dtd;
|
173
|
+
Data_Get_Struct(self, xmlDtd, dtd);
|
174
|
+
|
175
|
+
if(!dtd->ExternalID) return Qnil;
|
176
|
+
|
177
|
+
return NOKOGIRI_STR_NEW2(dtd->ExternalID);
|
178
|
+
}
|
179
|
+
|
180
|
+
VALUE cNokogiriXmlDtd;
|
181
|
+
|
182
|
+
void init_xml_dtd()
|
183
|
+
{
|
184
|
+
VALUE nokogiri = rb_define_module("Nokogiri");
|
185
|
+
VALUE xml = rb_define_module_under(nokogiri, "XML");
|
186
|
+
VALUE node = rb_define_class_under(xml, "Node", rb_cObject);
|
187
|
+
|
188
|
+
/*
|
189
|
+
* Nokogiri::XML::DTD wraps DTD nodes in an XML document
|
190
|
+
*/
|
191
|
+
VALUE klass = rb_define_class_under(xml, "DTD", node);
|
192
|
+
|
193
|
+
cNokogiriXmlDtd = klass;
|
194
|
+
|
195
|
+
rb_define_method(klass, "notations", notations, 0);
|
196
|
+
rb_define_method(klass, "elements", elements, 0);
|
197
|
+
rb_define_method(klass, "entities", entities, 0);
|
198
|
+
rb_define_method(klass, "validate", validate, 1);
|
199
|
+
rb_define_method(klass, "attributes", attributes, 0);
|
200
|
+
rb_define_method(klass, "system_id", system_id, 0);
|
201
|
+
rb_define_method(klass, "external_id", external_id, 0);
|
202
|
+
}
|
@@ -0,0 +1,123 @@
|
|
1
|
+
#include <xml_element_content.h>
|
2
|
+
|
3
|
+
VALUE cNokogiriXmlElementContent;
|
4
|
+
|
5
|
+
/*
|
6
|
+
* call-seq:
|
7
|
+
* name
|
8
|
+
*
|
9
|
+
* Get the require element +name+
|
10
|
+
*/
|
11
|
+
static VALUE get_name(VALUE self)
|
12
|
+
{
|
13
|
+
xmlElementContentPtr elem;
|
14
|
+
Data_Get_Struct(self, xmlElementContent, elem);
|
15
|
+
|
16
|
+
if(!elem->name) return Qnil;
|
17
|
+
return NOKOGIRI_STR_NEW2(elem->name);
|
18
|
+
}
|
19
|
+
|
20
|
+
/*
|
21
|
+
* call-seq:
|
22
|
+
* type
|
23
|
+
*
|
24
|
+
* Get the element content +type+. Possible values are PCDATA, ELEMENT, SEQ,
|
25
|
+
* or OR.
|
26
|
+
*/
|
27
|
+
static VALUE get_type(VALUE self)
|
28
|
+
{
|
29
|
+
xmlElementContentPtr elem;
|
30
|
+
Data_Get_Struct(self, xmlElementContent, elem);
|
31
|
+
|
32
|
+
return INT2NUM((long)elem->type);
|
33
|
+
}
|
34
|
+
|
35
|
+
/*
|
36
|
+
* call-seq:
|
37
|
+
* c1
|
38
|
+
*
|
39
|
+
* Get the first child.
|
40
|
+
*/
|
41
|
+
static VALUE get_c1(VALUE self)
|
42
|
+
{
|
43
|
+
xmlElementContentPtr elem;
|
44
|
+
Data_Get_Struct(self, xmlElementContent, elem);
|
45
|
+
|
46
|
+
if(!elem->c1) return Qnil;
|
47
|
+
return Nokogiri_wrap_element_content(rb_iv_get(self, "@document"), elem->c1);
|
48
|
+
}
|
49
|
+
|
50
|
+
/*
|
51
|
+
* call-seq:
|
52
|
+
* c2
|
53
|
+
*
|
54
|
+
* Get the first child.
|
55
|
+
*/
|
56
|
+
static VALUE get_c2(VALUE self)
|
57
|
+
{
|
58
|
+
xmlElementContentPtr elem;
|
59
|
+
Data_Get_Struct(self, xmlElementContent, elem);
|
60
|
+
|
61
|
+
if(!elem->c2) return Qnil;
|
62
|
+
return Nokogiri_wrap_element_content(rb_iv_get(self, "@document"), elem->c2);
|
63
|
+
}
|
64
|
+
|
65
|
+
/*
|
66
|
+
* call-seq:
|
67
|
+
* occur
|
68
|
+
*
|
69
|
+
* Get the element content +occur+ flag. Possible values are ONCE, OPT, MULT
|
70
|
+
* or PLUS.
|
71
|
+
*/
|
72
|
+
static VALUE get_occur(VALUE self)
|
73
|
+
{
|
74
|
+
xmlElementContentPtr elem;
|
75
|
+
Data_Get_Struct(self, xmlElementContent, elem);
|
76
|
+
|
77
|
+
return INT2NUM((long)elem->ocur);
|
78
|
+
}
|
79
|
+
|
80
|
+
/*
|
81
|
+
* call-seq:
|
82
|
+
* prefix
|
83
|
+
*
|
84
|
+
* Get the element content namespace +prefix+.
|
85
|
+
*/
|
86
|
+
static VALUE get_prefix(VALUE self)
|
87
|
+
{
|
88
|
+
xmlElementContentPtr elem;
|
89
|
+
Data_Get_Struct(self, xmlElementContent, elem);
|
90
|
+
|
91
|
+
if(!elem->prefix) return Qnil;
|
92
|
+
|
93
|
+
return NOKOGIRI_STR_NEW2(elem->prefix);
|
94
|
+
}
|
95
|
+
|
96
|
+
VALUE Nokogiri_wrap_element_content(VALUE doc, xmlElementContentPtr element)
|
97
|
+
{
|
98
|
+
VALUE elem = Data_Wrap_Struct(cNokogiriXmlElementContent, 0, 0, element);
|
99
|
+
|
100
|
+
/* Setting the document is necessary so that this does not get GC'd until */
|
101
|
+
/* the document is GC'd */
|
102
|
+
rb_iv_set(elem, "@document", doc);
|
103
|
+
|
104
|
+
return elem;
|
105
|
+
}
|
106
|
+
|
107
|
+
void init_xml_element_content()
|
108
|
+
{
|
109
|
+
VALUE nokogiri = rb_define_module("Nokogiri");
|
110
|
+
VALUE xml = rb_define_module_under(nokogiri, "XML");
|
111
|
+
|
112
|
+
VALUE klass = rb_define_class_under(xml, "ElementContent", rb_cObject);
|
113
|
+
|
114
|
+
cNokogiriXmlElementContent = klass;
|
115
|
+
|
116
|
+
rb_define_method(klass, "name", get_name, 0);
|
117
|
+
rb_define_method(klass, "type", get_type, 0);
|
118
|
+
rb_define_method(klass, "occur", get_occur, 0);
|
119
|
+
rb_define_method(klass, "prefix", get_prefix, 0);
|
120
|
+
|
121
|
+
rb_define_private_method(klass, "c1", get_c1, 0);
|
122
|
+
rb_define_private_method(klass, "c2", get_c2, 0);
|
123
|
+
}
|
@@ -0,0 +1,69 @@
|
|
1
|
+
#include <xml_element_decl.h>
|
2
|
+
|
3
|
+
static ID id_document;
|
4
|
+
|
5
|
+
/*
|
6
|
+
* call-seq:
|
7
|
+
* element_type
|
8
|
+
*
|
9
|
+
* The element_type
|
10
|
+
*/
|
11
|
+
static VALUE element_type(VALUE self)
|
12
|
+
{
|
13
|
+
xmlElementPtr node;
|
14
|
+
Data_Get_Struct(self, xmlElement, node);
|
15
|
+
return INT2NUM((long)node->etype);
|
16
|
+
}
|
17
|
+
|
18
|
+
/*
|
19
|
+
* call-seq:
|
20
|
+
* content
|
21
|
+
*
|
22
|
+
* The allowed content for this ElementDecl
|
23
|
+
*/
|
24
|
+
static VALUE content(VALUE self)
|
25
|
+
{
|
26
|
+
xmlElementPtr node;
|
27
|
+
Data_Get_Struct(self, xmlElement, node);
|
28
|
+
|
29
|
+
if(!node->content) return Qnil;
|
30
|
+
|
31
|
+
return Nokogiri_wrap_element_content(
|
32
|
+
rb_funcall(self, id_document, 0),
|
33
|
+
node->content
|
34
|
+
);
|
35
|
+
}
|
36
|
+
|
37
|
+
/*
|
38
|
+
* call-seq:
|
39
|
+
* prefix
|
40
|
+
*
|
41
|
+
* The namespace prefix for this ElementDecl
|
42
|
+
*/
|
43
|
+
static VALUE prefix(VALUE self)
|
44
|
+
{
|
45
|
+
xmlElementPtr node;
|
46
|
+
Data_Get_Struct(self, xmlElement, node);
|
47
|
+
|
48
|
+
if(!node->prefix) return Qnil;
|
49
|
+
|
50
|
+
return NOKOGIRI_STR_NEW2(node->prefix);
|
51
|
+
}
|
52
|
+
|
53
|
+
VALUE cNokogiriXmlElementDecl;
|
54
|
+
|
55
|
+
void init_xml_element_decl()
|
56
|
+
{
|
57
|
+
VALUE nokogiri = rb_define_module("Nokogiri");
|
58
|
+
VALUE xml = rb_define_module_under(nokogiri, "XML");
|
59
|
+
VALUE node = rb_define_class_under(xml, "Node", rb_cObject);
|
60
|
+
VALUE klass = rb_define_class_under(xml, "ElementDecl", node);
|
61
|
+
|
62
|
+
cNokogiriXmlElementDecl = klass;
|
63
|
+
|
64
|
+
rb_define_method(klass, "element_type", element_type, 0);
|
65
|
+
rb_define_method(klass, "content", content, 0);
|
66
|
+
rb_define_method(klass, "prefix", prefix, 0);
|
67
|
+
|
68
|
+
id_document = rb_intern("document");
|
69
|
+
}
|