nokogiri 1.6.8.rc3 → 1.6.8
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of nokogiri might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/.travis.yml +5 -3
- data/CHANGELOG.rdoc +27 -4
- data/CONTRIBUTING.md +1 -1
- data/Gemfile +7 -7
- data/Manifest.txt +1 -1
- data/README.md +0 -3
- data/Rakefile +10 -11
- data/dependencies.yml +29 -4
- data/ext/nokogiri/extconf.rb +74 -19
- data/ext/nokogiri/xml_node.c +22 -9
- data/ext/nokogiri/xml_reader.c +0 -13
- data/ext/nokogiri/xml_sax_parser.c +7 -7
- data/lib/nokogiri.rb +11 -7
- data/lib/nokogiri/html/document.rb +4 -2
- data/lib/nokogiri/version.rb +1 -1
- data/lib/nokogiri/xml/document.rb +1 -1
- data/lib/nokogiri/xml/parse_options.rb +22 -0
- data/ports/archives/libxml2-2.9.4.tar.gz +0 -0
- data/ports/archives/libxslt-1.1.29.tar.gz +0 -0
- data/tasks/test.rb +5 -0
- data/test/html/test_document.rb +26 -0
- data/test/html/test_document_encoding.rb +5 -0
- data/test/html/test_document_fragment.rb +5 -0
- data/test/test_encoding_handler.rb +2 -0
- data/test/test_xslt_transforms.rb +33 -0
- data/test/xml/sax/test_parser.rb +15 -7
- data/test/xml/test_document_encoding.rb +5 -0
- data/test/xml/test_document_fragment.rb +12 -0
- data/test/xml/test_node_attributes.rb +6 -0
- data/test/xml/test_node_reparenting.rb +193 -18
- data/test/xml/test_reader.rb +589 -0
- data/test/xml/test_unparented_node.rb +13 -0
- data/test_all +33 -42
- metadata +34 -51
- data/patches/libxslt/0001-Adding-doc-update-related-to-1.1.28.patch +0 -222
- data/patches/libxslt/0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch +0 -53
- data/patches/libxslt/0003-Initialize-pseudo-random-number-generator-with-curre.patch +0 -60
- data/patches/libxslt/0004-EXSLT-function-str-replace-is-broken-as-is.patch +0 -42
- data/patches/libxslt/0006-Fix-str-padding-to-work-with-UTF-8-strings.patch +0 -164
- data/patches/libxslt/0007-Separate-function-for-predicate-matching-in-patterns.patch +0 -587
- data/patches/libxslt/0008-Fix-direct-pattern-matching.patch +0 -80
- data/patches/libxslt/0009-Fix-certain-patterns-with-predicates.patch +0 -185
- data/patches/libxslt/0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch +0 -126
- data/patches/libxslt/0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch +0 -25
- data/patches/libxslt/0014-Fix-for-bug-436589.patch +0 -43
- data/patches/libxslt/0015-Fix-mkdir-for-mingw.patch +0 -41
- data/patches/libxslt/0016-Fix-for-type-confusion-in-preprocessing-attributes.patch +0 -29
- data/patches/libxslt/0017-Updated-config.guess.patch +0 -1226
- data/ports/archives/libxml2-2.9.3.tar.gz +0 -0
- data/ports/archives/libxslt-1.1.28.tar.gz +0 -0
- data/test/test_reader.rb +0 -577
@@ -422,6 +422,19 @@ module Nokogiri
|
|
422
422
|
old_node = @node.at('.//employee')
|
423
423
|
assert_raises(ArgumentError){ old_node.replace new_node }
|
424
424
|
end
|
425
|
+
|
426
|
+
def test_unlink_on_unlinked_node_1
|
427
|
+
node = Nokogiri::XML::Node.new 'div', Nokogiri::XML::Document.new
|
428
|
+
node.unlink # must_not_raise
|
429
|
+
assert_nil node.parent
|
430
|
+
end
|
431
|
+
|
432
|
+
def test_unlink_on_unlinked_node_2
|
433
|
+
node = Nokogiri::XML('<div>foo</div>').at_css("div")
|
434
|
+
node.unlink
|
435
|
+
node.unlink # must_not_raise
|
436
|
+
assert_nil node.parent
|
437
|
+
end
|
425
438
|
end
|
426
439
|
end
|
427
440
|
end
|
data/test_all
CHANGED
@@ -25,13 +25,12 @@ RUBIES="\
|
|
25
25
|
TEST_LOG=test.log
|
26
26
|
VALGRIND_LOG=valgrind.log
|
27
27
|
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
fi
|
28
|
+
# make sure we can test with libxml-ruby installed
|
29
|
+
export BUNDLE_GEMFILE="$(pwd)/Gemfile_test_all"
|
30
|
+
cat > $BUNDLE_GEMFILE <<EOF
|
31
|
+
gem "libxml-ruby", :platform => :mri, :require => false
|
32
|
+
eval_gemfile File.join(File.dirname(ENV['BUNDLE_GEMFILE']),"Gemfile")
|
33
|
+
EOF
|
35
34
|
|
36
35
|
# Load RVM into a shell session *as a function*
|
37
36
|
if [[ -s "$HOME/.rvm/scripts/rvm" ]] ; then
|
@@ -51,20 +50,12 @@ function rvm_use {
|
|
51
50
|
rvm use "${1}@nokogiri" --create
|
52
51
|
}
|
53
52
|
|
54
|
-
function generate_parser_and_tokenizer {
|
55
|
-
old_ruby=$current_ruby
|
56
|
-
rvm_use ruby-1.9.3
|
57
|
-
bundle exec rake generate 2>&1 > /dev/null
|
58
|
-
rvm_use $old_ruby
|
59
|
-
}
|
60
|
-
|
61
53
|
function clean {
|
62
54
|
bundle exec rake clean clobber 2>&1 > /dev/null
|
63
55
|
}
|
64
56
|
|
65
57
|
function compile {
|
66
58
|
echo "** compiling ..."
|
67
|
-
# generate_parser_and_tokenizer
|
68
59
|
bundle exec rake compile 2>&1 > /dev/null
|
69
60
|
}
|
70
61
|
|
@@ -75,9 +66,9 @@ done
|
|
75
66
|
|
76
67
|
for ruby in $RUBIES ; do
|
77
68
|
rvm_use ${ruby}
|
78
|
-
if ! [[ $(bundle -v) =~ "1.
|
69
|
+
if ! [[ $(bundle -v) =~ "1.12." ]] ; then
|
79
70
|
yes | gem uninstall --force bundler
|
80
|
-
gem install bundler -v 1.
|
71
|
+
gem install bundler -v 1.12.5
|
81
72
|
bundle -v
|
82
73
|
fi
|
83
74
|
bundle install --quiet --local || bundle install
|
@@ -85,32 +76,32 @@ for ruby in $RUBIES ; do
|
|
85
76
|
done
|
86
77
|
|
87
78
|
for ruby in $RUBIES ; do
|
79
|
+
rvm_use ${ruby}
|
80
|
+
echo -e "**\n** testing nokogiri on ${ruby}\n**"
|
81
|
+
clean
|
82
|
+
compile
|
83
|
+
echo "** running tests ..."
|
84
|
+
bundle exec rake test 2>&1
|
85
|
+
if [[ ! $ruby =~ "jruby" ]] ; then
|
86
|
+
echo "** running tests again with libxml-ruby loaded ..."
|
87
|
+
if ! gem list libxml-ruby | fgrep 2.8.0 ; then
|
88
|
+
gem install libxml-ruby
|
89
|
+
fi
|
90
|
+
bundle exec rake test:libxml-ruby 2>&1
|
91
|
+
fi
|
92
|
+
clean
|
93
|
+
done | tee -a $TEST_LOG
|
94
|
+
|
95
|
+
for ruby in $RUBIES ; do
|
96
|
+
if [[ ! $ruby =~ "jruby" ]] ; then
|
88
97
|
rvm_use ${ruby}
|
89
|
-
echo -e "**\n**
|
98
|
+
echo -e "**\n** nokogiri prerelease: ${ruby}\n**"
|
90
99
|
clean
|
91
100
|
compile
|
92
|
-
echo "** running tests ..."
|
93
|
-
bundle exec rake test 2>&1
|
94
|
-
|
95
|
-
|
96
|
-
if ! gem list libxml-ruby | fgrep 2.8.0 ; then
|
97
|
-
gem install libxml-ruby
|
98
|
-
fi
|
99
|
-
bundle exec rake test:libxml-ruby 2>&1 | tee -a $TEST_LOG
|
100
|
-
fi
|
101
|
+
echo "** running valgrind on tests ..."
|
102
|
+
bundle exec rake test:valgrind 2>&1
|
103
|
+
echo "** running valgrind again with libxml-ruby loaded ..."
|
104
|
+
bundle exec rake test:valgrind:libxml-ruby 2>&1
|
101
105
|
clean
|
102
|
-
|
103
|
-
|
104
|
-
for ruby in $RUBIES ; do
|
105
|
-
if [[ ! $ruby =~ "jruby" ]] ; then
|
106
|
-
rvm_use ${ruby}
|
107
|
-
echo -e "**\n** nokogiri prerelease: ${ruby}\n**" | tee -a $VALGRIND_LOG
|
108
|
-
clean
|
109
|
-
compile
|
110
|
-
echo "** running valgrind on tests ..."
|
111
|
-
bundle exec rake test:valgrind 2>&1 | tee -a $VALGRIND_LOG
|
112
|
-
echo "** running valgrind again with libxml-ruby loaded ..."
|
113
|
-
bundle exec rake test:valgrind:libxml-ruby 2>&1 | tee -a $VALGRIND_LOG
|
114
|
-
clean
|
115
|
-
fi
|
116
|
-
done
|
106
|
+
fi
|
107
|
+
done | tee -a $VALGRIND_LOG
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nokogiri
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.6.8
|
4
|
+
version: 1.6.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aaron Patterson
|
@@ -12,7 +12,7 @@ authors:
|
|
12
12
|
autorequire:
|
13
13
|
bindir: bin
|
14
14
|
cert_chain: []
|
15
|
-
date: 2016-
|
15
|
+
date: 2016-06-06 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
name: mini_portile2
|
@@ -60,16 +60,16 @@ dependencies:
|
|
60
60
|
name: hoe-bundler
|
61
61
|
requirement: !ruby/object:Gem::Requirement
|
62
62
|
requirements:
|
63
|
-
- - "
|
63
|
+
- - "~>"
|
64
64
|
- !ruby/object:Gem::Version
|
65
|
-
version:
|
65
|
+
version: 1.2.0
|
66
66
|
type: :development
|
67
67
|
prerelease: false
|
68
68
|
version_requirements: !ruby/object:Gem::Requirement
|
69
69
|
requirements:
|
70
|
-
- - "
|
70
|
+
- - "~>"
|
71
71
|
- !ruby/object:Gem::Version
|
72
|
-
version:
|
72
|
+
version: 1.2.0
|
73
73
|
- !ruby/object:Gem::Dependency
|
74
74
|
name: hoe-debugging
|
75
75
|
requirement: !ruby/object:Gem::Requirement
|
@@ -88,58 +88,58 @@ dependencies:
|
|
88
88
|
name: hoe-gemspec
|
89
89
|
requirement: !ruby/object:Gem::Requirement
|
90
90
|
requirements:
|
91
|
-
- - "
|
91
|
+
- - "~>"
|
92
92
|
- !ruby/object:Gem::Version
|
93
|
-
version:
|
93
|
+
version: 1.0.0
|
94
94
|
type: :development
|
95
95
|
prerelease: false
|
96
96
|
version_requirements: !ruby/object:Gem::Requirement
|
97
97
|
requirements:
|
98
|
-
- - "
|
98
|
+
- - "~>"
|
99
99
|
- !ruby/object:Gem::Version
|
100
|
-
version:
|
100
|
+
version: 1.0.0
|
101
101
|
- !ruby/object:Gem::Dependency
|
102
102
|
name: hoe-git
|
103
103
|
requirement: !ruby/object:Gem::Requirement
|
104
104
|
requirements:
|
105
|
-
- - "
|
105
|
+
- - "~>"
|
106
106
|
- !ruby/object:Gem::Version
|
107
|
-
version:
|
107
|
+
version: 1.6.0
|
108
108
|
type: :development
|
109
109
|
prerelease: false
|
110
110
|
version_requirements: !ruby/object:Gem::Requirement
|
111
111
|
requirements:
|
112
|
-
- - "
|
112
|
+
- - "~>"
|
113
113
|
- !ruby/object:Gem::Version
|
114
|
-
version:
|
114
|
+
version: 1.6.0
|
115
115
|
- !ruby/object:Gem::Dependency
|
116
116
|
name: minitest
|
117
117
|
requirement: !ruby/object:Gem::Requirement
|
118
118
|
requirements:
|
119
119
|
- - "~>"
|
120
120
|
- !ruby/object:Gem::Version
|
121
|
-
version:
|
121
|
+
version: 5.8.4
|
122
122
|
type: :development
|
123
123
|
prerelease: false
|
124
124
|
version_requirements: !ruby/object:Gem::Requirement
|
125
125
|
requirements:
|
126
126
|
- - "~>"
|
127
127
|
- !ruby/object:Gem::Version
|
128
|
-
version:
|
128
|
+
version: 5.8.4
|
129
129
|
- !ruby/object:Gem::Dependency
|
130
130
|
name: rake
|
131
131
|
requirement: !ruby/object:Gem::Requirement
|
132
132
|
requirements:
|
133
|
-
- - "
|
133
|
+
- - "~>"
|
134
134
|
- !ruby/object:Gem::Version
|
135
|
-
version:
|
135
|
+
version: 10.5.0
|
136
136
|
type: :development
|
137
137
|
prerelease: false
|
138
138
|
version_requirements: !ruby/object:Gem::Requirement
|
139
139
|
requirements:
|
140
|
-
- - "
|
140
|
+
- - "~>"
|
141
141
|
- !ruby/object:Gem::Version
|
142
|
-
version:
|
142
|
+
version: 10.5.0
|
143
143
|
- !ruby/object:Gem::Dependency
|
144
144
|
name: rake-compiler
|
145
145
|
requirement: !ruby/object:Gem::Requirement
|
@@ -172,28 +172,28 @@ dependencies:
|
|
172
172
|
name: racc
|
173
173
|
requirement: !ruby/object:Gem::Requirement
|
174
174
|
requirements:
|
175
|
-
- - "
|
175
|
+
- - "~>"
|
176
176
|
- !ruby/object:Gem::Version
|
177
|
-
version: 1.4.
|
177
|
+
version: 1.4.14
|
178
178
|
type: :development
|
179
179
|
prerelease: false
|
180
180
|
version_requirements: !ruby/object:Gem::Requirement
|
181
181
|
requirements:
|
182
|
-
- - "
|
182
|
+
- - "~>"
|
183
183
|
- !ruby/object:Gem::Version
|
184
|
-
version: 1.4.
|
184
|
+
version: 1.4.14
|
185
185
|
- !ruby/object:Gem::Dependency
|
186
186
|
name: rexical
|
187
187
|
requirement: !ruby/object:Gem::Requirement
|
188
188
|
requirements:
|
189
|
-
- - "
|
189
|
+
- - "~>"
|
190
190
|
- !ruby/object:Gem::Version
|
191
191
|
version: 1.0.5
|
192
192
|
type: :development
|
193
193
|
prerelease: false
|
194
194
|
version_requirements: !ruby/object:Gem::Requirement
|
195
195
|
requirements:
|
196
|
-
- - "
|
196
|
+
- - "~>"
|
197
197
|
- !ruby/object:Gem::Version
|
198
198
|
version: 1.0.5
|
199
199
|
- !ruby/object:Gem::Dependency
|
@@ -202,21 +202,18 @@ dependencies:
|
|
202
202
|
requirements:
|
203
203
|
- - "~>"
|
204
204
|
- !ruby/object:Gem::Version
|
205
|
-
version: '3.
|
205
|
+
version: '3.15'
|
206
206
|
type: :development
|
207
207
|
prerelease: false
|
208
208
|
version_requirements: !ruby/object:Gem::Requirement
|
209
209
|
requirements:
|
210
210
|
- - "~>"
|
211
211
|
- !ruby/object:Gem::Version
|
212
|
-
version: '3.
|
212
|
+
version: '3.15'
|
213
213
|
description: |-
|
214
214
|
Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser. Among
|
215
215
|
Nokogiri's many features is the ability to search documents via XPath
|
216
216
|
or CSS3 selectors.
|
217
|
-
|
218
|
-
XML is like violence - if it doesn’t solve your problems, you are not
|
219
|
-
using enough of it.
|
220
217
|
email:
|
221
218
|
- aaronp@rubyforge.org
|
222
219
|
- mike.dalessio@gmail.com
|
@@ -425,23 +422,9 @@ files:
|
|
425
422
|
- lib/nokogiri/xslt.rb
|
426
423
|
- lib/nokogiri/xslt/stylesheet.rb
|
427
424
|
- lib/xsd/xmlparser/nokogiri.rb
|
428
|
-
- patches/libxslt/0001-Adding-doc-update-related-to-1.1.28.patch
|
429
|
-
- patches/libxslt/0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch
|
430
|
-
- patches/libxslt/0003-Initialize-pseudo-random-number-generator-with-curre.patch
|
431
|
-
- patches/libxslt/0004-EXSLT-function-str-replace-is-broken-as-is.patch
|
432
|
-
- patches/libxslt/0006-Fix-str-padding-to-work-with-UTF-8-strings.patch
|
433
|
-
- patches/libxslt/0007-Separate-function-for-predicate-matching-in-patterns.patch
|
434
|
-
- patches/libxslt/0008-Fix-direct-pattern-matching.patch
|
435
|
-
- patches/libxslt/0009-Fix-certain-patterns-with-predicates.patch
|
436
|
-
- patches/libxslt/0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch
|
437
|
-
- patches/libxslt/0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch
|
438
|
-
- patches/libxslt/0014-Fix-for-bug-436589.patch
|
439
|
-
- patches/libxslt/0015-Fix-mkdir-for-mingw.patch
|
440
|
-
- patches/libxslt/0016-Fix-for-type-confusion-in-preprocessing-attributes.patch
|
441
|
-
- patches/libxslt/0017-Updated-config.guess.patch
|
442
425
|
- patches/sort-patches-by-date
|
443
|
-
- ports/archives/libxml2-2.9.
|
444
|
-
- ports/archives/libxslt-1.1.
|
426
|
+
- ports/archives/libxml2-2.9.4.tar.gz
|
427
|
+
- ports/archives/libxslt-1.1.29.tar.gz
|
445
428
|
- suppressions/README.txt
|
446
429
|
- suppressions/nokogiri_ree-1.8.7.358.supp
|
447
430
|
- suppressions/nokogiri_ruby-1.8.7.370.supp
|
@@ -514,7 +497,6 @@ files:
|
|
514
497
|
- test/test_encoding_handler.rb
|
515
498
|
- test/test_memory_leak.rb
|
516
499
|
- test/test_nokogiri.rb
|
517
|
-
- test/test_reader.rb
|
518
500
|
- test/test_soap4r_sax.rb
|
519
501
|
- test/test_xslt_transforms.rb
|
520
502
|
- test/xml/node/test_save_options.rb
|
@@ -546,6 +528,7 @@ files:
|
|
546
528
|
- test/xml/test_node_set.rb
|
547
529
|
- test/xml/test_parse_options.rb
|
548
530
|
- test/xml/test_processing_instruction.rb
|
531
|
+
- test/xml/test_reader.rb
|
549
532
|
- test/xml/test_reader_encoding.rb
|
550
533
|
- test/xml/test_relax_ng.rb
|
551
534
|
- test/xml/test_schema.rb
|
@@ -574,12 +557,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
574
557
|
version: 1.9.2
|
575
558
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
576
559
|
requirements:
|
577
|
-
- - "
|
560
|
+
- - ">="
|
578
561
|
- !ruby/object:Gem::Version
|
579
|
-
version:
|
562
|
+
version: '0'
|
580
563
|
requirements: []
|
581
564
|
rubyforge_project:
|
582
|
-
rubygems_version: 2.
|
565
|
+
rubygems_version: 2.5.1
|
583
566
|
signing_key:
|
584
567
|
specification_version: 4
|
585
568
|
summary: Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser
|
@@ -1,222 +0,0 @@
|
|
1
|
-
From eb193589a1ff12b4ef23027d5cfed5609f8c0d11 Mon Sep 17 00:00:00 2001
|
2
|
-
From: Daniel Veillard <veillard@redhat.com>
|
3
|
-
Date: Wed, 21 Nov 2012 15:36:11 +0800
|
4
|
-
Subject: [PATCH 01/14] Adding doc update related to 1.1.28
|
5
|
-
|
6
|
-
---
|
7
|
-
NEWS | 23 +++++++++++++++
|
8
|
-
doc/libxslt.xsa | 87 ++++++++++++++++++++++++++++++++++++++++++++++++++++-----
|
9
|
-
doc/news.html | 25 ++++++++++++++++-
|
10
|
-
doc/xslt.html | 25 +++++++++++++++++
|
11
|
-
4 files changed, 152 insertions(+), 8 deletions(-)
|
12
|
-
|
13
|
-
diff --git a/NEWS b/NEWS
|
14
|
-
index cbc1c5e..ff65b6a 100644
|
15
|
-
--- a/NEWS
|
16
|
-
+++ b/NEWS
|
17
|
-
@@ -8,6 +8,29 @@ See the git page at
|
18
|
-
http://git.gnome.org/browse/libxslt/
|
19
|
-
|
20
|
-
to get a description of the recent commits.Those are the public releases made:
|
21
|
-
+1.1.28: Nov 21 2012:
|
22
|
-
+ - Portability:
|
23
|
-
+ Fix python build by using libxsltmod_la_CPPFLAGS instead of AM_CPPFLAGS (Alexandre Rostovtsev),
|
24
|
-
+ configure should be more careful with linker script (Igor Pashev),
|
25
|
-
+ add gcrypt library in LIBADD, not LDFLAGS, as recommended (Roumen Petrov)
|
26
|
-
+
|
27
|
-
+ - Bug fixes:
|
28
|
-
+ Fix generate-id() to avoid generating the same ID (Stewart Brodie),
|
29
|
-
+ Fix crash with empty xsl:key/@match attribute (Nick Wellnhofer),
|
30
|
-
+ Crash when passing an uninitialized variable to document() (Nick Wellnhofer),
|
31
|
-
+ Add missing test docs to EXTRA_DIST (Nick Wellnhofer),
|
32
|
-
+ Fix regression: Default namespace not correctly used (Nick Wellnhofer)
|
33
|
-
+
|
34
|
-
+ - Cleanups:
|
35
|
-
+ Remove xsltTransStorageAdd and xsltTransStorageRemove from symbols.xml (Daniel Veillard),
|
36
|
-
+ autogen.sh cleanup (Daniel Richard),
|
37
|
-
+ consistent use of xslt processor (Roumen Petrov),
|
38
|
-
+ Add object files in tests/plugins to .gitignore (Nick Wellnhofer),
|
39
|
-
+ Fix error on bug-165 regression test (Daniel Veillard),
|
40
|
-
+ Remove xsltTransStorageAdd and xsltTransStorageRemove (Daniel Veillard),
|
41
|
-
+
|
42
|
-
+
|
43
|
-
+
|
44
|
-
1.1.27: Sep 12 2012:
|
45
|
-
- Portability:
|
46
|
-
xincludestyle wasn't protected with LIBXML_XINCLUDE_ENABLED (Michael Bonfils),
|
47
|
-
diff --git a/doc/libxslt.xsa b/doc/libxslt.xsa
|
48
|
-
index ad3aaf2..04d8c0d 100644
|
49
|
-
--- a/doc/libxslt.xsa
|
50
|
-
+++ b/doc/libxslt.xsa
|
51
|
-
@@ -8,16 +8,89 @@
|
52
|
-
</vendor>
|
53
|
-
<product id="libxslt">
|
54
|
-
<name>libxslt</name>
|
55
|
-
- <version>1.1.26</version>
|
56
|
-
- <last-release> Sep 24 2009</last-release>
|
57
|
-
+ <version>1.1.27</version>
|
58
|
-
+ <last-release> Sep 12 2012</last-release>
|
59
|
-
<info-url>http://xmlsoft.org/XSLT/</info-url>
|
60
|
-
- <changes> - Improvement:
|
61
|
-
- Add xsltProcessOneNode to exported symbols for lxml (Daniel Veillard)
|
62
|
-
+ <changes> - Portability:
|
63
|
-
+ xincludestyle wasn't protected with LIBXML_XINCLUDE_ENABLED (Michael Bonfils),
|
64
|
-
+ Portability fix for testThreads.c (IlyaS),
|
65
|
-
+ FreeBSD portability fixes (Pedro F. Giffuni),
|
66
|
-
+ check for gmtime - on mingw* hosts will enable date-time function (Roumen Petrov),
|
67
|
-
+ use only native crypto-API for mingw* hosts (Roumen Petrov),
|
68
|
-
+ autogen: Only check for libtoolize (Colin Walters),
|
69
|
-
+ minimal mingw support (Roumen Petrov),
|
70
|
-
+ configure: acconfig.h is deprecated since autoconf-2.50 (Stefan Kost),
|
71
|
-
+ Fix a small out of tree compilation issue (Hao Hu),
|
72
|
-
+ Fix python generator to not use deprecated xmllib (Daniel Veillard),
|
73
|
-
+ link python module with python library (Frederic Crozat)
|
74
|
-
+
|
75
|
-
+ - Documentation:
|
76
|
-
+ Tiny doc improvement (Daniel Veillard),
|
77
|
-
+ Various documentation fixes for docs on internals (C. M. Sperberg-McQueen)
|
78
|
-
|
79
|
-
- Bug fixes:
|
80
|
-
- Fix an idness generation problem (Daniel Veillard),
|
81
|
-
- 595612 Try to fix some locking problems (Daniel Veillard),
|
82
|
-
- Fix a crash on misformed imported stylesheets (Daniel Veillard)
|
83
|
-
+ Report errors on variable use in key (Daniel Veillard),
|
84
|
-
+ The XSLT namespace string is a constant one (Daniel Veillard),
|
85
|
-
+ Fix handling of names in xsl:attribute (Nick Wellnhofer),
|
86
|
-
+ Reserved namespaces in xsl:element and xsl:attribute (Nick Wellnhofer),
|
87
|
-
+ Null-terminate result string of cry:rc4_decrypt (Nick Wellnhofer),
|
88
|
-
+ EXSLT date normalization fix (James Muscat),
|
89
|
-
+ Exit after compilation of invalid func:result (Nick Wellnhofer),
|
90
|
-
+ Fix for EXSLT func:function (Nick Wellnhofer),
|
91
|
-
+ Rewrite EXSLT string:replace to be conformant (Nick Wellnhofer),
|
92
|
-
+ Avoid a heap use after free error (Chris Evans),
|
93
|
-
+ Fix a dictionary string usage (Chris Evans),
|
94
|
-
+ Output should not include extraneous newlines when indent is off (Laurence Rowe),
|
95
|
-
+ document('') fails to return stylesheets parsed from memory (Jason Viers),
|
96
|
-
+ xsltproc should return an error code if xinclude fails (Malcolm Purvis),
|
97
|
-
+ Forwards-compatible processing of unknown top level elements (Nick Wellnhofer),
|
98
|
-
+ Fix system-property with unknown namespace (Nick Wellnhofer),
|
99
|
-
+ Hardening of code checking node types in EXSLT (Daniel Veillard),
|
100
|
-
+ Hardening of code checking node types in various entry point (Daniel Veillard),
|
101
|
-
+ Cleanup of the pattern compilation code (Daniel Veillard),
|
102
|
-
+ Fix default template processing on namespace nodes (Daniel Veillard),
|
103
|
-
+ Fix a bug in selecting XSLT elements (Daniel Veillard),
|
104
|
-
+ Fixed bug #616839 (Daniel Mustieles),
|
105
|
-
+ Fix some case of pattern parsing errors (Abhishek Arya),
|
106
|
-
+ preproc: fix the build (Stefan Kost),
|
107
|
-
+ Fix a memory leak with xsl:number (Daniel Veillard),
|
108
|
-
+ Fix a problem with ESXLT date:add() with January (money_seshu Dronamraju),
|
109
|
-
+ Fix a memory leak if compiled with Windows locale support (Daniel Veillard),
|
110
|
-
+ Fix generate-id() to not expose object addresses (Daniel Veillard),
|
111
|
-
+ Fix curlies support in literals for non-compiled AVTs (Nick Wellnhofer),
|
112
|
-
+ Allow whitespace in xsl:variable with select (Nick Wellnhofer),
|
113
|
-
+ Small fixes to locale code (Nick Wellnhofer),
|
114
|
-
+ Fix bug 602515 (Nick Wellnhofer),
|
115
|
-
+ Fix popping of vars in xsltCompilerNodePop (Nick Wellnhofer),
|
116
|
-
+ Fix direct pattern matching bug (Nick Wellnhofer)
|
117
|
-
+
|
118
|
-
+ - Improvements:
|
119
|
-
+ Add the saxon:systemId extension (Mike Hommey),
|
120
|
-
+ Add an append mode to document output (Daniel Veillard),
|
121
|
-
+ Add new tests to EXTRA_DIST (Nick Wellnhofer),
|
122
|
-
+ Test for bug #680920 (Nick Wellnhofer),
|
123
|
-
+ fix regresson in Various "make distcheck" and other fixes (Roumen Petrov),
|
124
|
-
+ Various "make distcheck" and other fixes (Daniel Richard G),
|
125
|
-
+ Fix portability to upcoming libxml2-2.9.0 (Daniel Veillard),
|
126
|
-
+ Adding --system flag support to autogen.sh (Daniel Veillard),
|
127
|
-
+ Allow per-context override of xsltMaxDepth, introduce xsltMaxVars (Jérôme Carretero),
|
128
|
-
+ autogen.sh: Honor NOCONFIGURE environment variable (Colin Walters),
|
129
|
-
+ configure: support silent automake rules if possible (Stefan Kost),
|
130
|
-
+ Precompile patterns in xsl:number (Nick Wellnhofer),
|
131
|
-
+ Fix some warnings in the refactored code (Nick Wellnhofer),
|
132
|
-
+ Adding new generated files (Daniel Veillard),
|
133
|
-
+ profiling: add callgraph report (Stefan Kost)
|
134
|
-
+
|
135
|
-
+ - Cleanups:
|
136
|
-
+ Big space and tabs cleanup (Daniel Veillard),
|
137
|
-
+ Fix authors list (Daniel Veillard),
|
138
|
-
+ Cleanups some of the test makefiles (Daniel Richard),
|
139
|
-
+ Remove .cvsignore files which are not needed anymore (Daniel Veillard),
|
140
|
-
+ Cleanup some misplaced spaces and tabs (Daniel Veillard),
|
141
|
-
+ Augment list of ignored files (Daniel Veillard),
|
142
|
-
+ configure: remove checks for isinf and isnan as those are not used anyway (Stefan Kost),
|
143
|
-
+ Point to GIT for source code and a bit of cleanup (Daniel Veillard),
|
144
|
-
+ Get rid of specific build setup and STATIC_BINARIES (Daniel Veillard)
|
145
|
-
|
146
|
-
|
147
|
-
</changes>
|
148
|
-
diff --git a/doc/news.html b/doc/news.html
|
149
|
-
index 15ae10d..60d242e 100644
|
150
|
-
--- a/doc/news.html
|
151
|
-
+++ b/doc/news.html
|
152
|
-
@@ -9,7 +9,30 @@ H3 {font-family: Verdana,Arial,Helvetica}
|
153
|
-
A:link, A:visited, A:active { text-decoration: underline }
|
154
|
-
</style><title>News</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="GNOME2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C logo" /></a><a href="http://www.redhat.com"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/XSLT/"><img src="Libxslt-Logo-180x168.gif" alt="Made with Libxslt Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XSLT C library for GNOME</h1><h2>News</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Main Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html">Home</a></li><li><a href="intro.html">Introduction</a></li><li><a href="docs.html">Documentation</a></li><li><a href="bugs.html">Reporting bugs and getting help</a></li><li><a href="help.html">How to help</a></li><li><a href="downloads.html">Downloads</a></li><li><a href="FAQ.html">FAQ</a></li><li><a href="news.html">News</a></li><li><a href="xsltproc2.html">The xsltproc tool</a></li><li><a href="docbook.html">DocBook</a></li><li><a href="API.html">The programming API</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="internals.html">Library internals</a></li><li><a href="extensions.html">Writing extensions</a></li><li><a href="contribs.html">Contributions</a></li><li><a href="EXSLT/index.html" style="font-weight:bold">libexslt</a></li><li><a href="xslt.html">flat page</a>, <a href="site.xsl">stylesheet</a></li><li><a href="html/index.html" style="font-weight:bold">API Menu</a></li><li><a href="ChangeLog.html">ChangeLog</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="tutorial/libxslttutorial.html">Tutorial</a>,
|
155
|
-
<a href="tutorial2/libxslt_pipes.html">Tutorial2</a></li><li><a href="xsltproc.html">Man page for xsltproc</a></li><li><a href="http://mail.gnome.org/archives/xslt/">Mail archive</a></li><li><a href="http://xmlsoft.org/">XML libxml2</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://garypennington.net/libxml2/">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxslt">Bug Tracker</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXSLT">Perl XSLT bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading17">XSLT with PHP</a></li><li><a href="http://www.mod-xslt2.com/">Apache module</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://xsldbg.sourceforge.net/">Xsldbg Debugger</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><p>See the <a href="http://git.gnome.org/browse/libxslt/">git page</a>
|
156
|
-
-to get a description of the recent commits.</p><p>Those are the public releases made:</p><h3>1.1.27: Sep 12 2012</h3><ul>
|
157
|
-
+to get a description of the recent commits.</p><p>Those are the public releases made:</p><h3>1.1.28: Nov 21 2012</h3><ul>
|
158
|
-
+ <li> Portability:<br />
|
159
|
-
+ Fix python build by using libxsltmod_la_CPPFLAGS instead of AM_CPPFLAGS (Alexandre Rostovtsev),<br />
|
160
|
-
+ configure should be more careful with linker script (Igor Pashev),<br />
|
161
|
-
+ add gcrypt library in LIBADD, not LDFLAGS, as recommended (Roumen Petrov)<br />
|
162
|
-
+ </li>
|
163
|
-
+
|
164
|
-
+ <li> Bug fixes:<br />
|
165
|
-
+ Fix generate-id() to avoid generating the same ID (Stewart Brodie),<br />
|
166
|
-
+ Fix crash with empty xsl:key/@match attribute (Nick Wellnhofer),<br />
|
167
|
-
+ Crash when passing an uninitialized variable to document() (Nick Wellnhofer),<br />
|
168
|
-
+ Add missing test docs to EXTRA_DIST (Nick Wellnhofer),<br />
|
169
|
-
+ Fix regression: Default namespace not correctly used (Nick Wellnhofer)<br />
|
170
|
-
+ </li>
|
171
|
-
+
|
172
|
-
+ <li> Cleanups:<br />
|
173
|
-
+ Remove xsltTransStorageAdd and xsltTransStorageRemove from symbols.xml (Daniel Veillard),<br />
|
174
|
-
+ autogen.sh cleanup (Daniel Richard),<br />
|
175
|
-
+ consistent use of xslt processor (Roumen Petrov),<br />
|
176
|
-
+ Add object files in tests/plugins to .gitignore (Nick Wellnhofer),<br />
|
177
|
-
+ Fix error on bug-165 regression test (Daniel Veillard),<br />
|
178
|
-
+ Remove xsltTransStorageAdd and xsltTransStorageRemove (Daniel Veillard),<br />
|
179
|
-
+ </li>
|
180
|
-
+</ul><h3>1.1.27: Sep 12 2012</h3><ul>
|
181
|
-
<li> Portability:<br />
|
182
|
-
xincludestyle wasn't protected with LIBXML_XINCLUDE_ENABLED (Michael Bonfils),<br />
|
183
|
-
Portability fix for testThreads.c (IlyaS),<br />
|
184
|
-
diff --git a/doc/xslt.html b/doc/xslt.html
|
185
|
-
index f7fb595..71e208f 100644
|
186
|
-
--- a/doc/xslt.html
|
187
|
-
+++ b/doc/xslt.html
|
188
|
-
@@ -305,6 +305,31 @@ to get a description of the recent commits.</p>
|
189
|
-
|
190
|
-
<p>Those are the public releases made:</p>
|
191
|
-
|
192
|
-
+<h3>1.1.28: Nov 21 2012</h3>
|
193
|
-
+<ul>
|
194
|
-
+ <li> Portability:<br/>
|
195
|
-
+ Fix python build by using libxsltmod_la_CPPFLAGS instead of AM_CPPFLAGS (Alexandre Rostovtsev),<br/>
|
196
|
-
+ configure should be more careful with linker script (Igor Pashev),<br/>
|
197
|
-
+ add gcrypt library in LIBADD, not LDFLAGS, as recommended (Roumen Petrov)<br/>
|
198
|
-
+ </li>
|
199
|
-
+
|
200
|
-
+ <li> Bug fixes:<br/>
|
201
|
-
+ Fix generate-id() to avoid generating the same ID (Stewart Brodie),<br/>
|
202
|
-
+ Fix crash with empty xsl:key/@match attribute (Nick Wellnhofer),<br/>
|
203
|
-
+ Crash when passing an uninitialized variable to document() (Nick Wellnhofer),<br/>
|
204
|
-
+ Add missing test docs to EXTRA_DIST (Nick Wellnhofer),<br/>
|
205
|
-
+ Fix regression: Default namespace not correctly used (Nick Wellnhofer)<br/>
|
206
|
-
+ </li>
|
207
|
-
+
|
208
|
-
+ <li> Cleanups:<br/>
|
209
|
-
+ Remove xsltTransStorageAdd and xsltTransStorageRemove from symbols.xml (Daniel Veillard),<br/>
|
210
|
-
+ autogen.sh cleanup (Daniel Richard),<br/>
|
211
|
-
+ consistent use of xslt processor (Roumen Petrov),<br/>
|
212
|
-
+ Add object files in tests/plugins to .gitignore (Nick Wellnhofer),<br/>
|
213
|
-
+ Fix error on bug-165 regression test (Daniel Veillard),<br/>
|
214
|
-
+ Remove xsltTransStorageAdd and xsltTransStorageRemove (Daniel Veillard),<br/>
|
215
|
-
+ </li>
|
216
|
-
+</ul>
|
217
|
-
<h3>1.1.27: Sep 12 2012</h3>
|
218
|
-
<ul>
|
219
|
-
<li> Portability:<br/>
|
220
|
-
--
|
221
|
-
1.8.4.1
|
222
|
-
|