libxml-ruby 0.9.3 → 0.9.4
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +9 -0
- data/README +61 -128
- data/doc/css/normal.css +182 -0
- data/doc/img/raze-tiny.png +0 -0
- data/doc/img/red-cube.jpg +0 -0
- data/doc/img/xml-ruby.png +0 -0
- data/doc/index.xml +43 -0
- data/doc/install.xml +77 -0
- data/doc/layout.rhtml +38 -0
- data/doc/layout.xsl +67 -0
- data/doc/license.xml +32 -0
- data/doc/log/changelog.xml +1324 -0
- data/doc/log/changelog.xsl +42 -0
- data/ext/libxml/ruby_xml_document.c +1084 -1057
- data/ext/libxml/ruby_xml_html_parser.c +37 -40
- data/ext/libxml/ruby_xml_input.c +17 -40
- data/ext/libxml/ruby_xml_input.h +2 -2
- data/ext/libxml/ruby_xml_parser.c +151 -151
- data/ext/libxml/ruby_xml_reader.c +910 -893
- data/ext/libxml/ruby_xml_sax_parser.c +174 -174
- data/ext/libxml/ruby_xml_sax_parser.h +12 -12
- data/ext/libxml/ruby_xml_xpointer.h +13 -25
- data/ext/libxml/version.h +2 -2
- data/ext/vc/libxml_ruby.vcproj +1 -1
- data/test/model/ruby-lang.html +238 -0
- data/test/tc_html_parser.rb +2 -12
- data/test/tc_reader.rb +87 -87
- metadata +17 -3
- data/test/test.rb +0 -8
data/doc/install.xml
ADDED
@@ -0,0 +1,77 @@
|
|
1
|
+
<?xml version="1.0" encoding="ISO-8859-1" ?>
|
2
|
+
<?xml-stylesheet href="layout.xsl" type="text/xsl" ?>
|
3
|
+
|
4
|
+
<content>
|
5
|
+
|
6
|
+
<h2> Installation </h2>
|
7
|
+
|
8
|
+
<p>Libxml-Ruby supports installation via both the standard Ruby extconf install and
|
9
|
+
"Rubygems":http://rubygems.rubyforge.org/ . In either case the requirements are
|
10
|
+
the same - only the installation process differs.</p>
|
11
|
+
|
12
|
+
<h3> Prerequisites </h3>
|
13
|
+
|
14
|
+
<p>libxml requires a few other libraries to be installed in order to build and
|
15
|
+
function properly.</p>
|
16
|
+
|
17
|
+
<pre>
|
18
|
+
* libm (math routines: very standard)
|
19
|
+
* libz (zlib)
|
20
|
+
* libiconv
|
21
|
+
* libxml2
|
22
|
+
</pre>
|
23
|
+
|
24
|
+
<p>We recommend GCC 4 be used for the build.</p>
|
25
|
+
|
26
|
+
<h3> Installing with gems </h3>
|
27
|
+
|
28
|
+
<p>Installation via Gems is very simple - just issue the appropriate command,
|
29
|
+
e.g:</p>
|
30
|
+
|
31
|
+
<pre>
|
32
|
+
gem install -r libxml-ruby
|
33
|
+
</pre>
|
34
|
+
|
35
|
+
<p>Note that depending on your setup you may need to run this as root:</p>
|
36
|
+
|
37
|
+
<pre>
|
38
|
+
su -c 'gem install -r libxml-ruby'
|
39
|
+
</pre>
|
40
|
+
|
41
|
+
<p>During installation Gems should build and install the extension to the correct
|
42
|
+
location. If there are errors at this stage, Gem will report them and offer you
|
43
|
+
the option to delete the extension.</p>
|
44
|
+
|
45
|
+
<h3> Installing from the tarball </h3>
|
46
|
+
|
47
|
+
<p>Installation from the source tarball is only slightly more complex. Untar the
|
48
|
+
archive somewhere appropriate, and change to the new directory this creates.
|
49
|
+
If your environment requires no special configuration, you can simply type:</p>
|
50
|
+
|
51
|
+
<pre>
|
52
|
+
$ rake install
|
53
|
+
</pre>
|
54
|
+
|
55
|
+
<p>to build, test, and install the extension.</p>
|
56
|
+
|
57
|
+
<p>If you do need to pass options to extconf (to support a non-standard libxml2
|
58
|
+
install location, for example) you will need to use make manually instead:</p>
|
59
|
+
|
60
|
+
<pre>
|
61
|
+
$ cd ext/xml
|
62
|
+
$ ruby extconf.rb [your-options]
|
63
|
+
$ make
|
64
|
+
$ [su -c ']make install[']
|
65
|
+
</pre>
|
66
|
+
|
67
|
+
<p>Once the makefile is generated, the rest of the Rake tasks will function as
|
68
|
+
intended, so you could run 'rake test' prior to installing, for example.</p>
|
69
|
+
|
70
|
+
<h3> Installation problems </h3>
|
71
|
+
|
72
|
+
<p>If you experience problems during your build, please report them to the
|
73
|
+
"mailing list":http://rubyforge.org/mail/?group_id=494 after searching the
|
74
|
+
"archive":http://rubyforge.org/pipermail/libxml-devel/ .</p>
|
75
|
+
|
76
|
+
</content>
|
77
|
+
|
data/doc/layout.rhtml
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
<html>
|
2
|
+
<head>
|
3
|
+
<title>Libxml</title>
|
4
|
+
<link rel='stylesheet' href='<%= link_rel 'styles/normal.css' %>'/>
|
5
|
+
<link REL='SHORTCUT ICON' HREF='<%= link_rel 'img/xml-ruby.png' %>'/>
|
6
|
+
</head>
|
7
|
+
<body>
|
8
|
+
<table>
|
9
|
+
<tr valign="top">
|
10
|
+
<td class='navlinks'>
|
11
|
+
<strong>Navigation</strong><br/>
|
12
|
+
<li><a class='nav' href="<%= link_rel 'index.html' %>">Home</a></li>
|
13
|
+
<li><a class='nav' href="<%= link_rel 'install.html' %>">Installation</a></li>
|
14
|
+
<li><a class='nav' href="<%= link_rel 'rdoc/' %>">Documentation</a></li>
|
15
|
+
<li><a class='nav' href="http://rubyforge.org/projects/libxml">Project Page</a></li>
|
16
|
+
<li><a class='nav' href="<%= link_rel 'license.html' %>">License</a></li>
|
17
|
+
<br/>
|
18
|
+
<strong>External</strong><br/>
|
19
|
+
<li><a class='nav' href="http://xmlsoft.org/">Libxml2 project</a></li>
|
20
|
+
</td>
|
21
|
+
<td style="padding: 10px;">
|
22
|
+
<h1><span style="color: #901414">Libxml</span>-Ruby Project</h1>
|
23
|
+
<%= part :body %>
|
24
|
+
</td>
|
25
|
+
</tr>
|
26
|
+
</table>
|
27
|
+
|
28
|
+
|
29
|
+
|
30
|
+
<div class='copyright'>
|
31
|
+
Copyright © 2001-2006 Libxml-Ruby project contributors.<br/>
|
32
|
+
Website managed with<br/>
|
33
|
+
<a href='http://proutils.rubyforge.org/' target='_blank'>
|
34
|
+
<img src='<%= link_rel 'img/raze-tiny.png' %>' border="0" alt='Raze'/>
|
35
|
+
</a>
|
36
|
+
</p>
|
37
|
+
</body>
|
38
|
+
</html>
|
data/doc/layout.xsl
ADDED
@@ -0,0 +1,67 @@
|
|
1
|
+
<?xml version="1.0" encoding="ISO-8859-1"?>
|
2
|
+
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
3
|
+
|
4
|
+
<xsl:output cdata-section-elements="script"/>
|
5
|
+
|
6
|
+
<xsl:template match="/">
|
7
|
+
|
8
|
+
<html>
|
9
|
+
<head>
|
10
|
+
<title>Libxml</title>
|
11
|
+
<link rel="stylesheet" href="css/normal.css" />
|
12
|
+
<link REL='SHORTCUT ICON' HREF="img/xml-ruby.png" />
|
13
|
+
</head>
|
14
|
+
<body>
|
15
|
+
<div class="container">
|
16
|
+
|
17
|
+
<table>
|
18
|
+
<tr valign="top">
|
19
|
+
<td class='navlinks'>
|
20
|
+
<img src="img/red-cube.jpg" align="top" style="margin-left: -100px;"/>
|
21
|
+
|
22
|
+
<br/><br/>
|
23
|
+
|
24
|
+
<strong>Navigation</strong><br/>
|
25
|
+
<li><a href="index.xml">Home</a></li>
|
26
|
+
<li><a href="install.xml">Installation</a></li>
|
27
|
+
<li><a href="license.xml">License</a></li>
|
28
|
+
<li><a href="rdoc/index.html">API Docs</a></li>
|
29
|
+
<br/>
|
30
|
+
<strong>Development</strong><br/>
|
31
|
+
<li><a href="http://rubyforge.org/projects/libxml">Rubyforge</a></li>
|
32
|
+
<li><a href="http://rubyforge.org/tracker/?group_id=494">Tickets</a></li>
|
33
|
+
<li><a href="http://rubyforge.org/mail/?group_id=494">Mail Lists</a></li>
|
34
|
+
<li><a href="http://rubyforge.org/forum/?group_id=494">Forums</a></li>
|
35
|
+
<li><a href="http://rubyforge.org/news/?group_id=494">News</a></li>
|
36
|
+
<li><a href="http://rubyforge.org/scm/?group_id=494">Source</a></li>
|
37
|
+
<li><a href="http://rubyforge.org/frs/?group_id=494">Files</a></li>
|
38
|
+
<br/>
|
39
|
+
<strong>External</strong><br/>
|
40
|
+
<li><a href="http://groups.google.com/group/libxml-devel">List on Google</a></li>
|
41
|
+
<li><a href="http://xmlsoft.org/">Libxml2 project</a></li>
|
42
|
+
</td>
|
43
|
+
<td style="padding: 10px;">
|
44
|
+
<h1 class="title"><span style="color: red;">LibXml</span> Ruby Project</h1>
|
45
|
+
|
46
|
+
<xsl:apply-templates />
|
47
|
+
</td>
|
48
|
+
</tr>
|
49
|
+
</table>
|
50
|
+
|
51
|
+
<div class='copyright'>
|
52
|
+
Copyright © 2001-2006 Libxml-Ruby project contributors.<br/>
|
53
|
+
Website is, yea baby!, pure XML/XSLT<br/>
|
54
|
+
</div>
|
55
|
+
|
56
|
+
</div>
|
57
|
+
</body>
|
58
|
+
</html>
|
59
|
+
|
60
|
+
</xsl:template>
|
61
|
+
|
62
|
+
<xsl:template match="content">
|
63
|
+
<xsl:copy-of select="."/>
|
64
|
+
</xsl:template>
|
65
|
+
|
66
|
+
</xsl:stylesheet>
|
67
|
+
|
data/doc/license.xml
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
<?xml version="1.0" encoding="ISO-8859-1" ?>
|
2
|
+
<?xml-stylesheet href="layout.xsl" type="text/xsl" ?>
|
3
|
+
|
4
|
+
<content>
|
5
|
+
|
6
|
+
<pre><code>
|
7
|
+
Copyright (c) 2007 Dan Janowski
|
8
|
+
Copyright (c) 2006 Ross Bramford
|
9
|
+
Copyright (c) 2002,2003,2004,2005 Sean Chittenden <sean@chittenden.org>
|
10
|
+
Copyright (c) 2001 Wai-Sun "Squidster" Chia <waisun.chia@compaq.com>
|
11
|
+
|
12
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
13
|
+
this software and associated documentation files (the "Software"), to deal in
|
14
|
+
the Software without restriction, including without limitation the rights to
|
15
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
16
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
17
|
+
so, subject to the following conditions:
|
18
|
+
|
19
|
+
The above copyright notice and this permission notice shall be included in all
|
20
|
+
copies or substantial portions of the Software.
|
21
|
+
|
22
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
23
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
24
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
25
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
26
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
27
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
28
|
+
SOFTWARE.
|
29
|
+
</code></pre>
|
30
|
+
|
31
|
+
</content>
|
32
|
+
|
@@ -0,0 +1,1324 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<?xml-stylesheet href="changelog.xsl" type="text/xsl" ?>
|
3
|
+
<log>
|
4
|
+
<logentry
|
5
|
+
revision="261">
|
6
|
+
<author>transami</author>
|
7
|
+
<date>2008-02-01T21:14:24.501344Z</date>
|
8
|
+
<msg>Update test scripts to reflect move to test/.
|
9
|
+
</msg>
|
10
|
+
</logentry>
|
11
|
+
<logentry
|
12
|
+
revision="260">
|
13
|
+
<author>transami</author>
|
14
|
+
<date>2008-02-01T20:56:58.894977Z</date>
|
15
|
+
<msg>Moves tests/ to test/ which is more conventional.
|
16
|
+
</msg>
|
17
|
+
</logentry>
|
18
|
+
<logentry
|
19
|
+
revision="259">
|
20
|
+
<author>transami</author>
|
21
|
+
<date>2008-02-01T20:55:23.367569Z</date>
|
22
|
+
<msg>Update config file.
|
23
|
+
</msg>
|
24
|
+
</logentry>
|
25
|
+
<logentry
|
26
|
+
revision="258">
|
27
|
+
<author>transami</author>
|
28
|
+
<date>2008-02-01T20:51:57.250130Z</date>
|
29
|
+
<msg>Moved changelog.xml and changelog.xsl to doc/log/.
|
30
|
+
</msg>
|
31
|
+
</logentry>
|
32
|
+
<logentry
|
33
|
+
revision="257">
|
34
|
+
<author>transami</author>
|
35
|
+
<date>2008-02-01T20:51:14.786912Z</date>
|
36
|
+
<msg>Added doc/log for xml-based changelog and notes.
|
37
|
+
</msg>
|
38
|
+
</logentry>
|
39
|
+
<logentry
|
40
|
+
revision="256">
|
41
|
+
<author>transami</author>
|
42
|
+
<date>2008-01-31T13:09:55.716965Z</date>
|
43
|
+
<msg>Minor update to a task description in Rakefile.
|
44
|
+
</msg>
|
45
|
+
</logentry>
|
46
|
+
<logentry
|
47
|
+
revision="255">
|
48
|
+
<author>transami</author>
|
49
|
+
<date>2008-01-31T04:22:13.717493Z</date>
|
50
|
+
<msg>Added memory test task.
|
51
|
+
</msg>
|
52
|
+
</logentry>
|
53
|
+
<logentry
|
54
|
+
revision="254">
|
55
|
+
<author>transami</author>
|
56
|
+
<date>2008-01-31T04:07:23.904143Z</date>
|
57
|
+
<msg>Added work dir for "scrap" material. Modified Rakefile.
|
58
|
+
</msg>
|
59
|
+
</logentry>
|
60
|
+
<logentry
|
61
|
+
revision="253">
|
62
|
+
<author>transami</author>
|
63
|
+
<date>2008-01-30T22:43:18.490381Z</date>
|
64
|
+
<msg>Fixed adding lib/ to $LOAD_PATH.
|
65
|
+
</msg>
|
66
|
+
</logentry>
|
67
|
+
<logentry
|
68
|
+
revision="252">
|
69
|
+
<author>transami</author>
|
70
|
+
<date>2008-01-22T18:16:15.788965Z</date>
|
71
|
+
<msg>Small fixes to task/make and task/test.
|
72
|
+
</msg>
|
73
|
+
</logentry>
|
74
|
+
<logentry
|
75
|
+
revision="251">
|
76
|
+
<author>transami</author>
|
77
|
+
<date>2008-01-22T18:12:00.856153Z</date>
|
78
|
+
<msg>Changed all requires for 'libxml_test.rb' to 'libxml'.
|
79
|
+
</msg>
|
80
|
+
</logentry>
|
81
|
+
<logentry
|
82
|
+
revision="250">
|
83
|
+
<author>transami</author>
|
84
|
+
<date>2008-01-22T18:01:12.918663Z</date>
|
85
|
+
<msg>Removed runner code from tests/. It is now in task/test.
|
86
|
+
</msg>
|
87
|
+
</logentry>
|
88
|
+
<logentry
|
89
|
+
revision="249">
|
90
|
+
<author>transami</author>
|
91
|
+
<date>2008-01-22T17:41:03.219364Z</date>
|
92
|
+
<msg>Renamed compile to make.
|
93
|
+
</msg>
|
94
|
+
</logentry>
|
95
|
+
<logentry
|
96
|
+
revision="248">
|
97
|
+
<author>transami</author>
|
98
|
+
<date>2008-01-22T17:40:40.704832Z</date>
|
99
|
+
<msg>Convert task/compile to pure ruby.
|
100
|
+
</msg>
|
101
|
+
</logentry>
|
102
|
+
<logentry
|
103
|
+
revision="247">
|
104
|
+
<author>transami</author>
|
105
|
+
<date>2008-01-22T17:35:02.641804Z</date>
|
106
|
+
<msg>Moved svn task to admin.
|
107
|
+
</msg>
|
108
|
+
</logentry>
|
109
|
+
<logentry
|
110
|
+
revision="246">
|
111
|
+
<author>transami</author>
|
112
|
+
<date>2008-01-22T17:33:53.833641Z</date>
|
113
|
+
<msg>Moved admin tasks to admin directory.
|
114
|
+
</msg>
|
115
|
+
</logentry>
|
116
|
+
<logentry
|
117
|
+
revision="245">
|
118
|
+
<author>transami</author>
|
119
|
+
<date>2008-01-22T17:32:26.793056Z</date>
|
120
|
+
<msg>Added admin/ directory.
|
121
|
+
</msg>
|
122
|
+
</logentry>
|
123
|
+
<logentry
|
124
|
+
revision="244">
|
125
|
+
<author>transami</author>
|
126
|
+
<date>2008-01-22T17:30:42.415296Z</date>
|
127
|
+
<msg>Remove task/tests.
|
128
|
+
</msg>
|
129
|
+
</logentry>
|
130
|
+
<logentry
|
131
|
+
revision="243">
|
132
|
+
<author>transami</author>
|
133
|
+
<date>2008-01-22T17:30:05.478561Z</date>
|
134
|
+
<msg>Converted test task to pure ruby.
|
135
|
+
</msg>
|
136
|
+
</logentry>
|
137
|
+
<logentry
|
138
|
+
revision="242">
|
139
|
+
<author>transami</author>
|
140
|
+
<date>2007-12-23T04:11:28.706386Z</date>
|
141
|
+
<msg>Added distclean task.
|
142
|
+
</msg>
|
143
|
+
</logentry>
|
144
|
+
<logentry
|
145
|
+
revision="241">
|
146
|
+
<author>transami</author>
|
147
|
+
<date>2007-12-23T04:10:48.910408Z</date>
|
148
|
+
<msg>Added svn tasks and metadata.
|
149
|
+
</msg>
|
150
|
+
</logentry>
|
151
|
+
<logentry
|
152
|
+
revision="240">
|
153
|
+
<author>transami</author>
|
154
|
+
<date>2007-12-15T11:37:40.069746Z</date>
|
155
|
+
<msg>Added svn/log task and backward compatability require (xml/libxml.rb).
|
156
|
+
</msg>
|
157
|
+
</logentry>
|
158
|
+
<logentry
|
159
|
+
revision="239">
|
160
|
+
<author>transami</author>
|
161
|
+
<date>2007-12-15T11:34:25.377811Z</date>
|
162
|
+
<msg>Added doc/changelog.xsl.
|
163
|
+
</msg>
|
164
|
+
</logentry>
|
165
|
+
<logentry
|
166
|
+
revision="238">
|
167
|
+
<author>transami</author>
|
168
|
+
<date>2007-12-15T11:31:59.660804Z</date>
|
169
|
+
<msg>Moved TODO up a directory level and updated meta/project.yaml.
|
170
|
+
</msg>
|
171
|
+
</logentry>
|
172
|
+
<logentry
|
173
|
+
revision="237">
|
174
|
+
<author>transami</author>
|
175
|
+
<date>2007-12-15T11:15:48.589695Z</date>
|
176
|
+
<msg>Moved task/config.yaml to meta/config.yaml as required by Ratch 0.4.0.
|
177
|
+
</msg>
|
178
|
+
</logentry>
|
179
|
+
<logentry
|
180
|
+
revision="236">
|
181
|
+
<author>transami</author>
|
182
|
+
<date>2007-12-15T11:14:35.082137Z</date>
|
183
|
+
<msg>Added packaging tasks.
|
184
|
+
</msg>
|
185
|
+
</logentry>
|
186
|
+
<logentry
|
187
|
+
revision="235">
|
188
|
+
<author>danj</author>
|
189
|
+
<date>2007-12-11T20:28:30.392939Z</date>
|
190
|
+
<msg>fix XML_TEXT_NODE add handling when libxml merges nodes</msg>
|
191
|
+
</logentry>
|
192
|
+
<logentry
|
193
|
+
revision="234">
|
194
|
+
<author>transami</author>
|
195
|
+
<date>2007-12-10T20:31:40.790542Z</date>
|
196
|
+
<msg>Added lib/xml/libxml.rb for backward compatibility.
|
197
|
+
</msg>
|
198
|
+
</logentry>
|
199
|
+
<logentry
|
200
|
+
revision="233">
|
201
|
+
<author>transami</author>
|
202
|
+
<date>2007-12-10T20:19:17.829180Z</date>
|
203
|
+
<msg>Moved ext/libxml/libxml.rb to lib/.
|
204
|
+
</msg>
|
205
|
+
</logentry>
|
206
|
+
<logentry
|
207
|
+
revision="232">
|
208
|
+
<author>transami</author>
|
209
|
+
<date>2007-12-10T20:15:26.614974Z</date>
|
210
|
+
<msg>Removed compile prerequisite from test task for now.
|
211
|
+
</msg>
|
212
|
+
</logentry>
|
213
|
+
<logentry
|
214
|
+
revision="231">
|
215
|
+
<author>transami</author>
|
216
|
+
<date>2007-12-10T20:14:10.257135Z</date>
|
217
|
+
<msg>Fixed extensions attribute inf project.yaml.
|
218
|
+
</msg>
|
219
|
+
</logentry>
|
220
|
+
<logentry
|
221
|
+
revision="230">
|
222
|
+
<author>transami</author>
|
223
|
+
<date>2007-12-10T20:08:21.546856Z</date>
|
224
|
+
<msg>Added setup task.
|
225
|
+
</msg>
|
226
|
+
</logentry>
|
227
|
+
<logentry
|
228
|
+
revision="229">
|
229
|
+
<author>transami</author>
|
230
|
+
<date>2007-12-10T20:05:40.313014Z</date>
|
231
|
+
<msg>Fixed tasks to "main".
|
232
|
+
</msg>
|
233
|
+
</logentry>
|
234
|
+
<logentry
|
235
|
+
revision="228">
|
236
|
+
<author>transami</author>
|
237
|
+
<date>2007-12-07T22:29:00.839378Z</date>
|
238
|
+
<msg>Added test and compile tasks.
|
239
|
+
</msg>
|
240
|
+
</logentry>
|
241
|
+
<logentry
|
242
|
+
revision="227">
|
243
|
+
<author>transami</author>
|
244
|
+
<date>2007-12-07T22:27:17.374712Z</date>
|
245
|
+
<msg>Added version.h.
|
246
|
+
</msg>
|
247
|
+
</logentry>
|
248
|
+
<logentry
|
249
|
+
revision="226">
|
250
|
+
<author>transami</author>
|
251
|
+
<date>2007-12-07T22:26:42.837169Z</date>
|
252
|
+
<msg>Moved header verison.
|
253
|
+
</msg>
|
254
|
+
</logentry>
|
255
|
+
<logentry
|
256
|
+
revision="225">
|
257
|
+
<author>transami</author>
|
258
|
+
<date>2007-12-07T04:58:09.846535Z</date>
|
259
|
+
<msg>Moved ext/xml to ext/libxml.
|
260
|
+
</msg>
|
261
|
+
</logentry>
|
262
|
+
<logentry
|
263
|
+
revision="224">
|
264
|
+
<author>transami</author>
|
265
|
+
<date>2007-12-05T01:32:20.805608Z</date>
|
266
|
+
<msg>Added meta dir and project.yaml file.
|
267
|
+
</msg>
|
268
|
+
</logentry>
|
269
|
+
<logentry
|
270
|
+
revision="223">
|
271
|
+
<author>transami</author>
|
272
|
+
<date>2007-12-05T01:10:38.404486Z</date>
|
273
|
+
<msg>Added doc/.rsync-filter and .htaccess
|
274
|
+
</msg>
|
275
|
+
</logentry>
|
276
|
+
<logentry
|
277
|
+
revision="222">
|
278
|
+
<author>transami</author>
|
279
|
+
<date>2007-12-05T01:06:26.781159Z</date>
|
280
|
+
<msg>Added some tasks.
|
281
|
+
</msg>
|
282
|
+
</logentry>
|
283
|
+
<logentry
|
284
|
+
revision="221">
|
285
|
+
<author>danj</author>
|
286
|
+
<date>2007-12-03T18:14:52.560018Z</date>
|
287
|
+
<msg>raise if parser string set to empty</msg>
|
288
|
+
</logentry>
|
289
|
+
<logentry
|
290
|
+
revision="220">
|
291
|
+
<author>danj</author>
|
292
|
+
<date>2007-11-27T16:04:11.409274Z</date>
|
293
|
+
<msg>fix transposed ruby method mapping</msg>
|
294
|
+
</logentry>
|
295
|
+
<logentry
|
296
|
+
revision="219">
|
297
|
+
<author>danj</author>
|
298
|
+
<date>2007-11-27T15:47:30.944390Z</date>
|
299
|
+
<msg>apply patch to fix multiple namespaces for .find (submitted by keisukefukuda at gmail.com)</msg>
|
300
|
+
</logentry>
|
301
|
+
<logentry
|
302
|
+
revision="218">
|
303
|
+
<author>danj</author>
|
304
|
+
<date>2007-11-27T04:31:13.455806Z</date>
|
305
|
+
<msg>add docs for to_s and encoding</msg>
|
306
|
+
</logentry>
|
307
|
+
<logentry
|
308
|
+
revision="217">
|
309
|
+
<author>danj</author>
|
310
|
+
<date>2007-11-27T04:23:09.933493Z</date>
|
311
|
+
<msg>take a step in the right direction with document encoding</msg>
|
312
|
+
</logentry>
|
313
|
+
<logentry
|
314
|
+
revision="216">
|
315
|
+
<author>danj</author>
|
316
|
+
<date>2007-11-27T02:34:16.567976Z</date>
|
317
|
+
<msg>fix variable reference in ruby_xml_parser_default_load_external_dtd_get</msg>
|
318
|
+
</logentry>
|
319
|
+
<logentry
|
320
|
+
revision="215">
|
321
|
+
<author>transami</author>
|
322
|
+
<date>2007-11-21T04:03:36.853240Z</date>
|
323
|
+
<msg>Added project name.
|
324
|
+
</msg>
|
325
|
+
</logentry>
|
326
|
+
<logentry
|
327
|
+
revision="214">
|
328
|
+
<author>transami</author>
|
329
|
+
<date>2007-11-21T04:00:34.021355Z</date>
|
330
|
+
<msg>Added log/history (for hand entries) and moved TODO to log/ too.
|
331
|
+
</msg>
|
332
|
+
</logentry>
|
333
|
+
<logentry
|
334
|
+
revision="213">
|
335
|
+
<author>transami</author>
|
336
|
+
<date>2007-11-21T03:03:33.424350Z</date>
|
337
|
+
<msg>Added a log directory.
|
338
|
+
</msg>
|
339
|
+
</logentry>
|
340
|
+
<logentry
|
341
|
+
revision="212">
|
342
|
+
<author>danj</author>
|
343
|
+
<date>2007-11-21T02:20:11.556121Z</date>
|
344
|
+
<msg>deal with different .find return types, rev to 0.5.2.2</msg>
|
345
|
+
</logentry>
|
346
|
+
<logentry
|
347
|
+
revision="211">
|
348
|
+
<author>danj</author>
|
349
|
+
<date>2007-11-14T09:52:57.758975Z</date>
|
350
|
+
<msg>add Node#new_text</msg>
|
351
|
+
</logentry>
|
352
|
+
<logentry
|
353
|
+
revision="210">
|
354
|
+
<author>danj</author>
|
355
|
+
<date>2007-11-14T09:11:20.369033Z</date>
|
356
|
+
<msg>fix expand bug</msg>
|
357
|
+
</logentry>
|
358
|
+
<logentry
|
359
|
+
revision="209">
|
360
|
+
<author>danj</author>
|
361
|
+
<date>2007-11-14T09:10:34.539051Z</date>
|
362
|
+
<msg>move rwtest to test/ets...</msg>
|
363
|
+
</logentry>
|
364
|
+
<logentry
|
365
|
+
revision="208">
|
366
|
+
<author>danj</author>
|
367
|
+
<date>2007-11-14T08:36:41.603096Z</date>
|
368
|
+
<msg>add [] to XPath::Object and tests for it</msg>
|
369
|
+
</logentry>
|
370
|
+
<logentry
|
371
|
+
revision="207">
|
372
|
+
<author>danj</author>
|
373
|
+
<date>2007-11-14T07:51:46.588669Z</date>
|
374
|
+
<msg>full merge from MEM2 r.194 v0.5.2.1</msg>
|
375
|
+
</logentry>
|
376
|
+
<logentry
|
377
|
+
revision="205">
|
378
|
+
<author>transami</author>
|
379
|
+
<date>2007-10-25T18:11:13.076903Z</date>
|
380
|
+
<msg>Added task/ dir.
|
381
|
+
</msg>
|
382
|
+
</logentry>
|
383
|
+
<logentry
|
384
|
+
revision="204">
|
385
|
+
<author>transami</author>
|
386
|
+
<date>2007-10-25T18:10:30.544460Z</date>
|
387
|
+
<msg>Further improvements on website.
|
388
|
+
</msg>
|
389
|
+
</logentry>
|
390
|
+
<logentry
|
391
|
+
revision="203">
|
392
|
+
<author>transami</author>
|
393
|
+
<date>2007-10-25T17:50:39.143575Z</date>
|
394
|
+
<msg>Removed doc/web.
|
395
|
+
</msg>
|
396
|
+
</logentry>
|
397
|
+
<logentry
|
398
|
+
revision="202">
|
399
|
+
<author>transami</author>
|
400
|
+
<date>2007-10-25T17:49:48.112911Z</date>
|
401
|
+
<msg>Moved doc/web files up one level.
|
402
|
+
</msg>
|
403
|
+
</logentry>
|
404
|
+
<logentry
|
405
|
+
revision="201">
|
406
|
+
<author>transami</author>
|
407
|
+
<date>2007-10-20T08:46:34.739064Z</date>
|
408
|
+
<msg>moved raze to web
|
409
|
+
</msg>
|
410
|
+
</logentry>
|
411
|
+
<logentry
|
412
|
+
revision="200">
|
413
|
+
<author>transami</author>
|
414
|
+
<date>2007-10-20T08:43:40.090838Z</date>
|
415
|
+
<msg>added image
|
416
|
+
</msg>
|
417
|
+
</logentry>
|
418
|
+
<logentry
|
419
|
+
revision="199">
|
420
|
+
<author>transami</author>
|
421
|
+
<date>2007-10-20T08:42:07.187472Z</date>
|
422
|
+
<msg>converted site to xml/xslt
|
423
|
+
</msg>
|
424
|
+
</logentry>
|
425
|
+
<logentry
|
426
|
+
revision="198">
|
427
|
+
<author>transami</author>
|
428
|
+
<date>2007-10-20T08:40:56.059561Z</date>
|
429
|
+
<msg>updated stylesheet
|
430
|
+
</msg>
|
431
|
+
</logentry>
|
432
|
+
<logentry
|
433
|
+
revision="197">
|
434
|
+
<author>transami</author>
|
435
|
+
<date>2007-10-20T07:39:37.079389Z</date>
|
436
|
+
<msg>removed pages
|
437
|
+
</msg>
|
438
|
+
</logentry>
|
439
|
+
<logentry
|
440
|
+
revision="196">
|
441
|
+
<author>transami</author>
|
442
|
+
<date>2007-10-20T07:38:25.605974Z</date>
|
443
|
+
<msg>removed pages
|
444
|
+
</msg>
|
445
|
+
</logentry>
|
446
|
+
<logentry
|
447
|
+
revision="195">
|
448
|
+
<author>transami</author>
|
449
|
+
<date>2007-10-20T07:37:37.406559Z</date>
|
450
|
+
<msg>these are about to be deleted
|
451
|
+
</msg>
|
452
|
+
</logentry>
|
453
|
+
<logentry
|
454
|
+
revision="162">
|
455
|
+
<author>transami</author>
|
456
|
+
<date>2007-08-30T22:08:59.593789Z</date>
|
457
|
+
<msg>remove .cvsignore
|
458
|
+
</msg>
|
459
|
+
</logentry>
|
460
|
+
<logentry
|
461
|
+
revision="161">
|
462
|
+
<author>transami</author>
|
463
|
+
<date>2007-08-30T21:50:47.414263Z</date>
|
464
|
+
<msg>moved www/ to doc/
|
465
|
+
</msg>
|
466
|
+
</logentry>
|
467
|
+
<logentry
|
468
|
+
revision="160">
|
469
|
+
<author>transami</author>
|
470
|
+
<date>2007-08-30T21:49:30.258911Z</date>
|
471
|
+
<msg>removed www/Rakefile (not using Rote any longer)
|
472
|
+
</msg>
|
473
|
+
</logentry>
|
474
|
+
<logentry
|
475
|
+
revision="159">
|
476
|
+
<author>transami</author>
|
477
|
+
<date>2007-08-30T21:43:39.704322Z</date>
|
478
|
+
<msg>moved www/doc to www/raze
|
479
|
+
</msg>
|
480
|
+
</logentry>
|
481
|
+
<logentry
|
482
|
+
revision="158">
|
483
|
+
<author>transami</author>
|
484
|
+
<date>2007-08-30T21:42:03.640867Z</date>
|
485
|
+
<msg>removed rote logo
|
486
|
+
</msg>
|
487
|
+
</logentry>
|
488
|
+
<logentry
|
489
|
+
revision="157">
|
490
|
+
<author>transami</author>
|
491
|
+
<date>2007-08-30T21:41:40.377083Z</date>
|
492
|
+
<msg>added raze logo
|
493
|
+
</msg>
|
494
|
+
</logentry>
|
495
|
+
<logentry
|
496
|
+
revision="156">
|
497
|
+
<author>transami</author>
|
498
|
+
<date>2007-08-30T21:22:34.123232Z</date>
|
499
|
+
<msg>updated icon
|
500
|
+
</msg>
|
501
|
+
</logentry>
|
502
|
+
<logentry
|
503
|
+
revision="155">
|
504
|
+
<author>transami</author>
|
505
|
+
<date>2007-08-30T21:07:47.744095Z</date>
|
506
|
+
<msg>added icon
|
507
|
+
</msg>
|
508
|
+
</logentry>
|
509
|
+
<logentry
|
510
|
+
revision="154">
|
511
|
+
<author>transami</author>
|
512
|
+
<date>2007-08-30T21:00:40.243033Z</date>
|
513
|
+
<msg>website work
|
514
|
+
</msg>
|
515
|
+
</logentry>
|
516
|
+
<logentry
|
517
|
+
revision="153">
|
518
|
+
<author>transami</author>
|
519
|
+
<date>2007-08-30T18:58:59.480483Z</date>
|
520
|
+
<msg>moved stylesheets to styles
|
521
|
+
</msg>
|
522
|
+
</logentry>
|
523
|
+
<logentry
|
524
|
+
revision="150">
|
525
|
+
<author>transami</author>
|
526
|
+
<date>2007-08-30T03:55:44.910869Z</date>
|
527
|
+
<msg>remove CVSROOT from trunk
|
528
|
+
</msg>
|
529
|
+
</logentry>
|
530
|
+
<logentry
|
531
|
+
revision="149">
|
532
|
+
<author>transami</author>
|
533
|
+
<date>2007-08-30T03:55:15.348059Z</date>
|
534
|
+
<msg>continued work on website
|
535
|
+
</msg>
|
536
|
+
</logentry>
|
537
|
+
<logentry
|
538
|
+
revision="148">
|
539
|
+
<author>transami</author>
|
540
|
+
<date>2007-08-29T22:35:28.999160Z</date>
|
541
|
+
<msg>removed res dir
|
542
|
+
</msg>
|
543
|
+
</logentry>
|
544
|
+
<logentry
|
545
|
+
revision="147">
|
546
|
+
<author>transami</author>
|
547
|
+
<date>2007-08-29T22:34:39.881610Z</date>
|
548
|
+
<msg>continued work on converting website
|
549
|
+
</msg>
|
550
|
+
</logentry>
|
551
|
+
<logentry
|
552
|
+
revision="146">
|
553
|
+
<author>transami</author>
|
554
|
+
<date>2007-08-29T22:29:17.391979Z</date>
|
555
|
+
<msg>converting website from rote to new system
|
556
|
+
</msg>
|
557
|
+
</logentry>
|
558
|
+
<logentry
|
559
|
+
revision="145">
|
560
|
+
<author>transami</author>
|
561
|
+
<date>2007-08-29T21:52:31.434540Z</date>
|
562
|
+
<msg>removed libxslt (now in libxsl project)
|
563
|
+
</msg>
|
564
|
+
</logentry>
|
565
|
+
<logentry
|
566
|
+
revision="144">
|
567
|
+
<author>transami</author>
|
568
|
+
<date>2007-08-29T21:48:46.402082Z</date>
|
569
|
+
<msg>removed libxml subdir
|
570
|
+
</msg>
|
571
|
+
</logentry>
|
572
|
+
<logentry
|
573
|
+
revision="143">
|
574
|
+
<author>transami</author>
|
575
|
+
<date>2007-08-29T21:45:48.353029Z</date>
|
576
|
+
<msg>moved trunk/libxml/* to trunk/*
|
577
|
+
</msg>
|
578
|
+
</logentry>
|
579
|
+
<logentry
|
580
|
+
revision="133">
|
581
|
+
<author>lrz</author>
|
582
|
+
<date>2007-01-14T21:47:59.000000Z</date>
|
583
|
+
<msg>===== 14.1.2007 Laurent Sansonetti <lrz at chopine.be>
|
584
|
+
* Added some preliminary RDoc comments for XML::Reader.
|
585
|
+
</msg>
|
586
|
+
</logentry>
|
587
|
+
<logentry
|
588
|
+
revision="132">
|
589
|
+
<author>roscopeco</author>
|
590
|
+
<date>2006-12-23T18:14:55.000000Z</date>
|
591
|
+
<msg>Replaced RSTRING(str)->len with RSTRING_LEN(str) for future compatibility
|
592
|
+
</msg>
|
593
|
+
</logentry>
|
594
|
+
<logentry
|
595
|
+
revision="131">
|
596
|
+
<author>roscopeco</author>
|
597
|
+
<date>2006-12-05T12:03:12.000000Z</date>
|
598
|
+
<msg>Improved compatibility with MS Visual C:
|
599
|
+
* Replace void* increment and decrement with char* arithmetic.
|
600
|
+
* Predeclare all locals
|
601
|
+
* Removed -Wall (Win32 platform sdk emits *lots* of warnings)
|
602
|
+
* Fixed extconf for win32 libxml2 and dependencies from http://www.zlatkovic.com/pub/libxml/
|
603
|
+
</msg>
|
604
|
+
</logentry>
|
605
|
+
<logentry
|
606
|
+
revision="130">
|
607
|
+
<author>roscopeco</author>
|
608
|
+
<date>2006-12-05T11:56:30.000000Z</date>
|
609
|
+
<msg>removed object file committed by mistake
|
610
|
+
</msg>
|
611
|
+
</logentry>
|
612
|
+
<logentry
|
613
|
+
revision="129">
|
614
|
+
<author>lrz</author>
|
615
|
+
<date>2006-12-04T23:40:08.000000Z</date>
|
616
|
+
<msg>===== 5.12.2006 Laurent Sansonetti <lrz at chopine.be>
|
617
|
+
* Added XML::Reader, a set of bindings to the xmlTextReader API.
|
618
|
+
</msg>
|
619
|
+
</logentry>
|
620
|
+
<logentry
|
621
|
+
revision="128">
|
622
|
+
<author>roscopeco</author>
|
623
|
+
<date>2006-12-02T11:06:28.000000Z</date>
|
624
|
+
<msg>Merged release task fix from 0.3.8.4
|
625
|
+
</msg>
|
626
|
+
</logentry>
|
627
|
+
<logentry
|
628
|
+
revision="124">
|
629
|
+
<author>roscopeco</author>
|
630
|
+
<date>2006-11-30T17:29:04.000000Z</date>
|
631
|
+
<msg>Restore default config after tests to prevent wierd failures in other tests
|
632
|
+
</msg>
|
633
|
+
</logentry>
|
634
|
+
<logentry
|
635
|
+
revision="123">
|
636
|
+
<author>roscopeco</author>
|
637
|
+
<date>2006-11-27T10:41:14.000000Z</date>
|
638
|
+
<msg>Merged from 0.3.8.3:
|
639
|
+
* Fixed a segfault on node.properties with empty props list (patch from Michael Koziarski)
|
640
|
+
* Fixed version macros and release version handling
|
641
|
+
</msg>
|
642
|
+
</logentry>
|
643
|
+
<logentry
|
644
|
+
revision="120">
|
645
|
+
<author>roscopeco</author>
|
646
|
+
<date>2006-11-26T12:57:56.000000Z</date>
|
647
|
+
<msg>Merged contributed patches #6604, #6839, #6871
|
648
|
+
Slight fix to sax error formatting patch
|
649
|
+
</msg>
|
650
|
+
</logentry>
|
651
|
+
<logentry
|
652
|
+
revision="116">
|
653
|
+
<author>roscopeco</author>
|
654
|
+
<date>2006-11-22T14:20:33.000000Z</date>
|
655
|
+
<msg>Fixed non-inclusion of Enumerable on Node::Set
|
656
|
+
</msg>
|
657
|
+
</logentry>
|
658
|
+
<logentry
|
659
|
+
revision="113">
|
660
|
+
<author>roscopeco</author>
|
661
|
+
<date>2006-11-22T12:41:56.000000Z</date>
|
662
|
+
<msg>Fixed parsing with errors bug
|
663
|
+
</msg>
|
664
|
+
</logentry>
|
665
|
+
<logentry
|
666
|
+
revision="111">
|
667
|
+
<author>roscopeco</author>
|
668
|
+
<date>2006-11-20T01:39:14.000000Z</date>
|
669
|
+
<msg>Merged non-backward-compatible DEV_0_4 changes:
|
670
|
+
|
671
|
+
* Implemented new HTMLParser interface
|
672
|
+
* Implemented new (faster) SAX callback strategy
|
673
|
+
</msg>
|
674
|
+
</logentry>
|
675
|
+
<logentry
|
676
|
+
revision="107">
|
677
|
+
<author>roscopeco</author>
|
678
|
+
<date>2006-11-20T01:22:08.000000Z</date>
|
679
|
+
<msg>Merged backward-compatible fixes down from DEV_0_4:
|
680
|
+
|
681
|
+
* Tested fix of bug #4635
|
682
|
+
* Reimplemented attribute memory handling
|
683
|
+
* Fixed attribute list traversal (bug #4719)
|
684
|
+
* Integrated Luc Van Deuren's cdata/comment node patch
|
685
|
+
* Fixed test-naming bugs
|
686
|
+
* Fixed doc build bug
|
687
|
+
* Reimplemented XML::Node memory management
|
688
|
+
* Reimplemented node copy handling
|
689
|
+
* Fixed parser error handler proc early GC bug
|
690
|
+
* include stdarg.h on ruby_xml_document
|
691
|
+
</msg>
|
692
|
+
</logentry>
|
693
|
+
<logentry
|
694
|
+
revision="106">
|
695
|
+
<author>roscopeco</author>
|
696
|
+
<date>2006-11-04T10:04:27.000000Z</date>
|
697
|
+
<msg>Merged stdarg fix
|
698
|
+
</msg>
|
699
|
+
</logentry>
|
700
|
+
<logentry
|
701
|
+
revision="96">
|
702
|
+
<author>roscopeco</author>
|
703
|
+
<date>2006-10-29T19:42:45.000000Z</date>
|
704
|
+
<msg>Remove nodoc from libxml.rb
|
705
|
+
</msg>
|
706
|
+
</logentry>
|
707
|
+
<logentry
|
708
|
+
revision="93">
|
709
|
+
<author>roscopeco</author>
|
710
|
+
<date>2006-10-29T13:39:14.000000Z</date>
|
711
|
+
<msg>Added benchmarks
|
712
|
+
Updated project status
|
713
|
+
</msg>
|
714
|
+
</logentry>
|
715
|
+
<logentry
|
716
|
+
revision="88">
|
717
|
+
<author>roscopeco</author>
|
718
|
+
<date>2006-10-20T12:31:19.000000Z</date>
|
719
|
+
<msg>Fixed up new packaging to play nice with 'rake install'
|
720
|
+
</msg>
|
721
|
+
</logentry>
|
722
|
+
<logentry
|
723
|
+
revision="87">
|
724
|
+
<author>roscopeco</author>
|
725
|
+
<date>2006-10-20T10:41:45.000000Z</date>
|
726
|
+
<msg>Applied gem-build patch from Masashi Shimbo. See:
|
727
|
+
http://rubyforge.org/pipermail/libxml-devel/2006-August/000205.html
|
728
|
+
</msg>
|
729
|
+
</logentry>
|
730
|
+
<logentry
|
731
|
+
revision="86">
|
732
|
+
<author>roscopeco</author>
|
733
|
+
<date>2006-10-20T10:39:42.000000Z</date>
|
734
|
+
<msg>Another failing test :(
|
735
|
+
</msg>
|
736
|
+
</logentry>
|
737
|
+
<logentry
|
738
|
+
revision="85">
|
739
|
+
<author>roscopeco</author>
|
740
|
+
<date>2006-10-20T10:39:21.000000Z</date>
|
741
|
+
<msg>Removed debugging printouts
|
742
|
+
</msg>
|
743
|
+
</logentry>
|
744
|
+
<logentry
|
745
|
+
revision="84">
|
746
|
+
<author>roscopeco</author>
|
747
|
+
<date>2006-08-15T13:53:45.000000Z</date>
|
748
|
+
<msg>Fixed nodelist handling
|
749
|
+
|
750
|
+
Patches from Stephen Veit:
|
751
|
+
Fixed for windows/visual C compliance
|
752
|
+
Fixed extconf build for Windows
|
753
|
+
|
754
|
+
(bug 5022, http://rubyforge.org/tracker/index.php?func=detail&aid=5022&group_id=494&atid=1971)
|
755
|
+
</msg>
|
756
|
+
</logentry>
|
757
|
+
<logentry
|
758
|
+
revision="83">
|
759
|
+
<author>roscopeco</author>
|
760
|
+
<date>2006-08-15T13:49:53.000000Z</date>
|
761
|
+
<msg>Fixed typo in reading example
|
762
|
+
See: http://rubyforge.org/pipermail/libxml-devel/2006-June/000181.html
|
763
|
+
</msg>
|
764
|
+
</logentry>
|
765
|
+
<logentry
|
766
|
+
revision="82">
|
767
|
+
<author>roscopeco</author>
|
768
|
+
<date>2006-05-31T18:22:39.000000Z</date>
|
769
|
+
<msg>Bugfix: gc_mark both filename and str
|
770
|
+
</msg>
|
771
|
+
</logentry>
|
772
|
+
<logentry
|
773
|
+
revision="81">
|
774
|
+
<author>roscopeco</author>
|
775
|
+
<date>2006-05-31T17:26:43.000000Z</date>
|
776
|
+
<msg>Fixed a typo bug
|
777
|
+
</msg>
|
778
|
+
</logentry>
|
779
|
+
<logentry
|
780
|
+
revision="80">
|
781
|
+
<author>roscopeco</author>
|
782
|
+
<date>2006-05-28T14:06:14.000000Z</date>
|
783
|
+
<msg>Allow Node#[] and Node#[]= to handle symbol keys (See http://rubyforge.org/pipermail/libxml-devel/2006-May/000135.html)
|
784
|
+
</msg>
|
785
|
+
</logentry>
|
786
|
+
<logentry
|
787
|
+
revision="79">
|
788
|
+
<author>roscopeco</author>
|
789
|
+
<date>2006-05-28T13:29:42.000000Z</date>
|
790
|
+
<msg>Applied previous node fix (See bug #4497)
|
791
|
+
</msg>
|
792
|
+
</logentry>
|
793
|
+
<logentry
|
794
|
+
revision="78">
|
795
|
+
<author>roscopeco</author>
|
796
|
+
<date>2006-05-10T18:03:57.000000Z</date>
|
797
|
+
<msg>Implemented Node#next= and Node#prev=
|
798
|
+
</msg>
|
799
|
+
</logentry>
|
800
|
+
<logentry
|
801
|
+
revision="77">
|
802
|
+
<author>roscopeco</author>
|
803
|
+
<date>2006-05-10T18:02:51.000000Z</date>
|
804
|
+
<msg>Fixed incorrect class name
|
805
|
+
</msg>
|
806
|
+
</logentry>
|
807
|
+
<logentry
|
808
|
+
revision="76">
|
809
|
+
<author>roscopeco</author>
|
810
|
+
<date>2006-05-01T16:42:29.000000Z</date>
|
811
|
+
<msg>Removed a duplicate definition (and corresponding warning)
|
812
|
+
</msg>
|
813
|
+
</logentry>
|
814
|
+
<logentry
|
815
|
+
revision="75">
|
816
|
+
<author>roscopeco</author>
|
817
|
+
<date>2006-05-01T16:39:52.000000Z</date>
|
818
|
+
<msg>dev 0.3.9
|
819
|
+
</msg>
|
820
|
+
</logentry>
|
821
|
+
<logentry
|
822
|
+
revision="73">
|
823
|
+
<author>roscopeco</author>
|
824
|
+
<date>2006-04-24T19:40:42.000000Z</date>
|
825
|
+
<msg>release 0.3.8
|
826
|
+
</msg>
|
827
|
+
</logentry>
|
828
|
+
<logentry
|
829
|
+
revision="72">
|
830
|
+
<author>roscopeco</author>
|
831
|
+
<date>2006-04-24T19:39:36.000000Z</date>
|
832
|
+
<msg>Fixed a bug in release version update
|
833
|
+
</msg>
|
834
|
+
</logentry>
|
835
|
+
<logentry
|
836
|
+
revision="71">
|
837
|
+
<author>roscopeco</author>
|
838
|
+
<date>2006-04-24T19:29:49.000000Z</date>
|
839
|
+
<msg>changelog/readme update for release
|
840
|
+
</msg>
|
841
|
+
</logentry>
|
842
|
+
<logentry
|
843
|
+
revision="70">
|
844
|
+
<author>roscopeco</author>
|
845
|
+
<date>2006-04-24T19:17:56.000000Z</date>
|
846
|
+
<msg>Fixed tarball installation to site_ruby (added libxml.rb to install)
|
847
|
+
</msg>
|
848
|
+
</logentry>
|
849
|
+
<logentry
|
850
|
+
revision="69">
|
851
|
+
<author>roscopeco</author>
|
852
|
+
<date>2006-04-24T18:29:19.000000Z</date>
|
853
|
+
<msg>Check compiler supports -Wall before using it
|
854
|
+
</msg>
|
855
|
+
</logentry>
|
856
|
+
<logentry
|
857
|
+
revision="68">
|
858
|
+
<author>roscopeco</author>
|
859
|
+
<date>2006-04-24T18:26:54.000000Z</date>
|
860
|
+
<msg>Fixed rake testrunner bug
|
861
|
+
</msg>
|
862
|
+
</logentry>
|
863
|
+
<logentry
|
864
|
+
revision="67">
|
865
|
+
<author>roscopeco</author>
|
866
|
+
<date>2006-04-17T13:30:22.000000Z</date>
|
867
|
+
<msg>Switched .so to libxml_so and introduced libxml.rb to allow easier API prototype / update
|
868
|
+
Fixed testcases for new require setup (use $LOADPATH rather than filename require)
|
869
|
+
</msg>
|
870
|
+
</logentry>
|
871
|
+
<logentry
|
872
|
+
revision="66">
|
873
|
+
<author>roscopeco</author>
|
874
|
+
<date>2006-04-17T12:02:09.000000Z</date>
|
875
|
+
<msg>Fixed rdoc build in gems
|
876
|
+
</msg>
|
877
|
+
</logentry>
|
878
|
+
<logentry
|
879
|
+
revision="65">
|
880
|
+
<author>roscopeco</author>
|
881
|
+
<date>2006-04-14T23:46:06.000000Z</date>
|
882
|
+
<msg>Fixed a struct initialization bug I introduced
|
883
|
+
</msg>
|
884
|
+
</logentry>
|
885
|
+
<logentry
|
886
|
+
revision="64">
|
887
|
+
<author>roscopeco</author>
|
888
|
+
<date>2006-04-14T14:50:58.000000Z</date>
|
889
|
+
<msg>Fixed a build bug I introduced
|
890
|
+
</msg>
|
891
|
+
</logentry>
|
892
|
+
<logentry
|
893
|
+
revision="63">
|
894
|
+
<author>roscopeco</author>
|
895
|
+
<date>2006-04-14T14:45:52.000000Z</date>
|
896
|
+
<msg>First cut of SAX callback API
|
897
|
+
</msg>
|
898
|
+
</logentry>
|
899
|
+
<logentry
|
900
|
+
revision="62">
|
901
|
+
<author>roscopeco</author>
|
902
|
+
<date>2006-04-14T14:45:25.000000Z</date>
|
903
|
+
<msg>Include Enumerable
|
904
|
+
</msg>
|
905
|
+
</logentry>
|
906
|
+
<logentry
|
907
|
+
revision="61">
|
908
|
+
<author>roscopeco</author>
|
909
|
+
<date>2006-04-12T16:04:09.000000Z</date>
|
910
|
+
<msg>Typos
|
911
|
+
</msg>
|
912
|
+
</logentry>
|
913
|
+
<logentry
|
914
|
+
revision="60">
|
915
|
+
<author>roscopeco</author>
|
916
|
+
<date>2006-04-12T16:01:11.000000Z</date>
|
917
|
+
<msg>Extended documentation
|
918
|
+
Restyled things a little bit
|
919
|
+
Removed standard Rote readme
|
920
|
+
</msg>
|
921
|
+
</logentry>
|
922
|
+
<logentry
|
923
|
+
revision="59">
|
924
|
+
<author>roscopeco</author>
|
925
|
+
<date>2006-04-12T12:08:39.000000Z</date>
|
926
|
+
<msg>From Mark Van Holstyn (mvette13 AT gmail DOT com):
|
927
|
+
* Added XML::Node::Set#first
|
928
|
+
* Added XML::Node::Set#empty?
|
929
|
+
* Fixes to XML::Node::Set#to_a
|
930
|
+
* Added XML::Node#find_first
|
931
|
+
* Added XML::Node#remove!
|
932
|
+
|
933
|
+
Also:
|
934
|
+
* Tested the above
|
935
|
+
* Defined node (hash) equality in terms of XML representation
|
936
|
+
* Added comparable nodes to TODOs and updated changelog
|
937
|
+
</msg>
|
938
|
+
</logentry>
|
939
|
+
<logentry
|
940
|
+
revision="58">
|
941
|
+
<author>roscopeco</author>
|
942
|
+
<date>2006-04-12T10:02:46.000000Z</date>
|
943
|
+
<msg>XML::Node#content fix Tim Yamin <plasmaroo AT gentoo DOT org>
|
944
|
+
</msg>
|
945
|
+
</logentry>
|
946
|
+
<logentry
|
947
|
+
revision="57">
|
948
|
+
<author>roscopeco</author>
|
949
|
+
<date>2006-04-12T10:00:39.000000Z</date>
|
950
|
+
<msg>Added rubygems require to example code
|
951
|
+
</msg>
|
952
|
+
</logentry>
|
953
|
+
<logentry
|
954
|
+
revision="56">
|
955
|
+
<author>roscopeco</author>
|
956
|
+
<date>2006-03-27T20:49:19.000000Z</date>
|
957
|
+
<msg>Implemented & tested XML::Parser.register_error_handler
|
958
|
+
Doc fixup (XML::DTD -> XML::Dtd)
|
959
|
+
</msg>
|
960
|
+
</logentry>
|
961
|
+
<logentry
|
962
|
+
revision="55">
|
963
|
+
<author>roscopeco</author>
|
964
|
+
<date>2006-03-27T20:46:48.000000Z</date>
|
965
|
+
<msg>development version roll
|
966
|
+
</msg>
|
967
|
+
</logentry>
|
968
|
+
<logentry
|
969
|
+
revision="53">
|
970
|
+
<author>roscopeco</author>
|
971
|
+
<date>2006-03-21T22:42:21.000000Z</date>
|
972
|
+
<msg>Added RDoc
|
973
|
+
Updated gem build
|
974
|
+
Updated instructions
|
975
|
+
</msg>
|
976
|
+
</logentry>
|
977
|
+
<logentry
|
978
|
+
revision="52">
|
979
|
+
<author>roscopeco</author>
|
980
|
+
<date>2006-03-21T22:41:30.000000Z</date>
|
981
|
+
<msg>Updated instructions
|
982
|
+
</msg>
|
983
|
+
</logentry>
|
984
|
+
<logentry
|
985
|
+
revision="51">
|
986
|
+
<author>roscopeco</author>
|
987
|
+
<date>2006-03-09T23:13:28.000000Z</date>
|
988
|
+
<msg>Implemented better version check (Added RUBY_LIBXSLT_VER_xxx defines)
|
989
|
+
Updated release versioning in Rakefile
|
990
|
+
</msg>
|
991
|
+
</logentry>
|
992
|
+
<logentry
|
993
|
+
revision="50">
|
994
|
+
<author>roscopeco</author>
|
995
|
+
<date>2006-03-09T23:12:12.000000Z</date>
|
996
|
+
<msg>Added RUBY_LIBXML_VER_xxx defines for libxslt checking
|
997
|
+
Updated release versioning in Rakefile
|
998
|
+
Todo update
|
999
|
+
</msg>
|
1000
|
+
</logentry>
|
1001
|
+
<logentry
|
1002
|
+
revision="49">
|
1003
|
+
<author>roscopeco</author>
|
1004
|
+
<date>2006-03-09T20:04:23.000000Z</date>
|
1005
|
+
<msg>Fixed copy/paste errors in documentation
|
1006
|
+
</msg>
|
1007
|
+
</logentry>
|
1008
|
+
<logentry
|
1009
|
+
revision="48">
|
1010
|
+
<author>roscopeco</author>
|
1011
|
+
<date>2006-03-09T01:45:03.000000Z</date>
|
1012
|
+
<msg>Rakefile bugfix, Readme update, cvs ignorance update
|
1013
|
+
</msg>
|
1014
|
+
</logentry>
|
1015
|
+
<logentry
|
1016
|
+
revision="43">
|
1017
|
+
<author>roscopeco</author>
|
1018
|
+
<date>2006-03-09T01:36:19.000000Z</date>
|
1019
|
+
<msg>Initial revision
|
1020
|
+
</msg>
|
1021
|
+
</logentry>
|
1022
|
+
<logentry
|
1023
|
+
revision="42">
|
1024
|
+
<author>roscopeco</author>
|
1025
|
+
<date>2006-02-28T09:57:52.000000Z</date>
|
1026
|
+
<msg>* Ignored vi .swp files
|
1027
|
+
* Updated Changelog
|
1028
|
+
* Updated copyright years
|
1029
|
+
* Removed done todos
|
1030
|
+
</msg>
|
1031
|
+
</logentry>
|
1032
|
+
<logentry
|
1033
|
+
revision="41">
|
1034
|
+
<author>roscopeco</author>
|
1035
|
+
<date>2006-02-27T12:55:32.000000Z</date>
|
1036
|
+
<msg>* Fixed issues with -fno-common GCC flag
|
1037
|
+
* Removed OSX -fno-common workaround
|
1038
|
+
* Fixed a couple of typos
|
1039
|
+
</msg>
|
1040
|
+
</logentry>
|
1041
|
+
<logentry
|
1042
|
+
revision="40">
|
1043
|
+
<author>roscopeco</author>
|
1044
|
+
<date>2006-02-23T18:30:01.000000Z</date>
|
1045
|
+
<msg>Release 0.3.6
|
1046
|
+
</msg>
|
1047
|
+
</logentry>
|
1048
|
+
<logentry
|
1049
|
+
revision="39">
|
1050
|
+
<author>roscopeco</author>
|
1051
|
+
<date>2006-02-21T20:40:16.000000Z</date>
|
1052
|
+
<msg>Rearranged source layout to suit RubyGems packaging
|
1053
|
+
Removed obsolete (Rubynet) utility scripts
|
1054
|
+
</msg>
|
1055
|
+
</logentry>
|
1056
|
+
<logentry
|
1057
|
+
revision="38">
|
1058
|
+
<author>roscopeco</author>
|
1059
|
+
<date>2006-02-21T10:35:25.000000Z</date>
|
1060
|
+
<msg>Band-aid for OSX build probs
|
1061
|
+
</msg>
|
1062
|
+
</logentry>
|
1063
|
+
<logentry
|
1064
|
+
revision="37">
|
1065
|
+
<author>roscopeco</author>
|
1066
|
+
<date>2006-02-20T11:16:15.000000Z</date>
|
1067
|
+
<msg>* Fixed attribute memory handling (http://rubyforge.org/pipermail/libxml-devel/2005-December/000030.html)
|
1068
|
+
* Removed a small leak in ruby_xml_node.
|
1069
|
+
* Fixed parser memory_debug_enabled doc
|
1070
|
+
* Updated shebang in test runner
|
1071
|
+
</msg>
|
1072
|
+
</logentry>
|
1073
|
+
<logentry
|
1074
|
+
revision="36">
|
1075
|
+
<author>roscopeco</author>
|
1076
|
+
<date>2006-01-02T23:19:21.000000Z</date>
|
1077
|
+
<msg>Cleaned up casts for GCC 4.0
|
1078
|
+
Migrated from (obsolete) STR2CSTR to StringValuePtr
|
1079
|
+
</msg>
|
1080
|
+
</logentry>
|
1081
|
+
<logentry
|
1082
|
+
revision="35">
|
1083
|
+
<author>roscopeco</author>
|
1084
|
+
<date>2006-01-02T23:18:46.000000Z</date>
|
1085
|
+
<msg>Fixed Make invocation
|
1086
|
+
</msg>
|
1087
|
+
</logentry>
|
1088
|
+
<logentry
|
1089
|
+
revision="34">
|
1090
|
+
<author>roscopeco</author>
|
1091
|
+
<date>2006-01-02T21:31:47.000000Z</date>
|
1092
|
+
<msg>Cleaned up casts for GCC 4.0
|
1093
|
+
Migrated from (obsolete) STR2CSTR to StringValuePtr
|
1094
|
+
</msg>
|
1095
|
+
</logentry>
|
1096
|
+
<logentry
|
1097
|
+
revision="33">
|
1098
|
+
<author>bshow</author>
|
1099
|
+
<date>2005-12-29T19:12:38.000000Z</date>
|
1100
|
+
<msg>Initial checkin
|
1101
|
+
</msg>
|
1102
|
+
</logentry>
|
1103
|
+
<logentry
|
1104
|
+
revision="32">
|
1105
|
+
<author>bshow</author>
|
1106
|
+
<date>2005-12-29T19:10:52.000000Z</date>
|
1107
|
+
<msg>Added "doc" to cleanfiles; added new task "pubdoc"
|
1108
|
+
</msg>
|
1109
|
+
</logentry>
|
1110
|
+
<logentry
|
1111
|
+
revision="31">
|
1112
|
+
<author>bshow</author>
|
1113
|
+
<date>2005-12-29T19:10:20.000000Z</date>
|
1114
|
+
<msg>Added "doc"
|
1115
|
+
</msg>
|
1116
|
+
</logentry>
|
1117
|
+
<logentry
|
1118
|
+
revision="30">
|
1119
|
+
<author>bshow</author>
|
1120
|
+
<date>2005-12-29T19:00:01.000000Z</date>
|
1121
|
+
<msg>Prevent RDoc from wrapping copyright notices
|
1122
|
+
</msg>
|
1123
|
+
</logentry>
|
1124
|
+
<logentry
|
1125
|
+
revision="29">
|
1126
|
+
<author>roscopeco</author>
|
1127
|
+
<date>2005-12-19T20:51:39.000000Z</date>
|
1128
|
+
<msg>Removed (forgotten) temporary notice for documentation set
|
1129
|
+
</msg>
|
1130
|
+
</logentry>
|
1131
|
+
<logentry
|
1132
|
+
revision="28">
|
1133
|
+
<author>roscopeco</author>
|
1134
|
+
<date>2005-12-19T20:48:52.000000Z</date>
|
1135
|
+
<msg>MIT license
|
1136
|
+
</msg>
|
1137
|
+
</logentry>
|
1138
|
+
<logentry
|
1139
|
+
revision="27">
|
1140
|
+
<author>roscopeco</author>
|
1141
|
+
<date>2005-12-19T19:57:20.000000Z</date>
|
1142
|
+
<msg>better ignorance
|
1143
|
+
</msg>
|
1144
|
+
</logentry>
|
1145
|
+
<logentry
|
1146
|
+
revision="26">
|
1147
|
+
<author>roscopeco</author>
|
1148
|
+
<date>2005-12-19T19:53:07.000000Z</date>
|
1149
|
+
<msg>Initial import
|
1150
|
+
</msg>
|
1151
|
+
</logentry>
|
1152
|
+
<logentry
|
1153
|
+
revision="25">
|
1154
|
+
<author>tom</author>
|
1155
|
+
<date>2004-12-29T01:03:49.000000Z</date>
|
1156
|
+
<msg>initial checkin</msg>
|
1157
|
+
</logentry>
|
1158
|
+
<logentry
|
1159
|
+
revision="24">
|
1160
|
+
<author>tom</author>
|
1161
|
+
<date>2003-09-04T20:58:03.000000Z</date>
|
1162
|
+
<msg>Test
|
1163
|
+
</msg>
|
1164
|
+
</logentry>
|
1165
|
+
<logentry
|
1166
|
+
revision="23">
|
1167
|
+
<author>tom</author>
|
1168
|
+
<date>2003-09-04T20:56:15.000000Z</date>
|
1169
|
+
<msg>Test
|
1170
|
+
</msg>
|
1171
|
+
</logentry>
|
1172
|
+
<logentry
|
1173
|
+
revision="22">
|
1174
|
+
<author>gforge</author>
|
1175
|
+
<date>2003-09-04T18:31:27.000000Z</date>
|
1176
|
+
<msg>initial checkin
|
1177
|
+
</msg>
|
1178
|
+
</logentry>
|
1179
|
+
<logentry
|
1180
|
+
revision="21">
|
1181
|
+
<author>tcarrico</author>
|
1182
|
+
<date>2003-04-25T14:22:04.000000Z</date>
|
1183
|
+
<msg>Updating binary default types
|
1184
|
+
</msg>
|
1185
|
+
</logentry>
|
1186
|
+
<logentry
|
1187
|
+
revision="20">
|
1188
|
+
<author>tom</author>
|
1189
|
+
<date>2003-04-24T20:14:32.000000Z</date>
|
1190
|
+
<msg>initial checkin
|
1191
|
+
</msg>
|
1192
|
+
</logentry>
|
1193
|
+
<logentry
|
1194
|
+
revision="19">
|
1195
|
+
<author>tom</author>
|
1196
|
+
<date>2003-04-24T19:46:12.000000Z</date>
|
1197
|
+
<msg>tweak
|
1198
|
+
</msg>
|
1199
|
+
</logentry>
|
1200
|
+
<logentry
|
1201
|
+
revision="18">
|
1202
|
+
<author>tom</author>
|
1203
|
+
<date>2003-04-24T19:43:45.000000Z</date>
|
1204
|
+
<msg>initial checkin
|
1205
|
+
</msg>
|
1206
|
+
</logentry>
|
1207
|
+
<logentry
|
1208
|
+
revision="17">
|
1209
|
+
<author>tom</author>
|
1210
|
+
<date>2003-03-05T16:47:11.000000Z</date>
|
1211
|
+
<msg>*** empty log message ***
|
1212
|
+
</msg>
|
1213
|
+
</logentry>
|
1214
|
+
<logentry
|
1215
|
+
revision="16">
|
1216
|
+
<author>tom</author>
|
1217
|
+
<date>2003-03-05T16:42:18.000000Z</date>
|
1218
|
+
<msg>*** empty log message ***
|
1219
|
+
</msg>
|
1220
|
+
</logentry>
|
1221
|
+
<logentry
|
1222
|
+
revision="15">
|
1223
|
+
<author>tom</author>
|
1224
|
+
<date>2003-02-28T19:37:09.000000Z</date>
|
1225
|
+
<msg>*** empty log message ***
|
1226
|
+
</msg>
|
1227
|
+
</logentry>
|
1228
|
+
<logentry
|
1229
|
+
revision="14">
|
1230
|
+
<author>tom</author>
|
1231
|
+
<date>2003-02-28T19:26:07.000000Z</date>
|
1232
|
+
<msg>*** empty log message ***
|
1233
|
+
</msg>
|
1234
|
+
</logentry>
|
1235
|
+
<logentry
|
1236
|
+
revision="13">
|
1237
|
+
<author>tom</author>
|
1238
|
+
<date>2003-02-28T19:10:35.000000Z</date>
|
1239
|
+
<msg>*** empty log message ***
|
1240
|
+
</msg>
|
1241
|
+
</logentry>
|
1242
|
+
<logentry
|
1243
|
+
revision="12">
|
1244
|
+
<author>tom</author>
|
1245
|
+
<date>2003-02-28T19:10:18.000000Z</date>
|
1246
|
+
<msg>*** empty log message ***
|
1247
|
+
</msg>
|
1248
|
+
</logentry>
|
1249
|
+
<logentry
|
1250
|
+
revision="11">
|
1251
|
+
<author>tom</author>
|
1252
|
+
<date>2003-02-28T19:10:11.000000Z</date>
|
1253
|
+
<msg>*** empty log message ***
|
1254
|
+
</msg>
|
1255
|
+
</logentry>
|
1256
|
+
<logentry
|
1257
|
+
revision="10">
|
1258
|
+
<author>tom</author>
|
1259
|
+
<date>2003-02-28T19:09:57.000000Z</date>
|
1260
|
+
<msg>*** empty log message ***
|
1261
|
+
</msg>
|
1262
|
+
</logentry>
|
1263
|
+
<logentry
|
1264
|
+
revision="9">
|
1265
|
+
<author>tom</author>
|
1266
|
+
<date>2003-02-28T19:06:41.000000Z</date>
|
1267
|
+
<msg>*** empty log message ***
|
1268
|
+
</msg>
|
1269
|
+
</logentry>
|
1270
|
+
<logentry
|
1271
|
+
revision="8">
|
1272
|
+
<author>tom</author>
|
1273
|
+
<date>2003-02-28T19:00:46.000000Z</date>
|
1274
|
+
<msg>*** empty log message ***
|
1275
|
+
</msg>
|
1276
|
+
</logentry>
|
1277
|
+
<logentry
|
1278
|
+
revision="7">
|
1279
|
+
<author>tom</author>
|
1280
|
+
<date>2003-02-28T19:00:06.000000Z</date>
|
1281
|
+
<msg>*** empty log message ***
|
1282
|
+
</msg>
|
1283
|
+
</logentry>
|
1284
|
+
<logentry
|
1285
|
+
revision="6">
|
1286
|
+
<author>tom</author>
|
1287
|
+
<date>2003-02-28T18:59:06.000000Z</date>
|
1288
|
+
<msg>*** empty log message ***
|
1289
|
+
</msg>
|
1290
|
+
</logentry>
|
1291
|
+
<logentry
|
1292
|
+
revision="5">
|
1293
|
+
<author>tom</author>
|
1294
|
+
<date>2003-02-28T18:24:49.000000Z</date>
|
1295
|
+
<msg>*** empty log message ***
|
1296
|
+
</msg>
|
1297
|
+
</logentry>
|
1298
|
+
<logentry
|
1299
|
+
revision="4">
|
1300
|
+
<author>tom</author>
|
1301
|
+
<date>2003-02-28T18:23:12.000000Z</date>
|
1302
|
+
<msg>*** empty log message ***
|
1303
|
+
</msg>
|
1304
|
+
</logentry>
|
1305
|
+
<logentry
|
1306
|
+
revision="3">
|
1307
|
+
<author>tom</author>
|
1308
|
+
<date>2003-02-28T18:17:45.000000Z</date>
|
1309
|
+
<msg>added newline
|
1310
|
+
</msg>
|
1311
|
+
</logentry>
|
1312
|
+
<logentry
|
1313
|
+
revision="2">
|
1314
|
+
<author>tom</author>
|
1315
|
+
<date>2003-02-28T18:13:00.000000Z</date>
|
1316
|
+
<msg>*** empty log message ***
|
1317
|
+
</msg>
|
1318
|
+
</logentry>
|
1319
|
+
<logentry
|
1320
|
+
revision="1">
|
1321
|
+
<date>2003-02-28T18:13:00.000000Z</date>
|
1322
|
+
<msg>New repository initialized by cvs2svn.</msg>
|
1323
|
+
</logentry>
|
1324
|
+
</log>
|