libxml-ruby 0.6.0 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +42 -0
- data/README +123 -117
- data/doc/classes/XML.html +226 -0
- data/doc/classes/XML/Attr.html +969 -0
- data/doc/classes/XML/Attributes.html +487 -0
- data/doc/classes/XML/Document.html +1423 -0
- data/doc/classes/XML/Dtd.html +159 -0
- data/doc/classes/XML/Error.html +111 -0
- data/doc/classes/XML/HTMLParser.html +330 -0
- data/doc/classes/XML/InputCallbacks.html +154 -0
- data/doc/classes/XML/NS.html +366 -0
- data/doc/classes/XML/Node.html +3292 -0
- data/doc/classes/XML/Node/FailedModify.html +111 -0
- data/doc/classes/XML/Node/Set.html +435 -0
- data/doc/classes/XML/Node/SetNamespace.html +111 -0
- data/doc/classes/XML/Node/UnknownType.html +111 -0
- data/doc/classes/XML/Parser.html +2178 -0
- data/doc/classes/XML/Parser/Context.html +1233 -0
- data/doc/classes/XML/Parser/ParseError.html +111 -0
- data/doc/classes/XML/Reader.html +2173 -0
- data/doc/classes/XML/SaxParser.html +396 -0
- data/doc/classes/XML/SiblingEnum.html +142 -0
- data/doc/classes/XML/State.html +118 -0
- data/doc/classes/XML/Tree.html +224 -0
- data/doc/classes/XML/XInclude.html +117 -0
- data/doc/classes/XML/XInclude/Error.html +111 -0
- data/doc/classes/XML/XMLParserOptions.html +198 -0
- data/doc/classes/XML/XPath.html +269 -0
- data/doc/classes/XML/XPath/Context.html +193 -0
- data/doc/classes/XML/XPath/InvalidPath.html +111 -0
- data/doc/classes/XML/XPath/Object.html +439 -0
- data/doc/classes/XML/XPointer.html +164 -0
- data/doc/classes/XML/XPointer/Context.html +117 -0
- data/doc/classes/XML/XPointer/Context/InvalidPath.html +111 -0
- data/doc/classes/XML/XPointer/InvalidExpression.html +111 -0
- data/doc/classes/singleton.html +114 -0
- data/doc/created.rid +1 -0
- data/doc/files/CHANGES.html +375 -0
- data/doc/files/LICENSE.html +133 -0
- data/doc/files/README.html +279 -0
- data/doc/files/VERSION.html +107 -0
- data/doc/files/ext/libxml/cbg_c.html +101 -0
- data/doc/files/ext/libxml/libxml_c.html +101 -0
- data/doc/files/ext/libxml/ruby_xml_attr_c.html +101 -0
- data/doc/files/ext/libxml/ruby_xml_attributes_c.html +101 -0
- data/doc/files/ext/libxml/ruby_xml_document_c.html +101 -0
- data/doc/files/ext/libxml/ruby_xml_dtd_c.html +101 -0
- data/doc/files/ext/libxml/ruby_xml_html_parser_c.html +101 -0
- data/doc/files/ext/libxml/ruby_xml_input_cbg_c.html +101 -0
- data/doc/files/ext/libxml/ruby_xml_node_c.html +101 -0
- data/doc/files/ext/libxml/ruby_xml_node_set_c.html +101 -0
- data/doc/files/ext/libxml/ruby_xml_ns_c.html +101 -0
- data/doc/files/ext/libxml/ruby_xml_parser_c.html +101 -0
- data/doc/files/ext/libxml/ruby_xml_parser_context_c.html +101 -0
- data/doc/files/ext/libxml/ruby_xml_reader_c.html +101 -0
- data/doc/files/ext/libxml/ruby_xml_sax_parser_c.html +101 -0
- data/doc/files/ext/libxml/ruby_xml_schema_c.html +101 -0
- data/doc/files/ext/libxml/ruby_xml_state_c.html +101 -0
- data/doc/files/ext/libxml/ruby_xml_tree_c.html +101 -0
- data/doc/files/ext/libxml/ruby_xml_xinclude_c.html +101 -0
- data/doc/files/ext/libxml/ruby_xml_xpath_c.html +101 -0
- data/doc/files/ext/libxml/ruby_xml_xpath_context_c.html +101 -0
- data/doc/files/ext/libxml/ruby_xml_xpath_object_c.html +101 -0
- data/doc/files/ext/libxml/ruby_xml_xpointer_c.html +101 -0
- data/doc/files/ext/libxml/ruby_xml_xpointer_context_c.html +101 -0
- data/doc/files/lib/libxml_rb.html +115 -0
- data/doc/files/lib/xml/libxml_rb.html +114 -0
- data/doc/fr_class_index.html +60 -0
- data/doc/fr_file_index.html +56 -0
- data/doc/fr_method_index.html +373 -0
- data/doc/index.html +24 -0
- data/doc/rdoc-style.css +208 -0
- data/ext/libxml/cbg.c +76 -76
- data/ext/libxml/extconf.rb +308 -308
- data/ext/libxml/libxml.c +58 -62
- data/ext/libxml/ruby_libxml.h +1 -0
- data/ext/libxml/ruby_xml_attr.c +201 -113
- data/ext/libxml/ruby_xml_attr.h +6 -9
- data/ext/libxml/ruby_xml_attributes.c +268 -0
- data/ext/libxml/ruby_xml_attributes.h +17 -0
- data/ext/libxml/ruby_xml_document.c +80 -66
- data/ext/libxml/ruby_xml_dtd.c +2 -2
- data/ext/libxml/ruby_xml_dtd.h +17 -17
- data/ext/libxml/ruby_xml_html_parser.c +18 -19
- data/ext/libxml/ruby_xml_html_parser.h +29 -29
- data/ext/libxml/ruby_xml_input_cbg.c +6 -0
- data/ext/libxml/ruby_xml_input_cbg.h +20 -20
- data/ext/libxml/ruby_xml_node.c +438 -536
- data/ext/libxml/ruby_xml_node.h +17 -27
- data/ext/libxml/ruby_xml_node_set.c +10 -9
- data/ext/libxml/ruby_xml_node_set.h +20 -20
- data/ext/libxml/ruby_xml_ns.c +60 -69
- data/ext/libxml/ruby_xml_ns.h +12 -21
- data/ext/libxml/ruby_xml_parser.c +54 -53
- data/ext/libxml/ruby_xml_parser.h +31 -31
- data/ext/libxml/ruby_xml_parser_context.c +37 -91
- data/ext/libxml/ruby_xml_parser_context.h +20 -22
- data/ext/libxml/ruby_xml_reader.h +14 -14
- data/ext/libxml/ruby_xml_sax_parser.c +55 -55
- data/ext/libxml/ruby_xml_sax_parser.h +56 -56
- data/ext/libxml/ruby_xml_schema.c +44 -51
- data/ext/libxml/ruby_xml_schema.h +16 -16
- data/ext/libxml/ruby_xml_state.c +35 -96
- data/ext/libxml/ruby_xml_state.h +2 -3
- data/ext/libxml/ruby_xml_tree.h +12 -12
- data/ext/libxml/ruby_xml_xinclude.h +13 -13
- data/ext/libxml/ruby_xml_xpath.c +57 -18
- data/ext/libxml/ruby_xml_xpath.h +23 -23
- data/ext/libxml/ruby_xml_xpath_context.c +11 -7
- data/ext/libxml/ruby_xml_xpath_context.h +20 -20
- data/ext/libxml/ruby_xml_xpath_object.c +9 -16
- data/ext/libxml/ruby_xml_xpath_object.h +4 -10
- data/ext/libxml/ruby_xml_xpointer.c +11 -11
- data/ext/libxml/ruby_xml_xpointer.h +27 -27
- data/ext/libxml/ruby_xml_xpointer_context.h +18 -18
- data/ext/libxml/version.h +2 -2
- data/lib/libxml.rb +134 -125
- data/mingw/libiconv-2.dll +0 -0
- data/mingw/libxml2-2.dll +0 -0
- data/mingw/libxml_ruby.so +0 -0
- data/test/ets_copy_bug.rb +1 -1
- data/test/ets_copy_bug2.rb +16 -27
- data/test/ets_doc_to_s.rb +1 -1
- data/test/ets_gpx.rb +1 -1
- data/test/ets_node_gc.rb +1 -1
- data/test/ets_tsr.rb +1 -1
- data/test/tc_well_formed.rb +1 -1
- data/test/tc_xml_attributes.rb +106 -0
- data/test/tc_xml_document.rb +10 -10
- data/test/tc_xml_document_write3.rb +1 -1
- data/test/tc_xml_dtd.rb +49 -0
- data/test/tc_xml_html_parser.rb +3 -3
- data/test/tc_xml_node.rb +69 -33
- data/test/tc_xml_node_attr.rb +170 -0
- data/test/{tc_xml_node8.rb → tc_xml_node_cdata.rb} +2 -2
- data/test/{tc_xml_node9.rb → tc_xml_node_comment.rb} +3 -3
- data/test/tc_xml_node_edit.rb +91 -0
- data/test/tc_xml_parser.rb +97 -50
- data/test/tc_xml_parser_context.rb +61 -23
- data/test/tc_xml_schema.rb +39 -0
- data/test/tc_xml_xinclude.rb +5 -6
- data/test/tc_xml_xpath.rb +51 -27
- data/test/test_suite.rb +27 -0
- data/vc/{libxml.sln → libxml_ruby.sln} +5 -5
- data/vc/{libxml.vcproj → libxml_ruby.vcproj} +9 -1
- metadata +106 -54
- data/mingw/mingw.rake +0 -36
- data/test/dtd-test.rb +0 -24
- data/test/merge_bug.rb +0 -55
- data/test/schema-test.rb +0 -74
- data/test/tc_xml_node2.rb +0 -25
- data/test/tc_xml_node3.rb +0 -27
- data/test/tc_xml_node4.rb +0 -86
- data/test/tc_xml_node5.rb +0 -52
- data/test/tc_xml_node6.rb +0 -27
- data/test/tc_xml_node7.rb +0 -35
- data/test/tc_xml_parser2.rb +0 -16
- data/test/tc_xml_parser3.rb +0 -23
- data/test/tc_xml_parser4.rb +0 -33
- data/test/tc_xml_parser5.rb +0 -27
- data/test/tc_xml_parser6.rb +0 -23
- data/test/tc_xml_parser7.rb +0 -28
- data/test/tc_xml_parser8.rb +0 -32
- data/test/tc_xml_parser9.rb +0 -11
- data/test/tc_xml_xpath2.rb +0 -14
- 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
@@ -0,0 +1,114 @@
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
+
<!DOCTYPE html
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
+
|
6
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
7
|
+
<head>
|
8
|
+
<title>Class: singleton</title>
|
9
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
|
+
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
|
+
<link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
|
12
|
+
<script type="text/javascript">
|
13
|
+
// <![CDATA[
|
14
|
+
|
15
|
+
function popupCode( url ) {
|
16
|
+
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
17
|
+
}
|
18
|
+
|
19
|
+
function toggleCode( id ) {
|
20
|
+
if ( document.getElementById )
|
21
|
+
elem = document.getElementById( id );
|
22
|
+
else if ( document.all )
|
23
|
+
elem = eval( "document.all." + id );
|
24
|
+
else
|
25
|
+
return false;
|
26
|
+
|
27
|
+
elemStyle = elem.style;
|
28
|
+
|
29
|
+
if ( elemStyle.display != "block" ) {
|
30
|
+
elemStyle.display = "block"
|
31
|
+
} else {
|
32
|
+
elemStyle.display = "none"
|
33
|
+
}
|
34
|
+
|
35
|
+
return true;
|
36
|
+
}
|
37
|
+
|
38
|
+
// Make codeblocks hidden by default
|
39
|
+
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
40
|
+
|
41
|
+
// ]]>
|
42
|
+
</script>
|
43
|
+
|
44
|
+
</head>
|
45
|
+
<body>
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
<div id="classHeader">
|
50
|
+
<table class="header-table">
|
51
|
+
<tr class="top-aligned-row">
|
52
|
+
<td><strong>Class</strong></td>
|
53
|
+
<td class="class-name-in-header">singleton</td>
|
54
|
+
</tr>
|
55
|
+
<tr class="top-aligned-row">
|
56
|
+
<td><strong>In:</strong></td>
|
57
|
+
<td>
|
58
|
+
</td>
|
59
|
+
</tr>
|
60
|
+
|
61
|
+
</table>
|
62
|
+
</div>
|
63
|
+
<!-- banner header -->
|
64
|
+
|
65
|
+
<div id="bodyContent">
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
<div id="contextContent">
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
</div>
|
74
|
+
|
75
|
+
|
76
|
+
</div>
|
77
|
+
|
78
|
+
|
79
|
+
<!-- if includes -->
|
80
|
+
|
81
|
+
<div id="section">
|
82
|
+
|
83
|
+
|
84
|
+
|
85
|
+
<div id="aliases-list">
|
86
|
+
<h3 class="section-bar">External Aliases</h3>
|
87
|
+
|
88
|
+
<div class="name-list">
|
89
|
+
<table summary="aliases">
|
90
|
+
<tr class="top-aligned-row context-row">
|
91
|
+
<td class="context-item-name">new</td>
|
92
|
+
<td>-></td>
|
93
|
+
<td class="context-item-value">new_element</td>
|
94
|
+
</tr>
|
95
|
+
</table>
|
96
|
+
</div>
|
97
|
+
</div>
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
<!-- if method_list -->
|
104
|
+
|
105
|
+
|
106
|
+
</div>
|
107
|
+
|
108
|
+
|
109
|
+
<div id="validator-badges">
|
110
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
111
|
+
</div>
|
112
|
+
|
113
|
+
</body>
|
114
|
+
</html>
|
data/doc/created.rid
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
Wed Jul 09 14:26:12 Mountain Daylight Time 2008
|
@@ -0,0 +1,375 @@
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
+
<!DOCTYPE html
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
+
|
6
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
7
|
+
<head>
|
8
|
+
<title>File: CHANGES</title>
|
9
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
|
+
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
|
+
<link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
|
12
|
+
<script type="text/javascript">
|
13
|
+
// <![CDATA[
|
14
|
+
|
15
|
+
function popupCode( url ) {
|
16
|
+
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
17
|
+
}
|
18
|
+
|
19
|
+
function toggleCode( id ) {
|
20
|
+
if ( document.getElementById )
|
21
|
+
elem = document.getElementById( id );
|
22
|
+
else if ( document.all )
|
23
|
+
elem = eval( "document.all." + id );
|
24
|
+
else
|
25
|
+
return false;
|
26
|
+
|
27
|
+
elemStyle = elem.style;
|
28
|
+
|
29
|
+
if ( elemStyle.display != "block" ) {
|
30
|
+
elemStyle.display = "block"
|
31
|
+
} else {
|
32
|
+
elemStyle.display = "none"
|
33
|
+
}
|
34
|
+
|
35
|
+
return true;
|
36
|
+
}
|
37
|
+
|
38
|
+
// Make codeblocks hidden by default
|
39
|
+
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
40
|
+
|
41
|
+
// ]]>
|
42
|
+
</script>
|
43
|
+
|
44
|
+
</head>
|
45
|
+
<body>
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
<div id="fileHeader">
|
50
|
+
<h1>CHANGES</h1>
|
51
|
+
<table class="header-table">
|
52
|
+
<tr class="top-aligned-row">
|
53
|
+
<td><strong>Path:</strong></td>
|
54
|
+
<td>CHANGES
|
55
|
+
</td>
|
56
|
+
</tr>
|
57
|
+
<tr class="top-aligned-row">
|
58
|
+
<td><strong>Last Update:</strong></td>
|
59
|
+
<td>Wed Jul 09 14:09:25 Mountain Daylight Time 2008</td>
|
60
|
+
</tr>
|
61
|
+
</table>
|
62
|
+
</div>
|
63
|
+
<!-- banner header -->
|
64
|
+
|
65
|
+
<div id="bodyContent">
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
<div id="contextContent">
|
70
|
+
|
71
|
+
<div id="description">
|
72
|
+
<p>
|
73
|
+
(See log/ChangeLog for more detailed changes derived directly from source
|
74
|
+
control.)
|
75
|
+
</p>
|
76
|
+
<h2>0.7.0 / 2008-07-09 Charlie Savage</h2>
|
77
|
+
<ul>
|
78
|
+
<li>Added new attributes class to provide a more natural way of working with
|
79
|
+
attributes
|
80
|
+
|
81
|
+
</li>
|
82
|
+
<li>Fixed <a href="../classes/XML/Attr.html">XML::Attr</a> to better support
|
83
|
+
namespaces
|
84
|
+
|
85
|
+
</li>
|
86
|
+
<li>Added documentation on how to use namespaces with XPath
|
87
|
+
|
88
|
+
</li>
|
89
|
+
<li>Removed allocation of extraneous structures used to wrap nodes, namespaces
|
90
|
+
and attributes
|
91
|
+
|
92
|
+
</li>
|
93
|
+
<li>Cleaned up tests and added new test suite
|
94
|
+
|
95
|
+
</li>
|
96
|
+
<li>Updated rdocs
|
97
|
+
|
98
|
+
</li>
|
99
|
+
<li>Cleaned out most of the bug list
|
100
|
+
|
101
|
+
</li>
|
102
|
+
</ul>
|
103
|
+
<h2>0.6.0 / 2008-07-01 Charlie Savage</h2>
|
104
|
+
<ul>
|
105
|
+
<li>Fixed memory allocation errors in Windows. On Windows, it is essential that
|
106
|
+
the same library that allocates memory must free it. Thus ALLOC calls must
|
107
|
+
be matched to ruby_xfree calls, which they were not. In addition, in one
|
108
|
+
case Ruby was allocating memory to be freed by libxml. On Windows,
|
109
|
+
that’s a segmentation fault. On Linux it might fly, but still seems
|
110
|
+
like a bad idea.
|
111
|
+
|
112
|
+
</li>
|
113
|
+
<li>Fixed segmentation fault in xml reader expand (same xml tree freed twice)
|
114
|
+
|
115
|
+
</li>
|
116
|
+
<li>Applied a number of patches from Tom Bagby, including fixes for xpath
|
117
|
+
segmentation faults and fixes for various memory leaks
|
118
|
+
|
119
|
+
</li>
|
120
|
+
<li>Cleaned up a number of compiler warnings
|
121
|
+
|
122
|
+
</li>
|
123
|
+
<li>Renamed libxml_so.so to libxml_ruby.so (same for xslt). That wasn’t
|
124
|
+
actually my original intention, but um, it kind of sort of happened. It
|
125
|
+
should not be noticeable from an end-user perspective.
|
126
|
+
|
127
|
+
</li>
|
128
|
+
<li>Added rake files for building with MingW
|
129
|
+
|
130
|
+
</li>
|
131
|
+
<li>Added rake files for packing gems. Note that I did this outside the
|
132
|
+
existing rake tasks because I didn’t see how they were actually
|
133
|
+
building the gems.
|
134
|
+
|
135
|
+
</li>
|
136
|
+
<li>Cleaned up the tests and added a few more based on bug reports from the
|
137
|
+
Tracker and mailing list.
|
138
|
+
|
139
|
+
</li>
|
140
|
+
<li>Cleaned out the patch queue and went through about 1/2 the bug list
|
141
|
+
|
142
|
+
</li>
|
143
|
+
</ul>
|
144
|
+
<h3>2007-11-16 "Dan Janowski" <danj at 3skel.com></h3>
|
145
|
+
<ul>
|
146
|
+
<li>Merged Dan’s MEM2 branch to trunk.
|
147
|
+
|
148
|
+
</li>
|
149
|
+
</ul>
|
150
|
+
<h2>0.5.3 /</h2>
|
151
|
+
<h3>2007-11-16 "Dan Janowski" <danj at 3skel.com></h3>
|
152
|
+
<ul>
|
153
|
+
<li>Merged Dan’s MEM2 branch to trunk.
|
154
|
+
|
155
|
+
</li>
|
156
|
+
</ul>
|
157
|
+
<h2>0.5.2 / 2007-10-10</h2>
|
158
|
+
<h3>2007-10-10 "Dan Janowski" <danj at 3skel.com></h3>
|
159
|
+
<ul>
|
160
|
+
<li>(Dan, fill in the major points of the changes you made up to here -thanks)
|
161
|
+
|
162
|
+
</li>
|
163
|
+
</ul>
|
164
|
+
<h3>2007-01-14 "Laurent Sansonetti" <lrz at chopine.be></h3>
|
165
|
+
<ul>
|
166
|
+
<li>Added some preliminary RDoc comments for <a
|
167
|
+
href="../classes/XML/Reader.html">XML::Reader</a>.
|
168
|
+
|
169
|
+
</li>
|
170
|
+
</ul>
|
171
|
+
<h3>2006-12-05 "Laurent Sansonetti" <lrz at chopine.be></h3>
|
172
|
+
<ul>
|
173
|
+
<li>Added <a href="../classes/XML/Reader.html">XML::Reader</a>, a set of
|
174
|
+
bindings to the xmlTextReader API.
|
175
|
+
|
176
|
+
</li>
|
177
|
+
</ul>
|
178
|
+
<h2>0.3.8.4 / 2006-12-02</h2>
|
179
|
+
<h3>2006-04-15 "Ross Bamform" <rosco at roscopeco.co.uk></h3>
|
180
|
+
<ul>
|
181
|
+
<li>Implemented SAX parser callback handling.
|
182
|
+
|
183
|
+
</li>
|
184
|
+
</ul>
|
185
|
+
<h3>2006-04-12 "Ross Bamford" <rosco at roscopeco.co.uk></h3>
|
186
|
+
<ul>
|
187
|
+
<li>Integrated and tested community patches.
|
188
|
+
|
189
|
+
</li>
|
190
|
+
<li>Defined <a href="../classes/XML/Node.html">XML::Node</a> (hash) equality in
|
191
|
+
terms of <a href="../classes/XML.html">XML</a> representation.
|
192
|
+
|
193
|
+
</li>
|
194
|
+
</ul>
|
195
|
+
<h3>2006-04-12 "Tim Yamin" <plasmaroo at gentoo.org></h3>
|
196
|
+
<ul>
|
197
|
+
<li>Fixed <a href="../classes/XML/Node.html#M000117">XML::Node#content</a>
|
198
|
+
inoperable bug (plasmaroo) [patch]
|
199
|
+
|
200
|
+
</li>
|
201
|
+
<li>Fixed memory leak in same
|
202
|
+
|
203
|
+
</li>
|
204
|
+
</ul>
|
205
|
+
<h3>2006-04-12 "Mark Van Holstyn" <mvette13 at gmail.com></h3>
|
206
|
+
<ul>
|
207
|
+
<li>Added <a
|
208
|
+
href="../classes/XML/Node/Set.html#M000189">XML::Node::Set#first</a>
|
209
|
+
(mvette13) [patch]
|
210
|
+
|
211
|
+
</li>
|
212
|
+
<li>Added XML::Node::Set#empty?
|
213
|
+
|
214
|
+
</li>
|
215
|
+
<li>Fixed <a
|
216
|
+
href="../classes/XML/Node/Set.html#M000192">XML::Node::Set#to_a</a>
|
217
|
+
|
218
|
+
</li>
|
219
|
+
<li>Added <a href="../classes/XML/Node.html#M000134">XML::Node#find_first</a>
|
220
|
+
|
221
|
+
</li>
|
222
|
+
<li>Added XML::Node#remove!
|
223
|
+
|
224
|
+
</li>
|
225
|
+
</ul>
|
226
|
+
<h3>2006-03-27 "Ross Bamford" <rosco at roscopeco.co.uk></h3>
|
227
|
+
<ul>
|
228
|
+
<li>Integrated contributed <a
|
229
|
+
href="../classes/XML/Parser.html#M000052">XML::Parser.register_error_handler</a>
|
230
|
+
patch (rosco)
|
231
|
+
|
232
|
+
</li>
|
233
|
+
</ul>
|
234
|
+
<h3>2006-02-27 "Ross Bamford" <rosco at roscopeco.co.uk></h3>
|
235
|
+
<ul>
|
236
|
+
<li>Fixed all multiple symbol definitions for -fno-common.
|
237
|
+
|
238
|
+
</li>
|
239
|
+
<li>Removed OSX -fno-common workaround.
|
240
|
+
|
241
|
+
</li>
|
242
|
+
</ul>
|
243
|
+
<h2>0.3.6 / 2006-02-23</h2>
|
244
|
+
<h3>2006-02-21 "Ross Bamford" <rosco at roscopeco.co.uk></h3>
|
245
|
+
<ul>
|
246
|
+
<li>Patched extconf.rb with OSX -fno-common workaround
|
247
|
+
|
248
|
+
</li>
|
249
|
+
<li>Added gem and packaging support to Rakefile
|
250
|
+
|
251
|
+
</li>
|
252
|
+
<li>Moved version update to Rakefile
|
253
|
+
|
254
|
+
</li>
|
255
|
+
<li>Removed legacy project utility scripts
|
256
|
+
|
257
|
+
</li>
|
258
|
+
</ul>
|
259
|
+
<h3>2005-02-19 "Ross Bamford" <rosco at roscopeco.co.uk></h3>
|
260
|
+
<ul>
|
261
|
+
<li>Fixed doublefree bug in ruby_xml_attr.
|
262
|
+
|
263
|
+
</li>
|
264
|
+
<li>Fixed small leak in parser
|
265
|
+
|
266
|
+
</li>
|
267
|
+
</ul>
|
268
|
+
<h3>2005-12-18 "Ross Bamford" <rosco at roscopeco.co.uk></h3>
|
269
|
+
<ul>
|
270
|
+
<li>Updated for GCC 4.0 (community patches)
|
271
|
+
|
272
|
+
</li>
|
273
|
+
<li>Fixed default validation bug
|
274
|
+
|
275
|
+
</li>
|
276
|
+
<li>Refactored project, removed outdated files, cleaned up tests.
|
277
|
+
|
278
|
+
</li>
|
279
|
+
<li>Added RDoc documentation across .c files.
|
280
|
+
|
281
|
+
</li>
|
282
|
+
<li>Fixed up a few strings.
|
283
|
+
|
284
|
+
</li>
|
285
|
+
</ul>
|
286
|
+
<h3>2004-04-04 "Mangler Jurgen" <et@wkv.at></h3>
|
287
|
+
<ul>
|
288
|
+
<li>ruby_xml_node.cz: fixed ruby_xml_node_property_set. The ill-behaviour was,
|
289
|
+
that there was added a second attribute of the same name, when you were
|
290
|
+
setting the value of an already existing attribute.
|
291
|
+
|
292
|
+
</li>
|
293
|
+
</ul>
|
294
|
+
<h3>2004-03-17 "Lukas Svoboda" <luks@fi.muni.cz></h3>
|
295
|
+
<ul>
|
296
|
+
<li>ruby_xml_node.c: ruby_xml_node_to_s now returns <a
|
297
|
+
href="../classes/XML.html">XML</a> subtree dump.
|
298
|
+
|
299
|
+
</li>
|
300
|
+
</ul>
|
301
|
+
<h3>2004-02-27 "Martin Povolny" <martin@solnet.cz></h3>
|
302
|
+
<ul>
|
303
|
+
<li>ruby_xml_node.c: added <a
|
304
|
+
href="../classes/XML/Node.html#M000110">XML::Node.copy</a>, this makes
|
305
|
+
possible building of xml documents from nodes taken from other xml
|
306
|
+
documents without making ruby SIGSEGV (see tests/copy_bug.rb).
|
307
|
+
|
308
|
+
</li>
|
309
|
+
</ul>
|
310
|
+
<h3>2004-02-26 "Martin Povolny" <martin@solnet.cz></h3>
|
311
|
+
<ul>
|
312
|
+
<li>ruby_xml_dtd.c, ruby_xml_dtd.h, ruby_xml_schema.c, ruby_xml_schema.h: more
|
313
|
+
work on validation, now you can actually validate document using dtd or xml
|
314
|
+
schema, also solved warning and error propagation (see
|
315
|
+
tests/{dtd|schema}-test.rb).
|
316
|
+
|
317
|
+
</li>
|
318
|
+
</ul>
|
319
|
+
<h3>2003-12-30 "Martin Povolny" <martin@solnet.cz></h3>
|
320
|
+
<ul>
|
321
|
+
<li>ruby_xml_dtd.c, ruby_xml_dtd.h, ruby_xml_schema.c, ruby_xml_schema.h:
|
322
|
+
prelimitary support for dtd and schema validation
|
323
|
+
|
324
|
+
</li>
|
325
|
+
</ul>
|
326
|
+
<h3>2003-09-15 "Martin Povolny" <martin@solnet.cz></h3>
|
327
|
+
<ul>
|
328
|
+
<li>ruby_xml_input_cbg.c, libxml.c: added class InputCallbacks to make possible
|
329
|
+
registering custom input callbacks handlers (xmlRegisterInputCallbacks)
|
330
|
+
written in ruby
|
331
|
+
|
332
|
+
</li>
|
333
|
+
</ul>
|
334
|
+
<h3>2003-08-01 "Martin Povolny" <martin@solnet.cz></h3>
|
335
|
+
<ul>
|
336
|
+
<li>ruby_xml_document.c: corrected argument handling in ruby_xml_document_find
|
337
|
+
|
338
|
+
</li>
|
339
|
+
<li>ruby_xml_node.c: corrected argument handling in ruby_xml_node_find
|
340
|
+
|
341
|
+
</li>
|
342
|
+
</ul>
|
343
|
+
|
344
|
+
</div>
|
345
|
+
|
346
|
+
|
347
|
+
</div>
|
348
|
+
|
349
|
+
|
350
|
+
</div>
|
351
|
+
|
352
|
+
|
353
|
+
<!-- if includes -->
|
354
|
+
|
355
|
+
<div id="section">
|
356
|
+
|
357
|
+
|
358
|
+
|
359
|
+
|
360
|
+
|
361
|
+
|
362
|
+
|
363
|
+
|
364
|
+
<!-- if method_list -->
|
365
|
+
|
366
|
+
|
367
|
+
</div>
|
368
|
+
|
369
|
+
|
370
|
+
<div id="validator-badges">
|
371
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
372
|
+
</div>
|
373
|
+
|
374
|
+
</body>
|
375
|
+
</html>
|