libxml-ruby 0.5.4 → 0.6.0
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/LICENSE +23 -23
- data/README +144 -144
- data/ext/libxml/extconf.rb +26 -27
- data/ext/libxml/libxml.c +7 -37
- data/ext/libxml/{libxml.h → ruby_libxml.h} +93 -98
- data/ext/libxml/ruby_xml_attr.c +405 -387
- data/ext/libxml/ruby_xml_attr.h +19 -18
- data/ext/libxml/ruby_xml_document.c +1111 -1115
- data/ext/libxml/ruby_xml_document.h +27 -24
- data/ext/libxml/ruby_xml_dtd.c +168 -168
- data/ext/libxml/ruby_xml_html_parser.c +449 -450
- data/ext/libxml/ruby_xml_html_parser.h +1 -1
- data/ext/libxml/ruby_xml_input_cbg.c +158 -158
- data/ext/libxml/ruby_xml_node.c +2410 -2395
- data/ext/libxml/ruby_xml_node.h +1 -1
- data/ext/libxml/ruby_xml_node_set.c +170 -170
- data/ext/libxml/ruby_xml_node_set.h +1 -1
- data/ext/libxml/ruby_xml_ns.c +153 -153
- data/ext/libxml/ruby_xml_ns.h +1 -1
- data/ext/libxml/ruby_xml_parser.c +1425 -1422
- data/ext/libxml/ruby_xml_parser.h +1 -1
- data/ext/libxml/ruby_xml_parser_context.c +750 -716
- data/ext/libxml/ruby_xml_parser_context.h +1 -1
- data/ext/libxml/ruby_xml_reader.c +900 -896
- data/ext/libxml/ruby_xml_sax_parser.c +485 -485
- data/ext/libxml/ruby_xml_sax_parser.h +1 -1
- data/ext/libxml/ruby_xml_schema.c +146 -142
- data/ext/libxml/ruby_xml_state.c +5 -6
- data/ext/libxml/ruby_xml_state.h +1 -0
- data/ext/libxml/ruby_xml_tree.c +43 -43
- data/ext/libxml/ruby_xml_tree.h +1 -1
- data/ext/libxml/ruby_xml_xinclude.c +20 -20
- data/ext/libxml/ruby_xml_xinclude.h +1 -1
- data/ext/libxml/ruby_xml_xpath.c +243 -252
- data/ext/libxml/ruby_xml_xpath.h +1 -1
- data/ext/libxml/ruby_xml_xpath_context.c +118 -118
- data/ext/libxml/ruby_xml_xpath_context.h +1 -1
- data/ext/libxml/ruby_xml_xpath_object.c +43 -29
- data/ext/libxml/ruby_xml_xpath_object.h +0 -1
- data/ext/libxml/ruby_xml_xpointer.c +100 -100
- data/ext/libxml/ruby_xml_xpointer.h +1 -1
- data/ext/libxml/ruby_xml_xpointer_context.c +21 -21
- data/ext/libxml/ruby_xml_xpointer_context.h +1 -1
- data/ext/libxml/sax_parser_callbacks.inc +213 -213
- data/ext/libxml/version.h +9 -9
- data/lib/libxml.rb +24 -3
- data/mingw/libiconv-2.dll +0 -0
- data/mingw/libxml2-2.dll +0 -0
- data/mingw/libxml_ruby.so +0 -0
- data/mingw/mingw.rake +36 -0
- data/test/dtd-test.rb +24 -24
- data/test/etc_doc_to_s.rb +1 -3
- data/test/ets_copy_bug.rb +21 -21
- data/test/ets_copy_bug2.rb +32 -32
- data/test/ets_copy_bug3.rb +38 -0
- data/test/ets_doc_file.rb +1 -0
- data/test/{model/default_validation_bug.rb → gc.log} +0 -0
- data/test/merge_bug.rb +55 -55
- data/test/schema-test.rb +74 -74
- data/test/tc_well_formed.rb +11 -0
- data/test/tc_xml_document.rb +52 -52
- data/test/tc_xml_document_write.rb +24 -24
- data/test/tc_xml_document_write2.rb +54 -54
- data/test/tc_xml_document_write3.rb +96 -96
- data/test/tc_xml_html_parser.rb +63 -63
- data/test/tc_xml_node.rb +59 -59
- data/test/tc_xml_node2.rb +25 -25
- data/test/tc_xml_node3.rb +27 -27
- data/test/tc_xml_node4.rb +86 -86
- data/test/tc_xml_node5.rb +52 -52
- data/test/tc_xml_node6.rb +27 -27
- data/test/tc_xml_node7.rb +35 -35
- data/test/tc_xml_node8.rb +32 -32
- data/test/tc_xml_node9.rb +32 -32
- data/test/tc_xml_node_set.rb +24 -24
- data/test/tc_xml_node_set2.rb +37 -37
- data/test/tc_xml_node_xlink.rb +28 -28
- data/test/tc_xml_parser.rb +190 -178
- data/test/tc_xml_parser2.rb +16 -17
- data/test/tc_xml_parser3.rb +23 -23
- data/test/tc_xml_parser4.rb +33 -33
- data/test/tc_xml_parser5.rb +27 -27
- data/test/tc_xml_parser6.rb +23 -23
- data/test/tc_xml_parser7.rb +28 -28
- data/test/tc_xml_parser8.rb +32 -32
- data/test/tc_xml_parser9.rb +11 -0
- data/test/tc_xml_parser_context.rb +88 -88
- data/test/tc_xml_reader.rb +112 -109
- data/test/tc_xml_sax_parser.rb +104 -94
- data/test/tc_xml_sax_parser2.rb +51 -0
- data/test/tc_xml_xinclude.rb +30 -30
- data/test/tc_xml_xpath.rb +38 -38
- data/test/tc_xml_xpath2.rb +14 -0
- data/test/tc_xml_xpointer.rb +78 -78
- data/vc/libxml.sln +20 -0
- data/vc/libxml.vcproj +389 -0
- data/work/Rakefile +247 -0
- data/work/task/make +26 -0
- data/work/task/memory +37 -0
- data/work/task/rdoc +39 -0
- data/work/task/setup +1616 -0
- data/work/task/test +29 -0
- data/work/test/ets_runner.rb +33 -0
- data/work/test/libxml_test.rb +3 -0
- data/work/test/runner.rb +0 -0
- data/work/test/runner_ets.rb +33 -0
- data/work/vc/debug/libxml.exp +0 -0
- data/work/vc/debug/libxml.ilk +0 -0
- data/work/vc/debug/libxml.lib +0 -0
- data/work/vc/debug/libxml.pdb +0 -0
- data/work/vc/debug/libxml.so +0 -0
- metadata +158 -189
- data/MANIFEST +0 -138
- data/NOTES +0 -9
- data/Rakefile +0 -38
- data/TODO +0 -75
- data/VERSION +0 -1
- data/log/Changelog-0.txt +0 -426
- data/log/Changelog.txt +0 -435
- data/meta/project.yaml +0 -27
- data/meta/unixname +0 -1
- data/setup.rb +0 -1472
- data/site/css/normal.css +0 -182
- data/site/img/raze-tiny.png +0 -0
- data/site/img/red-cube.jpg +0 -0
- data/site/img/xml-ruby.png +0 -0
- data/site/index.xml +0 -43
- data/site/install.xml +0 -77
- data/site/layout.rhtml +0 -38
- data/site/layout.xsl +0 -67
- data/site/license.xml +0 -32
- data/site/log/changelog.xml +0 -1324
- data/site/log/changelog.xsl +0 -42
- data/test/model/merge_bug_data.xml +0 -58
- data/test/model/rubynet.xml +0 -78
- data/test/model/rubynet_project +0 -13
- data/test/model/saxtest.xml +0 -5
- data/test/model/simple.xml +0 -7
- data/test/model/xinclude.xml +0 -5
|
@@ -1,98 +1,93 @@
|
|
|
1
|
-
/* Please see the LICENSE file for copyright and distribution information */
|
|
2
|
-
|
|
3
|
-
#ifndef __RUBY_LIBXML_H__
|
|
4
|
-
#define __RUBY_LIBXML_H__
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
#
|
|
10
|
-
#
|
|
11
|
-
#
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
#include
|
|
18
|
-
|
|
19
|
-
#include <
|
|
20
|
-
#include <
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
#
|
|
24
|
-
#
|
|
25
|
-
#
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
#
|
|
29
|
-
#
|
|
30
|
-
#
|
|
31
|
-
#
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
#
|
|
35
|
-
#
|
|
36
|
-
#
|
|
37
|
-
|
|
38
|
-
#
|
|
39
|
-
#
|
|
40
|
-
#
|
|
41
|
-
#
|
|
42
|
-
|
|
43
|
-
#
|
|
44
|
-
#
|
|
45
|
-
#
|
|
46
|
-
#
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
#include "
|
|
71
|
-
#include "
|
|
72
|
-
#include "
|
|
73
|
-
#include "
|
|
74
|
-
#include "
|
|
75
|
-
#include "
|
|
76
|
-
#include "
|
|
77
|
-
#include "
|
|
78
|
-
#include "
|
|
79
|
-
#include "
|
|
80
|
-
#include "
|
|
81
|
-
#include "
|
|
82
|
-
#include "
|
|
83
|
-
#include "
|
|
84
|
-
#include "
|
|
85
|
-
#include "
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
void ruby_init_parser(void);
|
|
96
|
-
void ruby_xml_parser_free(ruby_xml_parser *rxp);
|
|
97
|
-
|
|
98
|
-
#endif
|
|
1
|
+
/* Please see the LICENSE file for copyright and distribution information */
|
|
2
|
+
|
|
3
|
+
#ifndef __RUBY_LIBXML_H__
|
|
4
|
+
#define __RUBY_LIBXML_H__
|
|
5
|
+
|
|
6
|
+
#include "version.h"
|
|
7
|
+
|
|
8
|
+
#include <ruby.h>
|
|
9
|
+
#include <rubyio.h>
|
|
10
|
+
#include <util.h>
|
|
11
|
+
#include <libxml/parser.h>
|
|
12
|
+
#include <libxml/parserInternals.h>
|
|
13
|
+
#include <libxml/debugXML.h>
|
|
14
|
+
#include <libxml/xmlversion.h>
|
|
15
|
+
#include <libxml/xmlmemory.h>
|
|
16
|
+
#include <libxml/xpath.h>
|
|
17
|
+
#include <libxml/valid.h>
|
|
18
|
+
#include <libxml/catalog.h>
|
|
19
|
+
#include <libxml/HTMLparser.h>
|
|
20
|
+
#include <libxml/xmlreader.h>
|
|
21
|
+
|
|
22
|
+
// Maybe not yet defined in ruby
|
|
23
|
+
#ifndef RSTRING_LEN
|
|
24
|
+
#define RSTRING_LEN(x) RSTRING(x)->len
|
|
25
|
+
#endif
|
|
26
|
+
|
|
27
|
+
// not in Ruby 1.9
|
|
28
|
+
#ifndef GetWriteFile
|
|
29
|
+
#define GetWriteFile(fp) rb_io_stdio_file(fp)
|
|
30
|
+
#define OpenFile rb_io_t
|
|
31
|
+
#endif
|
|
32
|
+
|
|
33
|
+
#ifdef LIBXML_DEBUG_ENABLED
|
|
34
|
+
#include <libxml/xpathInternals.h>
|
|
35
|
+
#endif
|
|
36
|
+
#ifdef LIBXML_XINCLUDE_ENABLED
|
|
37
|
+
#include <libxml/xinclude.h>
|
|
38
|
+
#endif
|
|
39
|
+
#ifdef LIBXML_XPTR_ENABLED
|
|
40
|
+
#include <libxml/xpointer.h>
|
|
41
|
+
#endif
|
|
42
|
+
|
|
43
|
+
#define RUBY_LIBXML_SRC_TYPE_NULL 0
|
|
44
|
+
#define RUBY_LIBXML_SRC_TYPE_FILE 1
|
|
45
|
+
#define RUBY_LIBXML_SRC_TYPE_STRING 2
|
|
46
|
+
#define RUBY_LIBXML_SRC_TYPE_IO 3
|
|
47
|
+
#define RUBY_LIBXML_SRC_TYPE_XPATH 4
|
|
48
|
+
|
|
49
|
+
typedef struct rx_file_data {
|
|
50
|
+
VALUE filename; /* Filename/path to self */
|
|
51
|
+
} rx_file_data;
|
|
52
|
+
|
|
53
|
+
typedef struct rx_io_data {
|
|
54
|
+
VALUE io;
|
|
55
|
+
} rx_io_data;
|
|
56
|
+
|
|
57
|
+
typedef struct rx_string_data {
|
|
58
|
+
VALUE str;
|
|
59
|
+
} rx_string_data;
|
|
60
|
+
|
|
61
|
+
typedef struct rx_xpath_data {
|
|
62
|
+
VALUE ctxt;
|
|
63
|
+
} rx_xpath_data;
|
|
64
|
+
|
|
65
|
+
#include "ruby_xml_state.h"
|
|
66
|
+
#include "ruby_xml_attr.h"
|
|
67
|
+
#include "ruby_xml_document.h"
|
|
68
|
+
#include "ruby_xml_node.h"
|
|
69
|
+
#include "ruby_xml_node_set.h"
|
|
70
|
+
#include "ruby_xml_ns.h"
|
|
71
|
+
#include "ruby_xml_parser.h"
|
|
72
|
+
#include "ruby_xml_parser_context.h"
|
|
73
|
+
#include "ruby_xml_sax_parser.h"
|
|
74
|
+
#include "ruby_xml_tree.h"
|
|
75
|
+
#include "ruby_xml_xinclude.h"
|
|
76
|
+
#include "ruby_xml_xpath.h"
|
|
77
|
+
#include "ruby_xml_xpath_context.h"
|
|
78
|
+
#include "ruby_xml_xpath_object.h"
|
|
79
|
+
#include "ruby_xml_xpointer.h"
|
|
80
|
+
#include "ruby_xml_xpointer_context.h"
|
|
81
|
+
#include "ruby_xml_input_cbg.h"
|
|
82
|
+
#include "ruby_xml_dtd.h"
|
|
83
|
+
#include "ruby_xml_schema.h"
|
|
84
|
+
#include "ruby_xml_html_parser.h"
|
|
85
|
+
#include "ruby_xml_reader.h"
|
|
86
|
+
|
|
87
|
+
extern VALUE mXML;
|
|
88
|
+
extern VALUE eXMLError;
|
|
89
|
+
|
|
90
|
+
void ruby_init_parser(void);
|
|
91
|
+
void ruby_xml_parser_free(ruby_xml_parser *rxp);
|
|
92
|
+
|
|
93
|
+
#endif
|