superfeedr-nokogiri 1.4.0.20091116183308
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.autotest +27 -0
- data/CHANGELOG.ja.rdoc +330 -0
- data/CHANGELOG.rdoc +314 -0
- data/Manifest.txt +269 -0
- data/README.ja.rdoc +105 -0
- data/README.rdoc +118 -0
- data/Rakefile +244 -0
- data/bin/nokogiri +49 -0
- data/ext/nokogiri/extconf.rb +145 -0
- data/ext/nokogiri/html_document.c +145 -0
- data/ext/nokogiri/html_document.h +10 -0
- data/ext/nokogiri/html_element_description.c +272 -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 +92 -0
- data/ext/nokogiri/html_sax_parser_context.h +11 -0
- data/ext/nokogiri/nokogiri.c +89 -0
- data/ext/nokogiri/nokogiri.h +145 -0
- data/ext/nokogiri/xml_attr.c +92 -0
- data/ext/nokogiri/xml_attr.h +9 -0
- data/ext/nokogiri/xml_attribute_decl.c +67 -0
- data/ext/nokogiri/xml_attribute_decl.h +9 -0
- data/ext/nokogiri/xml_cdata.c +54 -0
- data/ext/nokogiri/xml_cdata.h +9 -0
- data/ext/nokogiri/xml_comment.c +52 -0
- data/ext/nokogiri/xml_comment.h +9 -0
- data/ext/nokogiri/xml_document.c +388 -0
- data/ext/nokogiri/xml_document.h +24 -0
- data/ext/nokogiri/xml_document_fragment.c +46 -0
- data/ext/nokogiri/xml_document_fragment.h +10 -0
- data/ext/nokogiri/xml_dtd.c +192 -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_entity_decl.c +97 -0
- data/ext/nokogiri/xml_entity_decl.h +10 -0
- data/ext/nokogiri/xml_entity_reference.c +50 -0
- data/ext/nokogiri/xml_entity_reference.h +9 -0
- data/ext/nokogiri/xml_io.c +31 -0
- data/ext/nokogiri/xml_io.h +11 -0
- data/ext/nokogiri/xml_namespace.c +74 -0
- data/ext/nokogiri/xml_namespace.h +12 -0
- data/ext/nokogiri/xml_node.c +1060 -0
- data/ext/nokogiri/xml_node.h +13 -0
- data/ext/nokogiri/xml_node_set.c +397 -0
- data/ext/nokogiri/xml_node_set.h +9 -0
- data/ext/nokogiri/xml_processing_instruction.c +54 -0
- data/ext/nokogiri/xml_processing_instruction.h +9 -0
- data/ext/nokogiri/xml_reader.c +593 -0
- data/ext/nokogiri/xml_reader.h +10 -0
- data/ext/nokogiri/xml_relax_ng.c +159 -0
- data/ext/nokogiri/xml_relax_ng.h +9 -0
- data/ext/nokogiri/xml_sax_parser.c +286 -0
- data/ext/nokogiri/xml_sax_parser.h +43 -0
- data/ext/nokogiri/xml_sax_parser_context.c +155 -0
- data/ext/nokogiri/xml_sax_parser_context.h +10 -0
- data/ext/nokogiri/xml_sax_push_parser.c +114 -0
- data/ext/nokogiri/xml_sax_push_parser.h +9 -0
- data/ext/nokogiri/xml_schema.c +156 -0
- data/ext/nokogiri/xml_schema.h +9 -0
- data/ext/nokogiri/xml_syntax_error.c +261 -0
- data/ext/nokogiri/xml_syntax_error.h +13 -0
- data/ext/nokogiri/xml_text.c +48 -0
- data/ext/nokogiri/xml_text.h +9 -0
- data/ext/nokogiri/xml_xpath.c +53 -0
- data/ext/nokogiri/xml_xpath.h +11 -0
- data/ext/nokogiri/xml_xpath_context.c +239 -0
- data/ext/nokogiri/xml_xpath_context.h +9 -0
- data/ext/nokogiri/xslt_stylesheet.c +131 -0
- data/ext/nokogiri/xslt_stylesheet.h +9 -0
- data/lib/nokogiri.rb +116 -0
- data/lib/nokogiri/css.rb +25 -0
- data/lib/nokogiri/css/generated_parser.rb +646 -0
- data/lib/nokogiri/css/generated_tokenizer.rb +142 -0
- data/lib/nokogiri/css/node.rb +99 -0
- data/lib/nokogiri/css/parser.rb +82 -0
- data/lib/nokogiri/css/parser.y +227 -0
- data/lib/nokogiri/css/syntax_error.rb +7 -0
- data/lib/nokogiri/css/tokenizer.rb +7 -0
- data/lib/nokogiri/css/tokenizer.rex +54 -0
- data/lib/nokogiri/css/xpath_visitor.rb +162 -0
- data/lib/nokogiri/decorators/slop.rb +33 -0
- data/lib/nokogiri/ffi/html/document.rb +28 -0
- data/lib/nokogiri/ffi/html/element_description.rb +85 -0
- data/lib/nokogiri/ffi/html/entity_lookup.rb +16 -0
- data/lib/nokogiri/ffi/html/sax/parser_context.rb +38 -0
- data/lib/nokogiri/ffi/io_callbacks.rb +42 -0
- data/lib/nokogiri/ffi/libxml.rb +356 -0
- data/lib/nokogiri/ffi/structs/common_node.rb +26 -0
- data/lib/nokogiri/ffi/structs/html_elem_desc.rb +24 -0
- data/lib/nokogiri/ffi/structs/html_entity_desc.rb +13 -0
- data/lib/nokogiri/ffi/structs/xml_alloc.rb +16 -0
- data/lib/nokogiri/ffi/structs/xml_attr.rb +19 -0
- data/lib/nokogiri/ffi/structs/xml_attribute.rb +27 -0
- data/lib/nokogiri/ffi/structs/xml_buffer.rb +16 -0
- data/lib/nokogiri/ffi/structs/xml_document.rb +108 -0
- data/lib/nokogiri/ffi/structs/xml_dtd.rb +28 -0
- data/lib/nokogiri/ffi/structs/xml_element.rb +26 -0
- data/lib/nokogiri/ffi/structs/xml_element_content.rb +17 -0
- data/lib/nokogiri/ffi/structs/xml_entity.rb +32 -0
- data/lib/nokogiri/ffi/structs/xml_enumeration.rb +12 -0
- data/lib/nokogiri/ffi/structs/xml_node.rb +28 -0
- data/lib/nokogiri/ffi/structs/xml_node_set.rb +53 -0
- data/lib/nokogiri/ffi/structs/xml_notation.rb +11 -0
- data/lib/nokogiri/ffi/structs/xml_ns.rb +15 -0
- data/lib/nokogiri/ffi/structs/xml_parser_context.rb +19 -0
- data/lib/nokogiri/ffi/structs/xml_relax_ng.rb +14 -0
- data/lib/nokogiri/ffi/structs/xml_sax_handler.rb +51 -0
- data/lib/nokogiri/ffi/structs/xml_sax_push_parser_context.rb +15 -0
- data/lib/nokogiri/ffi/structs/xml_schema.rb +13 -0
- data/lib/nokogiri/ffi/structs/xml_syntax_error.rb +31 -0
- data/lib/nokogiri/ffi/structs/xml_text_reader.rb +12 -0
- data/lib/nokogiri/ffi/structs/xml_xpath_context.rb +37 -0
- data/lib/nokogiri/ffi/structs/xml_xpath_object.rb +35 -0
- data/lib/nokogiri/ffi/structs/xml_xpath_parser_context.rb +20 -0
- data/lib/nokogiri/ffi/structs/xslt_stylesheet.rb +13 -0
- data/lib/nokogiri/ffi/xml/attr.rb +41 -0
- data/lib/nokogiri/ffi/xml/attribute_decl.rb +27 -0
- data/lib/nokogiri/ffi/xml/cdata.rb +19 -0
- data/lib/nokogiri/ffi/xml/comment.rb +18 -0
- data/lib/nokogiri/ffi/xml/document.rb +135 -0
- data/lib/nokogiri/ffi/xml/document_fragment.rb +21 -0
- data/lib/nokogiri/ffi/xml/dtd.rb +69 -0
- data/lib/nokogiri/ffi/xml/element_content.rb +43 -0
- data/lib/nokogiri/ffi/xml/element_decl.rb +19 -0
- data/lib/nokogiri/ffi/xml/entity_decl.rb +27 -0
- data/lib/nokogiri/ffi/xml/entity_reference.rb +19 -0
- data/lib/nokogiri/ffi/xml/namespace.rb +44 -0
- data/lib/nokogiri/ffi/xml/node.rb +444 -0
- data/lib/nokogiri/ffi/xml/node_set.rb +133 -0
- data/lib/nokogiri/ffi/xml/processing_instruction.rb +20 -0
- data/lib/nokogiri/ffi/xml/reader.rb +227 -0
- data/lib/nokogiri/ffi/xml/relax_ng.rb +85 -0
- data/lib/nokogiri/ffi/xml/sax/parser.rb +142 -0
- data/lib/nokogiri/ffi/xml/sax/parser_context.rb +67 -0
- data/lib/nokogiri/ffi/xml/sax/push_parser.rb +39 -0
- data/lib/nokogiri/ffi/xml/schema.rb +92 -0
- data/lib/nokogiri/ffi/xml/syntax_error.rb +91 -0
- data/lib/nokogiri/ffi/xml/text.rb +18 -0
- data/lib/nokogiri/ffi/xml/xpath.rb +19 -0
- data/lib/nokogiri/ffi/xml/xpath_context.rb +135 -0
- data/lib/nokogiri/ffi/xslt/stylesheet.rb +47 -0
- data/lib/nokogiri/html.rb +35 -0
- data/lib/nokogiri/html/builder.rb +35 -0
- data/lib/nokogiri/html/document.rb +88 -0
- data/lib/nokogiri/html/document_fragment.rb +15 -0
- data/lib/nokogiri/html/element_description.rb +23 -0
- data/lib/nokogiri/html/entity_lookup.rb +13 -0
- data/lib/nokogiri/html/sax/parser.rb +48 -0
- data/lib/nokogiri/html/sax/parser_context.rb +16 -0
- data/lib/nokogiri/syntax_error.rb +4 -0
- data/lib/nokogiri/version.rb +33 -0
- data/lib/nokogiri/version_warning.rb +11 -0
- data/lib/nokogiri/xml.rb +67 -0
- data/lib/nokogiri/xml/attr.rb +14 -0
- data/lib/nokogiri/xml/attribute_decl.rb +18 -0
- data/lib/nokogiri/xml/builder.rb +405 -0
- data/lib/nokogiri/xml/cdata.rb +11 -0
- data/lib/nokogiri/xml/character_data.rb +7 -0
- data/lib/nokogiri/xml/document.rb +131 -0
- data/lib/nokogiri/xml/document_fragment.rb +69 -0
- data/lib/nokogiri/xml/dtd.rb +11 -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 +15 -0
- data/lib/nokogiri/xml/fragment_handler.rb +71 -0
- data/lib/nokogiri/xml/namespace.rb +13 -0
- data/lib/nokogiri/xml/node.rb +665 -0
- data/lib/nokogiri/xml/node/save_options.rb +42 -0
- data/lib/nokogiri/xml/node_set.rb +307 -0
- data/lib/nokogiri/xml/notation.rb +6 -0
- data/lib/nokogiri/xml/parse_options.rb +85 -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 +74 -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 +160 -0
- data/lib/nokogiri/xml/sax/parser.rb +115 -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 +61 -0
- data/lib/nokogiri/xml/syntax_error.rb +38 -0
- data/lib/nokogiri/xml/xpath.rb +10 -0
- data/lib/nokogiri/xml/xpath/syntax_error.rb +8 -0
- data/lib/nokogiri/xml/xpath_context.rb +16 -0
- data/lib/nokogiri/xslt.rb +48 -0
- data/lib/nokogiri/xslt/stylesheet.rb +25 -0
- data/lib/xsd/xmlparser/nokogiri.rb +71 -0
- data/tasks/test.rb +100 -0
- data/test/css/test_nthiness.rb +159 -0
- data/test/css/test_parser.rb +277 -0
- data/test/css/test_tokenizer.rb +183 -0
- data/test/css/test_xpath_visitor.rb +76 -0
- data/test/ffi/test_document.rb +35 -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/bar/bar.xsd +4 -0
- data/test/files/dont_hurt_em_why.xml +422 -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/po.xml +32 -0
- data/test/files/po.xsd +66 -0
- data/test/files/shift_jis.html +10 -0
- data/test/files/shift_jis.xml +5 -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/tlm.html +850 -0
- data/test/files/valid_bar.xml +2 -0
- data/test/helper.rb +136 -0
- data/test/html/sax/test_parser.rb +64 -0
- data/test/html/sax/test_parser_context.rb +48 -0
- data/test/html/test_builder.rb +164 -0
- data/test/html/test_document.rb +390 -0
- data/test/html/test_document_encoding.rb +77 -0
- data/test/html/test_document_fragment.rb +132 -0
- data/test/html/test_element_description.rb +94 -0
- data/test/html/test_named_characters.rb +14 -0
- data/test/html/test_node.rb +228 -0
- data/test/html/test_node_encoding.rb +27 -0
- data/test/test_convert_xpath.rb +135 -0
- data/test/test_css_cache.rb +45 -0
- data/test/test_gc.rb +15 -0
- data/test/test_memory_leak.rb +77 -0
- data/test/test_nokogiri.rb +134 -0
- data/test/test_reader.rb +358 -0
- data/test/test_xslt_transforms.rb +131 -0
- data/test/xml/node/test_save_options.rb +20 -0
- data/test/xml/node/test_subclass.rb +44 -0
- data/test/xml/sax/test_parser.rb +307 -0
- data/test/xml/sax/test_parser_context.rb +56 -0
- data/test/xml/sax/test_push_parser.rb +131 -0
- data/test/xml/test_attr.rb +38 -0
- data/test/xml/test_attribute_decl.rb +82 -0
- data/test/xml/test_builder.rb +167 -0
- data/test/xml/test_cdata.rb +38 -0
- data/test/xml/test_comment.rb +29 -0
- data/test/xml/test_document.rb +607 -0
- data/test/xml/test_document_encoding.rb +26 -0
- data/test/xml/test_document_fragment.rb +138 -0
- data/test/xml/test_dtd.rb +82 -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 +83 -0
- data/test/xml/test_entity_reference.rb +21 -0
- data/test/xml/test_namespace.rb +68 -0
- data/test/xml/test_node.rb +889 -0
- data/test/xml/test_node_attributes.rb +34 -0
- data/test/xml/test_node_encoding.rb +107 -0
- data/test/xml/test_node_set.rb +531 -0
- data/test/xml/test_parse_options.rb +52 -0
- data/test/xml/test_processing_instruction.rb +30 -0
- data/test/xml/test_reader_encoding.rb +126 -0
- data/test/xml/test_relax_ng.rb +60 -0
- data/test/xml/test_schema.rb +89 -0
- data/test/xml/test_syntax_error.rb +27 -0
- data/test/xml/test_text.rb +30 -0
- data/test/xml/test_unparented_node.rb +381 -0
- data/test/xml/test_xpath.rb +106 -0
- metadata +430 -0
@@ -0,0 +1,145 @@
|
|
1
|
+
#ifndef NOKOGIRI_NATIVE
|
2
|
+
#define NOKOGIRI_NATIVE
|
3
|
+
|
4
|
+
#include <stdlib.h>
|
5
|
+
#include <assert.h>
|
6
|
+
#include <libxml/parser.h>
|
7
|
+
#include <libxml/parserInternals.h>
|
8
|
+
#include <libxml/xpath.h>
|
9
|
+
#include <libxml/xpathInternals.h>
|
10
|
+
#include <libxml/xmlreader.h>
|
11
|
+
#include <libxml/xmlsave.h>
|
12
|
+
#include <libxml/xmlschemas.h>
|
13
|
+
#include <libxml/HTMLparser.h>
|
14
|
+
#include <libxml/HTMLtree.h>
|
15
|
+
#include <libxml/relaxng.h>
|
16
|
+
#include <ruby.h>
|
17
|
+
|
18
|
+
#ifdef USE_INCLUDED_VASPRINTF
|
19
|
+
int vasprintf (char **strp, const char *fmt, va_list ap);
|
20
|
+
#else
|
21
|
+
|
22
|
+
#ifndef _GNU_SOURCE
|
23
|
+
#define _GNU_SOURCE
|
24
|
+
#endif
|
25
|
+
|
26
|
+
# include <stdio.h>
|
27
|
+
|
28
|
+
#endif
|
29
|
+
|
30
|
+
int is_2_6_16(void) ;
|
31
|
+
|
32
|
+
#ifndef UNUSED
|
33
|
+
# if defined(__GNUC__)
|
34
|
+
# define MAYBE_UNUSED(name) name __attribute__((unused))
|
35
|
+
# define UNUSED(name) MAYBE_UNUSED(UNUSED_ ## name)
|
36
|
+
# else
|
37
|
+
# define MAYBE_UNUSED(name) name
|
38
|
+
# define UNUSED(name) name
|
39
|
+
# endif
|
40
|
+
#endif
|
41
|
+
|
42
|
+
#ifdef HAVE_RUBY_ENCODING_H
|
43
|
+
|
44
|
+
#include <ruby/encoding.h>
|
45
|
+
|
46
|
+
#define NOKOGIRI_STR_NEW2(str) \
|
47
|
+
({ \
|
48
|
+
VALUE _string = rb_str_new2((const char *)str); \
|
49
|
+
int _enc = rb_enc_find_index("UTF-8"); \
|
50
|
+
rb_enc_associate_index(_string, _enc); \
|
51
|
+
_string; \
|
52
|
+
})
|
53
|
+
|
54
|
+
#define NOKOGIRI_STR_NEW(str, len) \
|
55
|
+
({ \
|
56
|
+
VALUE _string = rb_str_new((const char *)str, (long)len); \
|
57
|
+
int _enc = rb_enc_find_index("UTF-8"); \
|
58
|
+
rb_enc_associate_index(_string, _enc); \
|
59
|
+
_string; \
|
60
|
+
})
|
61
|
+
|
62
|
+
#else
|
63
|
+
|
64
|
+
#define NOKOGIRI_STR_NEW2(str) \
|
65
|
+
rb_str_new2((const char *)str)
|
66
|
+
|
67
|
+
#define NOKOGIRI_STR_NEW(str, len) \
|
68
|
+
rb_str_new((const char *)str, (long)len)
|
69
|
+
#endif
|
70
|
+
|
71
|
+
#include <xml_io.h>
|
72
|
+
#include <xml_document.h>
|
73
|
+
#include <html_entity_lookup.h>
|
74
|
+
#include <html_document.h>
|
75
|
+
#include <xml_node.h>
|
76
|
+
#include <xml_text.h>
|
77
|
+
#include <xml_cdata.h>
|
78
|
+
#include <xml_attr.h>
|
79
|
+
#include <xml_processing_instruction.h>
|
80
|
+
#include <xml_entity_reference.h>
|
81
|
+
#include <xml_document_fragment.h>
|
82
|
+
#include <xml_comment.h>
|
83
|
+
#include <xml_node_set.h>
|
84
|
+
#include <xml_xpath.h>
|
85
|
+
#include <xml_dtd.h>
|
86
|
+
#include <xml_attribute_decl.h>
|
87
|
+
#include <xml_element_decl.h>
|
88
|
+
#include <xml_entity_decl.h>
|
89
|
+
#include <xml_xpath_context.h>
|
90
|
+
#include <xml_element_content.h>
|
91
|
+
#include <xml_sax_parser_context.h>
|
92
|
+
#include <xml_sax_parser.h>
|
93
|
+
#include <xml_sax_push_parser.h>
|
94
|
+
#include <xml_reader.h>
|
95
|
+
#include <html_sax_parser_context.h>
|
96
|
+
#include <xslt_stylesheet.h>
|
97
|
+
#include <xml_syntax_error.h>
|
98
|
+
#include <xml_schema.h>
|
99
|
+
#include <xml_relax_ng.h>
|
100
|
+
#include <html_element_description.h>
|
101
|
+
#include <xml_namespace.h>
|
102
|
+
|
103
|
+
extern VALUE mNokogiri ;
|
104
|
+
extern VALUE mNokogiriXml ;
|
105
|
+
extern VALUE mNokogiriXmlSax ;
|
106
|
+
extern VALUE mNokogiriHtml ;
|
107
|
+
extern VALUE mNokogiriHtmlSax ;
|
108
|
+
extern VALUE mNokogiriXslt ;
|
109
|
+
|
110
|
+
#define NOKOGIRI_ROOT_NODE(_node) \
|
111
|
+
({ \
|
112
|
+
nokogiriTuplePtr tuple = (nokogiriTuplePtr)(_node->doc->_private); \
|
113
|
+
st_insert(tuple->unlinkedNodes, (st_data_t)_node, (st_data_t)_node); \
|
114
|
+
_node; \
|
115
|
+
})
|
116
|
+
|
117
|
+
#ifdef DEBUG
|
118
|
+
|
119
|
+
#define NOKOGIRI_DEBUG_START(p) if (getenv("NOKOGIRI_NO_FREE")) return ; if (getenv("NOKOGIRI_DEBUG")) fprintf(stderr,"nokogiri: %s:%d %p start\n", __FILE__, __LINE__, p);
|
120
|
+
#define NOKOGIRI_DEBUG_END(p) if (getenv("NOKOGIRI_DEBUG")) fprintf(stderr,"nokogiri: %s:%d %p end\n", __FILE__, __LINE__, p);
|
121
|
+
|
122
|
+
#else
|
123
|
+
|
124
|
+
#define NOKOGIRI_DEBUG_START(p)
|
125
|
+
#define NOKOGIRI_DEBUG_END(p)
|
126
|
+
|
127
|
+
#ifndef RSTRING_PTR
|
128
|
+
#define RSTRING_PTR(s) (RSTRING(s)->ptr)
|
129
|
+
#endif
|
130
|
+
|
131
|
+
#ifndef RSTRING_LEN
|
132
|
+
#define RSTRING_LEN(s) (RSTRING(s)->len)
|
133
|
+
#endif
|
134
|
+
|
135
|
+
#ifndef RARRAY_PTR
|
136
|
+
#define RARRAY_PTR(a) RARRAY(a)->ptr
|
137
|
+
#endif
|
138
|
+
|
139
|
+
#ifndef RARRAY_LEN
|
140
|
+
#define RARRAY_LEN(a) RARRAY(a)->len
|
141
|
+
#endif
|
142
|
+
|
143
|
+
#endif
|
144
|
+
|
145
|
+
#endif
|
@@ -0,0 +1,92 @@
|
|
1
|
+
#include <xml_attr.h>
|
2
|
+
|
3
|
+
/*
|
4
|
+
* call-seq:
|
5
|
+
* value=(content)
|
6
|
+
*
|
7
|
+
* Set the value for this Attr to +content+
|
8
|
+
*/
|
9
|
+
static VALUE set_value(VALUE self, VALUE content)
|
10
|
+
{
|
11
|
+
xmlAttrPtr attr;
|
12
|
+
Data_Get_Struct(self, xmlAttr, attr);
|
13
|
+
|
14
|
+
if(attr->children) xmlFreeNodeList(attr->children);
|
15
|
+
|
16
|
+
attr->children = attr->last = NULL;
|
17
|
+
|
18
|
+
if(content) {
|
19
|
+
xmlChar *buffer;
|
20
|
+
xmlNode *tmp;
|
21
|
+
|
22
|
+
// Encode our content
|
23
|
+
buffer = xmlEncodeEntitiesReentrant(attr->doc, (unsigned char *)StringValuePtr(content));
|
24
|
+
|
25
|
+
attr->children = xmlStringGetNodeList(attr->doc, buffer);
|
26
|
+
attr->last = NULL;
|
27
|
+
tmp = attr->children;
|
28
|
+
|
29
|
+
// Loop through the children
|
30
|
+
for(tmp = attr->children; tmp; tmp = tmp->next) {
|
31
|
+
tmp->parent = (xmlNode *)attr;
|
32
|
+
tmp->doc = attr->doc;
|
33
|
+
if(tmp->next == NULL) attr->last = tmp;
|
34
|
+
}
|
35
|
+
|
36
|
+
// Free up memory
|
37
|
+
xmlFree(buffer);
|
38
|
+
}
|
39
|
+
|
40
|
+
return content;
|
41
|
+
}
|
42
|
+
|
43
|
+
/*
|
44
|
+
* call-seq:
|
45
|
+
* new(document, name)
|
46
|
+
*
|
47
|
+
* Create a new Attr element on the +document+ with +name+
|
48
|
+
*/
|
49
|
+
static VALUE new(int argc, VALUE *argv, VALUE klass)
|
50
|
+
{
|
51
|
+
xmlDocPtr xml_doc;
|
52
|
+
VALUE document;
|
53
|
+
VALUE name;
|
54
|
+
VALUE rest;
|
55
|
+
|
56
|
+
rb_scan_args(argc, argv, "2*", &document, &name, &rest);
|
57
|
+
|
58
|
+
Data_Get_Struct(document, xmlDoc, xml_doc);
|
59
|
+
|
60
|
+
xmlAttrPtr node = xmlNewDocProp(
|
61
|
+
xml_doc,
|
62
|
+
(const xmlChar *)StringValuePtr(name),
|
63
|
+
NULL
|
64
|
+
);
|
65
|
+
|
66
|
+
NOKOGIRI_ROOT_NODE((xmlNodePtr)node);
|
67
|
+
|
68
|
+
VALUE rb_node = Nokogiri_wrap_xml_node(klass, (xmlNodePtr)node);
|
69
|
+
rb_obj_call_init(rb_node, argc, argv);
|
70
|
+
|
71
|
+
if(rb_block_given_p()) rb_yield(rb_node);
|
72
|
+
|
73
|
+
return rb_node;
|
74
|
+
}
|
75
|
+
|
76
|
+
VALUE cNokogiriXmlAttr;
|
77
|
+
void init_xml_attr()
|
78
|
+
{
|
79
|
+
VALUE nokogiri = rb_define_module("Nokogiri");
|
80
|
+
VALUE xml = rb_define_module_under(nokogiri, "XML");
|
81
|
+
VALUE node = rb_define_class_under(xml, "Node", rb_cObject);
|
82
|
+
|
83
|
+
/*
|
84
|
+
* Attr represents a Attr node in an xml document.
|
85
|
+
*/
|
86
|
+
VALUE klass = rb_define_class_under(xml, "Attr", node);
|
87
|
+
|
88
|
+
cNokogiriXmlAttr = klass;
|
89
|
+
|
90
|
+
rb_define_singleton_method(klass, "new", new, -1);
|
91
|
+
rb_define_method(klass, "value=", set_value, 1);
|
92
|
+
}
|
@@ -0,0 +1,67 @@
|
|
1
|
+
#include <xml_attribute_decl.h>
|
2
|
+
|
3
|
+
/*
|
4
|
+
* call-seq:
|
5
|
+
* attribute_type
|
6
|
+
*
|
7
|
+
* The attribute_type for this AttributeDecl
|
8
|
+
*/
|
9
|
+
static VALUE attribute_type(VALUE self)
|
10
|
+
{
|
11
|
+
xmlAttributePtr node;
|
12
|
+
Data_Get_Struct(self, xmlAttribute, node);
|
13
|
+
return INT2NUM((long)node->atype);
|
14
|
+
}
|
15
|
+
|
16
|
+
/*
|
17
|
+
* call-seq:
|
18
|
+
* default
|
19
|
+
*
|
20
|
+
* The default value
|
21
|
+
*/
|
22
|
+
static VALUE default_value(VALUE self)
|
23
|
+
{
|
24
|
+
xmlAttributePtr node;
|
25
|
+
Data_Get_Struct(self, xmlAttribute, node);
|
26
|
+
|
27
|
+
if(node->defaultValue) return NOKOGIRI_STR_NEW2(node->defaultValue);
|
28
|
+
return Qnil;
|
29
|
+
}
|
30
|
+
|
31
|
+
/*
|
32
|
+
* call-seq:
|
33
|
+
* enumeration
|
34
|
+
*
|
35
|
+
* An enumeration of possible values
|
36
|
+
*/
|
37
|
+
static VALUE enumeration(VALUE self)
|
38
|
+
{
|
39
|
+
xmlAttributePtr node;
|
40
|
+
Data_Get_Struct(self, xmlAttribute, node);
|
41
|
+
|
42
|
+
VALUE list = rb_ary_new();
|
43
|
+
xmlEnumerationPtr enm = node->tree;
|
44
|
+
|
45
|
+
while(enm) {
|
46
|
+
rb_ary_push(list, NOKOGIRI_STR_NEW2(enm->name));
|
47
|
+
enm = enm->next;
|
48
|
+
}
|
49
|
+
|
50
|
+
return list;
|
51
|
+
}
|
52
|
+
|
53
|
+
VALUE cNokogiriXmlAttributeDecl;
|
54
|
+
|
55
|
+
void init_xml_attribute_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, "AttributeDecl", node);
|
61
|
+
|
62
|
+
cNokogiriXmlAttributeDecl = klass;
|
63
|
+
|
64
|
+
rb_define_method(klass, "attribute_type", attribute_type, 0);
|
65
|
+
rb_define_method(klass, "default", default_value, 0);
|
66
|
+
rb_define_method(klass, "enumeration", enumeration, 0);
|
67
|
+
}
|
@@ -0,0 +1,54 @@
|
|
1
|
+
#include <xml_cdata.h>
|
2
|
+
|
3
|
+
/*
|
4
|
+
* call-seq:
|
5
|
+
* new(document, content)
|
6
|
+
*
|
7
|
+
* Create a new CDATA element on the +document+ with +content+
|
8
|
+
*/
|
9
|
+
static VALUE new(int argc, VALUE *argv, VALUE klass)
|
10
|
+
{
|
11
|
+
xmlDocPtr xml_doc;
|
12
|
+
VALUE doc;
|
13
|
+
VALUE content;
|
14
|
+
VALUE rest;
|
15
|
+
|
16
|
+
rb_scan_args(argc, argv, "2*", &doc, &content, &rest);
|
17
|
+
|
18
|
+
Data_Get_Struct(doc, xmlDoc, xml_doc);
|
19
|
+
|
20
|
+
xmlNodePtr node = xmlNewCDataBlock(
|
21
|
+
xml_doc->doc,
|
22
|
+
NIL_P(content) ? NULL : (const xmlChar *)StringValuePtr(content),
|
23
|
+
NIL_P(content) ? 0 : (int)RSTRING_LEN(content)
|
24
|
+
);
|
25
|
+
|
26
|
+
NOKOGIRI_ROOT_NODE(node);
|
27
|
+
|
28
|
+
VALUE rb_node = Nokogiri_wrap_xml_node(klass, node);
|
29
|
+
rb_obj_call_init(rb_node, argc, argv);
|
30
|
+
|
31
|
+
if(rb_block_given_p()) rb_yield(rb_node);
|
32
|
+
|
33
|
+
return rb_node;
|
34
|
+
}
|
35
|
+
|
36
|
+
VALUE cNokogiriXmlCData;
|
37
|
+
void init_xml_cdata()
|
38
|
+
{
|
39
|
+
VALUE nokogiri = rb_define_module("Nokogiri");
|
40
|
+
VALUE xml = rb_define_module_under(nokogiri, "XML");
|
41
|
+
VALUE node = rb_define_class_under(xml, "Node", rb_cObject);
|
42
|
+
VALUE char_data = rb_define_class_under(xml, "CharacterData", node);
|
43
|
+
VALUE text = rb_define_class_under(xml, "Text", char_data);
|
44
|
+
|
45
|
+
/*
|
46
|
+
* CData represents a CData node in an xml document.
|
47
|
+
*/
|
48
|
+
VALUE klass = rb_define_class_under(xml, "CDATA", text);
|
49
|
+
|
50
|
+
|
51
|
+
cNokogiriXmlCData = klass;
|
52
|
+
|
53
|
+
rb_define_singleton_method(klass, "new", new, -1);
|
54
|
+
}
|
@@ -0,0 +1,52 @@
|
|
1
|
+
#include <xml_comment.h>
|
2
|
+
|
3
|
+
/*
|
4
|
+
* call-seq:
|
5
|
+
* new(document, content)
|
6
|
+
*
|
7
|
+
* Create a new Comment element on the +document+ with +content+
|
8
|
+
*/
|
9
|
+
static VALUE new(int argc, VALUE *argv, VALUE klass)
|
10
|
+
{
|
11
|
+
xmlDocPtr xml_doc;
|
12
|
+
VALUE document;
|
13
|
+
VALUE content;
|
14
|
+
VALUE rest;
|
15
|
+
|
16
|
+
rb_scan_args(argc, argv, "2*", &document, &content, &rest);
|
17
|
+
|
18
|
+
Data_Get_Struct(document, xmlDoc, xml_doc);
|
19
|
+
|
20
|
+
xmlNodePtr node = xmlNewDocComment(
|
21
|
+
xml_doc,
|
22
|
+
(const xmlChar *)StringValuePtr(content)
|
23
|
+
);
|
24
|
+
|
25
|
+
VALUE rb_node = Nokogiri_wrap_xml_node(klass, node);
|
26
|
+
rb_obj_call_init(rb_node, argc, argv);
|
27
|
+
|
28
|
+
NOKOGIRI_ROOT_NODE(node);
|
29
|
+
|
30
|
+
if(rb_block_given_p()) rb_yield(rb_node);
|
31
|
+
|
32
|
+
return rb_node;
|
33
|
+
}
|
34
|
+
|
35
|
+
VALUE cNokogiriXmlComment;
|
36
|
+
void init_xml_comment()
|
37
|
+
{
|
38
|
+
VALUE nokogiri = rb_define_module("Nokogiri");
|
39
|
+
VALUE xml = rb_define_module_under(nokogiri, "XML");
|
40
|
+
VALUE node = rb_define_class_under(xml, "Node", rb_cObject);
|
41
|
+
VALUE char_data = rb_define_class_under(xml, "CharacterData", node);
|
42
|
+
|
43
|
+
/*
|
44
|
+
* Comment represents a comment node in an xml document.
|
45
|
+
*/
|
46
|
+
VALUE klass = rb_define_class_under(xml, "Comment", char_data);
|
47
|
+
|
48
|
+
|
49
|
+
cNokogiriXmlComment = klass;
|
50
|
+
|
51
|
+
rb_define_singleton_method(klass, "new", new, -1);
|
52
|
+
}
|