summaryrefslogtreecommitdiff
path: root/dev-ruby/multi_xml
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-04-27 06:58:01 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-04-27 06:58:01 +0000
commitdf2f5c02a0eb345de8d703b44dd0c79a6c43ef26 (patch)
treeab987076da3abc713a1e6cb41dac8abd5b0872f8 /dev-ruby/multi_xml
parentbbe1c5a46b8735319fd061d4c68b9bbe03947cd4 (diff)
downloadbaldeagleos-repo-df2f5c02a0eb345de8d703b44dd0c79a6c43ef26.tar.gz
baldeagleos-repo-df2f5c02a0eb345de8d703b44dd0c79a6c43ef26.tar.xz
baldeagleos-repo-df2f5c02a0eb345de8d703b44dd0c79a6c43ef26.zip
Adding metadata
Diffstat (limited to 'dev-ruby/multi_xml')
-rw-r--r--dev-ruby/multi_xml/files/multi_xml-0.6.0-ox24.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/dev-ruby/multi_xml/files/multi_xml-0.6.0-ox24.patch b/dev-ruby/multi_xml/files/multi_xml-0.6.0-ox24.patch
deleted file mode 100644
index a0568a8fb52e..000000000000
--- a/dev-ruby/multi_xml/files/multi_xml-0.6.0-ox24.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From f9d18d87c3340aa53f524524bf189b99459ab1e6 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Franti=C5=A1ek=20Dvo=C5=99=C3=A1k?= <valtri@civ.zcu.cz>
-Date: Thu, 18 May 2017 23:10:48 +0200
-Subject: [PATCH] Update for ox > 2.4.11
-
-There is more pedantic parsing of white-space characters in ox > 2.4.11. Better to set explicitly the expected skip mode.
----
- lib/multi_xml/parsers/ox.rb | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/lib/multi_xml/parsers/ox.rb b/lib/multi_xml/parsers/ox.rb
-index e52a560..dc1413e 100644
---- a/lib/multi_xml/parsers/ox.rb
-+++ b/lib/multi_xml/parsers/ox.rb
-@@ -29,7 +29,7 @@ def parse_error
-
- def parse(io)
- handler = Handler.new
-- ::Ox.sax_parse(handler, io, :convert_special => true)
-+ ::Ox.sax_parse(handler, io, convert_special: true, skip: :skip_return)
- handler.doc
- end
-