nokogiri 1.14.2 → 1.16.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nokogiri might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Gemfile +19 -15
- data/README.md +4 -1
- data/dependencies.yml +9 -8
- data/ext/nokogiri/extconf.rb +69 -26
- data/ext/nokogiri/html4_document.c +1 -2
- data/ext/nokogiri/html4_element_description.c +19 -14
- data/ext/nokogiri/html4_sax_parser_context.c +10 -16
- data/ext/nokogiri/html4_sax_push_parser.c +3 -3
- data/ext/nokogiri/nokogiri.c +46 -24
- data/ext/nokogiri/nokogiri.h +23 -5
- data/ext/nokogiri/test_global_handlers.c +1 -1
- data/ext/nokogiri/xml_attr.c +1 -1
- data/ext/nokogiri/xml_cdata.c +30 -17
- data/ext/nokogiri/xml_comment.c +1 -1
- data/ext/nokogiri/xml_document.c +113 -25
- data/ext/nokogiri/xml_document_fragment.c +1 -1
- data/ext/nokogiri/xml_dtd.c +1 -1
- data/ext/nokogiri/xml_element_content.c +32 -29
- data/ext/nokogiri/xml_element_decl.c +5 -5
- data/ext/nokogiri/xml_encoding_handler.c +12 -4
- data/ext/nokogiri/xml_entity_reference.c +1 -1
- data/ext/nokogiri/xml_namespace.c +11 -16
- data/ext/nokogiri/xml_node.c +13 -16
- data/ext/nokogiri/xml_node_set.c +125 -105
- data/ext/nokogiri/xml_processing_instruction.c +1 -1
- data/ext/nokogiri/xml_reader.c +61 -74
- data/ext/nokogiri/xml_relax_ng.c +66 -79
- data/ext/nokogiri/xml_sax_parser.c +24 -5
- data/ext/nokogiri/xml_sax_parser_context.c +50 -25
- data/ext/nokogiri/xml_sax_push_parser.c +30 -9
- data/ext/nokogiri/xml_schema.c +94 -115
- data/ext/nokogiri/xml_syntax_error.c +3 -3
- data/ext/nokogiri/xml_text.c +26 -13
- data/ext/nokogiri/xml_xpath_context.c +153 -83
- data/ext/nokogiri/xslt_stylesheet.c +111 -53
- data/gumbo-parser/Makefile +18 -0
- data/gumbo-parser/src/error.c +8 -4
- data/gumbo-parser/src/foreign_attrs.c +13 -14
- data/gumbo-parser/src/foreign_attrs.gperf +1 -1
- data/gumbo-parser/src/parser.c +21 -5
- data/gumbo-parser/src/tokenizer.c +1 -0
- data/lib/nokogiri/css/parser_extras.rb +1 -1
- data/lib/nokogiri/css/xpath_visitor.rb +3 -23
- data/lib/nokogiri/extension.rb +1 -1
- data/lib/nokogiri/html4/document.rb +1 -1
- data/lib/nokogiri/html4/document_fragment.rb +1 -1
- data/lib/nokogiri/html4/element_description_defaults.rb +1821 -353
- data/lib/nokogiri/html4/encoding_reader.rb +1 -1
- data/lib/nokogiri/html5/document_fragment.rb +1 -1
- data/lib/nokogiri/html5/node.rb +5 -0
- data/lib/nokogiri/html5.rb +0 -63
- data/lib/nokogiri/jruby/nokogiri_jars.rb +9 -9
- data/lib/nokogiri/version/constant.rb +1 -1
- data/lib/nokogiri/version/info.rb +6 -5
- data/lib/nokogiri/xml/attr.rb +2 -2
- data/lib/nokogiri/xml/attribute_decl.rb +4 -2
- data/lib/nokogiri/xml/document.rb +4 -5
- data/lib/nokogiri/xml/document_fragment.rb +3 -3
- data/lib/nokogiri/xml/element_content.rb +10 -2
- data/lib/nokogiri/xml/element_decl.rb +4 -2
- data/lib/nokogiri/xml/entity_decl.rb +4 -2
- data/lib/nokogiri/xml/namespace.rb +1 -2
- data/lib/nokogiri/xml/node/save_options.rb +8 -0
- data/lib/nokogiri/xml/node.rb +53 -37
- data/lib/nokogiri/xml/node_set.rb +3 -3
- data/lib/nokogiri/xml/pp/node.rb +23 -12
- data/lib/nokogiri/xml/reader.rb +10 -9
- data/lib/nokogiri/xml/sax/document.rb +1 -1
- data/lib/nokogiri/xml/searchable.rb +21 -13
- data/lib/nokogiri/xml/syntax_error.rb +1 -1
- data/lib/nokogiri/xml.rb +1 -1
- data/lib/nokogiri/xslt/stylesheet.rb +29 -7
- data/lib/nokogiri/xslt.rb +74 -4
- data/lib/nokogiri.rb +13 -5
- data/lib/xsd/xmlparser/nokogiri.rb +1 -1
- data/patches/libxml2/0010-update-config.guess-and-config.sub-for-libxml2.patch +224 -0
- data/patches/libxml2/0011-rip-out-libxml2-s-libc_single_threaded-support.patch +30 -0
- data/patches/libxslt/0001-update-config.guess-and-config.sub-for-libxslt.patch +224 -0
- data/ports/archives/libxml2-2.12.8.tar.xz +0 -0
- data/ports/archives/libxslt-1.1.39.tar.xz +0 -0
- metadata +16 -12
- data/patches/libxslt/0001-update-automake-files-for-arm64.patch +0 -3037
- data/ports/archives/libxml2-2.10.3.tar.xz +0 -0
- data/ports/archives/libxslt-1.1.37.tar.xz +0 -0
@@ -0,0 +1,224 @@
|
|
1
|
+
From 66ee2dcef0e99cd9c2d4f9f1115fb907f1ea6e4d Mon Sep 17 00:00:00 2001
|
2
|
+
From: Mike Dalessio <mike.dalessio@gmail.com>
|
3
|
+
Date: Mon, 8 May 2023 08:42:47 -0400
|
4
|
+
Subject: [PATCH] update config.guess and config.sub for libxslt
|
5
|
+
|
6
|
+
curl -sL -o config.guess 'https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD'
|
7
|
+
curl -sL -o config.sub 'https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD'
|
8
|
+
---
|
9
|
+
config.guess | 46 +++++++++++++++++++++++++++++++++-------------
|
10
|
+
config.sub | 35 ++++++++++++++++++++++++++---------
|
11
|
+
2 files changed, 59 insertions(+), 22 deletions(-)
|
12
|
+
|
13
|
+
diff --git a/config.guess b/config.guess
|
14
|
+
index 7f76b622..69188da7 100755
|
15
|
+
--- a/config.guess
|
16
|
+
+++ b/config.guess
|
17
|
+
@@ -1,10 +1,10 @@
|
18
|
+
#! /bin/sh
|
19
|
+
# Attempt to guess a canonical system name.
|
20
|
+
-# Copyright 1992-2022 Free Software Foundation, Inc.
|
21
|
+
+# Copyright 1992-2023 Free Software Foundation, Inc.
|
22
|
+
|
23
|
+
# shellcheck disable=SC2006,SC2268 # see below for rationale
|
24
|
+
|
25
|
+
-timestamp='2022-01-09'
|
26
|
+
+timestamp='2023-01-01'
|
27
|
+
|
28
|
+
# This file is free software; you can redistribute it and/or modify it
|
29
|
+
# under the terms of the GNU General Public License as published by
|
30
|
+
@@ -60,7 +60,7 @@ version="\
|
31
|
+
GNU config.guess ($timestamp)
|
32
|
+
|
33
|
+
Originally written by Per Bothner.
|
34
|
+
-Copyright 1992-2022 Free Software Foundation, Inc.
|
35
|
+
+Copyright 1992-2023 Free Software Foundation, Inc.
|
36
|
+
|
37
|
+
This is free software; see the source for copying conditions. There is NO
|
38
|
+
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
|
39
|
+
@@ -966,6 +966,12 @@ EOF
|
40
|
+
GNU_REL=`echo "$UNAME_RELEASE" | sed -e 's/[-(].*//'`
|
41
|
+
GUESS=$UNAME_MACHINE-unknown-$GNU_SYS$GNU_REL-$LIBC
|
42
|
+
;;
|
43
|
+
+ x86_64:[Mm]anagarm:*:*|i?86:[Mm]anagarm:*:*)
|
44
|
+
+ GUESS="$UNAME_MACHINE-pc-managarm-mlibc"
|
45
|
+
+ ;;
|
46
|
+
+ *:[Mm]anagarm:*:*)
|
47
|
+
+ GUESS="$UNAME_MACHINE-unknown-managarm-mlibc"
|
48
|
+
+ ;;
|
49
|
+
*:Minix:*:*)
|
50
|
+
GUESS=$UNAME_MACHINE-unknown-minix
|
51
|
+
;;
|
52
|
+
@@ -1036,7 +1042,7 @@ EOF
|
53
|
+
k1om:Linux:*:*)
|
54
|
+
GUESS=$UNAME_MACHINE-unknown-linux-$LIBC
|
55
|
+
;;
|
56
|
+
- loongarch32:Linux:*:* | loongarch64:Linux:*:* | loongarchx32:Linux:*:*)
|
57
|
+
+ loongarch32:Linux:*:* | loongarch64:Linux:*:*)
|
58
|
+
GUESS=$UNAME_MACHINE-unknown-linux-$LIBC
|
59
|
+
;;
|
60
|
+
m32r*:Linux:*:*)
|
61
|
+
@@ -1151,16 +1157,27 @@ EOF
|
62
|
+
;;
|
63
|
+
x86_64:Linux:*:*)
|
64
|
+
set_cc_for_build
|
65
|
+
+ CPU=$UNAME_MACHINE
|
66
|
+
LIBCABI=$LIBC
|
67
|
+
if test "$CC_FOR_BUILD" != no_compiler_found; then
|
68
|
+
- if (echo '#ifdef __ILP32__'; echo IS_X32; echo '#endif') | \
|
69
|
+
- (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
|
70
|
+
- grep IS_X32 >/dev/null
|
71
|
+
- then
|
72
|
+
- LIBCABI=${LIBC}x32
|
73
|
+
- fi
|
74
|
+
+ ABI=64
|
75
|
+
+ sed 's/^ //' << EOF > "$dummy.c"
|
76
|
+
+ #ifdef __i386__
|
77
|
+
+ ABI=x86
|
78
|
+
+ #else
|
79
|
+
+ #ifdef __ILP32__
|
80
|
+
+ ABI=x32
|
81
|
+
+ #endif
|
82
|
+
+ #endif
|
83
|
+
+EOF
|
84
|
+
+ cc_set_abi=`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^ABI' | sed 's, ,,g'`
|
85
|
+
+ eval "$cc_set_abi"
|
86
|
+
+ case $ABI in
|
87
|
+
+ x86) CPU=i686 ;;
|
88
|
+
+ x32) LIBCABI=${LIBC}x32 ;;
|
89
|
+
+ esac
|
90
|
+
fi
|
91
|
+
- GUESS=$UNAME_MACHINE-pc-linux-$LIBCABI
|
92
|
+
+ GUESS=$CPU-pc-linux-$LIBCABI
|
93
|
+
;;
|
94
|
+
xtensa*:Linux:*:*)
|
95
|
+
GUESS=$UNAME_MACHINE-unknown-linux-$LIBC
|
96
|
+
@@ -1367,8 +1384,11 @@ EOF
|
97
|
+
BePC:Haiku:*:*) # Haiku running on Intel PC compatible.
|
98
|
+
GUESS=i586-pc-haiku
|
99
|
+
;;
|
100
|
+
- x86_64:Haiku:*:*)
|
101
|
+
- GUESS=x86_64-unknown-haiku
|
102
|
+
+ ppc:Haiku:*:*) # Haiku running on Apple PowerPC
|
103
|
+
+ GUESS=powerpc-apple-haiku
|
104
|
+
+ ;;
|
105
|
+
+ *:Haiku:*:*) # Haiku modern gcc (not bound by BeOS compat)
|
106
|
+
+ GUESS=$UNAME_MACHINE-unknown-haiku
|
107
|
+
;;
|
108
|
+
SX-4:SUPER-UX:*:*)
|
109
|
+
GUESS=sx4-nec-superux$UNAME_RELEASE
|
110
|
+
diff --git a/config.sub b/config.sub
|
111
|
+
index dba16e84..de4259e4 100755
|
112
|
+
--- a/config.sub
|
113
|
+
+++ b/config.sub
|
114
|
+
@@ -1,10 +1,10 @@
|
115
|
+
#! /bin/sh
|
116
|
+
# Configuration validation subroutine script.
|
117
|
+
-# Copyright 1992-2022 Free Software Foundation, Inc.
|
118
|
+
+# Copyright 1992-2023 Free Software Foundation, Inc.
|
119
|
+
|
120
|
+
# shellcheck disable=SC2006,SC2268 # see below for rationale
|
121
|
+
|
122
|
+
-timestamp='2022-01-03'
|
123
|
+
+timestamp='2023-01-21'
|
124
|
+
|
125
|
+
# This file is free software; you can redistribute it and/or modify it
|
126
|
+
# under the terms of the GNU General Public License as published by
|
127
|
+
@@ -76,7 +76,7 @@ Report bugs and patches to <config-patches@gnu.org>."
|
128
|
+
version="\
|
129
|
+
GNU config.sub ($timestamp)
|
130
|
+
|
131
|
+
-Copyright 1992-2022 Free Software Foundation, Inc.
|
132
|
+
+Copyright 1992-2023 Free Software Foundation, Inc.
|
133
|
+
|
134
|
+
This is free software; see the source for copying conditions. There is NO
|
135
|
+
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
|
136
|
+
@@ -145,7 +145,7 @@ case $1 in
|
137
|
+
nto-qnx* | linux-* | uclinux-uclibc* \
|
138
|
+
| uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* \
|
139
|
+
| netbsd*-eabi* | kopensolaris*-gnu* | cloudabi*-eabi* \
|
140
|
+
- | storm-chaos* | os2-emx* | rtmk-nova*)
|
141
|
+
+ | storm-chaos* | os2-emx* | rtmk-nova* | managarm-*)
|
142
|
+
basic_machine=$field1
|
143
|
+
basic_os=$maybe_os
|
144
|
+
;;
|
145
|
+
@@ -1075,7 +1075,7 @@ case $cpu-$vendor in
|
146
|
+
pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
|
147
|
+
cpu=i586
|
148
|
+
;;
|
149
|
+
- pentiumpro-* | p6-* | 6x86-* | athlon-* | athalon_*-*)
|
150
|
+
+ pentiumpro-* | p6-* | 6x86-* | athlon-* | athlon_*-*)
|
151
|
+
cpu=i686
|
152
|
+
;;
|
153
|
+
pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*)
|
154
|
+
@@ -1207,7 +1207,7 @@ case $cpu-$vendor in
|
155
|
+
| k1om \
|
156
|
+
| le32 | le64 \
|
157
|
+
| lm32 \
|
158
|
+
- | loongarch32 | loongarch64 | loongarchx32 \
|
159
|
+
+ | loongarch32 | loongarch64 \
|
160
|
+
| m32c | m32r | m32rle \
|
161
|
+
| m5200 | m68000 | m680[012346]0 | m68360 | m683?2 | m68k \
|
162
|
+
| m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x \
|
163
|
+
@@ -1341,6 +1341,10 @@ EOF
|
164
|
+
kernel=linux
|
165
|
+
os=`echo "$basic_os" | sed -e 's|linux|gnu|'`
|
166
|
+
;;
|
167
|
+
+ managarm*)
|
168
|
+
+ kernel=managarm
|
169
|
+
+ os=`echo "$basic_os" | sed -e 's|managarm|mlibc|'`
|
170
|
+
+ ;;
|
171
|
+
*)
|
172
|
+
kernel=
|
173
|
+
os=$basic_os
|
174
|
+
@@ -1754,7 +1758,7 @@ case $os in
|
175
|
+
| onefs* | tirtos* | phoenix* | fuchsia* | redox* | bme* \
|
176
|
+
| midnightbsd* | amdhsa* | unleashed* | emscripten* | wasi* \
|
177
|
+
| nsk* | powerunix* | genode* | zvmoe* | qnx* | emx* | zephyr* \
|
178
|
+
- | fiwix* )
|
179
|
+
+ | fiwix* | mlibc* )
|
180
|
+
;;
|
181
|
+
# This one is extra strict with allowed versions
|
182
|
+
sco3.2v2 | sco3.2v[4-9]* | sco5v6*)
|
183
|
+
@@ -1762,6 +1766,9 @@ case $os in
|
184
|
+
;;
|
185
|
+
none)
|
186
|
+
;;
|
187
|
+
+ kernel* )
|
188
|
+
+ # Restricted further below
|
189
|
+
+ ;;
|
190
|
+
*)
|
191
|
+
echo Invalid configuration \`"$1"\': OS \`"$os"\' not recognized 1>&2
|
192
|
+
exit 1
|
193
|
+
@@ -1772,16 +1779,26 @@ esac
|
194
|
+
# (given a valid OS), if there is a kernel.
|
195
|
+
case $kernel-$os in
|
196
|
+
linux-gnu* | linux-dietlibc* | linux-android* | linux-newlib* \
|
197
|
+
- | linux-musl* | linux-relibc* | linux-uclibc* )
|
198
|
+
+ | linux-musl* | linux-relibc* | linux-uclibc* | linux-mlibc* )
|
199
|
+
;;
|
200
|
+
uclinux-uclibc* )
|
201
|
+
;;
|
202
|
+
- -dietlibc* | -newlib* | -musl* | -relibc* | -uclibc* )
|
203
|
+
+ managarm-mlibc* | managarm-kernel* )
|
204
|
+
+ ;;
|
205
|
+
+ -dietlibc* | -newlib* | -musl* | -relibc* | -uclibc* | -mlibc* )
|
206
|
+
# These are just libc implementations, not actual OSes, and thus
|
207
|
+
# require a kernel.
|
208
|
+
echo "Invalid configuration \`$1': libc \`$os' needs explicit kernel." 1>&2
|
209
|
+
exit 1
|
210
|
+
;;
|
211
|
+
+ -kernel* )
|
212
|
+
+ echo "Invalid configuration \`$1': \`$os' needs explicit kernel." 1>&2
|
213
|
+
+ exit 1
|
214
|
+
+ ;;
|
215
|
+
+ *-kernel* )
|
216
|
+
+ echo "Invalid configuration \`$1': \`$kernel' does not support \`$os'." 1>&2
|
217
|
+
+ exit 1
|
218
|
+
+ ;;
|
219
|
+
kfreebsd*-gnu* | kopensolaris*-gnu*)
|
220
|
+
;;
|
221
|
+
vxworks-simlinux | vxworks-simwindows | vxworks-spe)
|
222
|
+
--
|
223
|
+
2.40.1
|
224
|
+
|
Binary file
|
Binary file
|
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.
|
4
|
+
version: 1.16.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Dalessio
|
@@ -17,10 +17,10 @@ authors:
|
|
17
17
|
- Sergio Arbeo
|
18
18
|
- Timothy Elliott
|
19
19
|
- Nobuyoshi Nakada
|
20
|
-
autorequire:
|
20
|
+
autorequire:
|
21
21
|
bindir: bin
|
22
22
|
cert_chain: []
|
23
|
-
date:
|
23
|
+
date: 2024-06-13 00:00:00.000000000 Z
|
24
24
|
dependencies:
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: mini_portile2
|
@@ -28,14 +28,15 @@ dependencies:
|
|
28
28
|
requirements:
|
29
29
|
- - "~>"
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 2.8.
|
31
|
+
version: 2.8.2
|
32
32
|
type: :runtime
|
33
33
|
prerelease: false
|
34
34
|
version_requirements: !ruby/object:Gem::Requirement
|
35
35
|
requirements:
|
36
36
|
- - "~>"
|
37
37
|
- !ruby/object:Gem::Version
|
38
|
-
version: 2.8.
|
38
|
+
version: 2.8.2
|
39
|
+
force_ruby_platform: false
|
39
40
|
- !ruby/object:Gem::Dependency
|
40
41
|
name: racc
|
41
42
|
requirement: !ruby/object:Gem::Requirement
|
@@ -50,6 +51,7 @@ dependencies:
|
|
50
51
|
- - "~>"
|
51
52
|
- !ruby/object:Gem::Version
|
52
53
|
version: '1.4'
|
54
|
+
force_ruby_platform: false
|
53
55
|
description: |
|
54
56
|
Nokogiri (鋸) makes it easy and painless to work with XML and HTML from Ruby. It provides a
|
55
57
|
sensible, easy-to-understand API for reading, writing, modifying, and querying documents. It is
|
@@ -267,9 +269,11 @@ files:
|
|
267
269
|
- patches/libxml2/0002-Update-entities-to-remove-handling-of-ssi.patch
|
268
270
|
- patches/libxml2/0003-libxml2.la-is-in-top_builddir.patch
|
269
271
|
- patches/libxml2/0009-allow-wildcard-namespaces.patch
|
270
|
-
- patches/
|
271
|
-
-
|
272
|
-
-
|
272
|
+
- patches/libxml2/0010-update-config.guess-and-config.sub-for-libxml2.patch
|
273
|
+
- patches/libxml2/0011-rip-out-libxml2-s-libc_single_threaded-support.patch
|
274
|
+
- patches/libxslt/0001-update-config.guess-and-config.sub-for-libxslt.patch
|
275
|
+
- ports/archives/libxml2-2.12.8.tar.xz
|
276
|
+
- ports/archives/libxslt-1.1.39.tar.xz
|
273
277
|
homepage: https://nokogiri.org
|
274
278
|
licenses:
|
275
279
|
- MIT
|
@@ -280,7 +284,7 @@ metadata:
|
|
280
284
|
changelog_uri: https://nokogiri.org/CHANGELOG.html
|
281
285
|
source_code_uri: https://github.com/sparklemotion/nokogiri
|
282
286
|
rubygems_mfa_required: 'true'
|
283
|
-
post_install_message:
|
287
|
+
post_install_message:
|
284
288
|
rdoc_options:
|
285
289
|
- "--main"
|
286
290
|
- README.md
|
@@ -290,15 +294,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
290
294
|
requirements:
|
291
295
|
- - ">="
|
292
296
|
- !ruby/object:Gem::Version
|
293
|
-
version:
|
297
|
+
version: 3.0.0
|
294
298
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
295
299
|
requirements:
|
296
300
|
- - ">="
|
297
301
|
- !ruby/object:Gem::Version
|
298
302
|
version: '0'
|
299
303
|
requirements: []
|
300
|
-
rubygems_version: 3.
|
301
|
-
signing_key:
|
304
|
+
rubygems_version: 3.5.11
|
305
|
+
signing_key:
|
302
306
|
specification_version: 4
|
303
307
|
summary: Nokogiri (鋸) makes it easy and painless to work with XML and HTML from Ruby.
|
304
308
|
test_files: []
|