* [bug#39410] [PATCH] gnu: netsurf: Fix entity parsing.
@ 2020-02-04 5:06 Eric Bavier
2020-02-04 11:02 ` Efraim Flashner
0 siblings, 1 reply; 3+ messages in thread
From: Eric Bavier @ 2020-02-04 5:06 UTC (permalink / raw)
To: 39410; +Cc: Eric Bavier
From: Eric Bavier <bavier@posteo.net>
From: Eric Bavier <bavier@member.fsf.org>
Follow-up to commit 31afa654c58cd7aa8bd11a771fa6eabcd766d443.
* gnu/packages/web.scm (netsurf)[arguments]: In 'adjust-welcome' phase, ensure
html entities are parsed and find their way back to the output.
---
gnu/packages/web.scm | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index f6ae958ae3..60fd5cfd0f 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -6,7 +6,7 @@
;;; Copyright © 2015, 2016, 2017, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2018 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
-;;; Copyright © 2015, 2016, 2017, 2018, 2019 Eric Bavier <bavier@member.fsf.org>
+;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020 Eric Bavier <bavier@posteo.net>
;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
;;; Copyright © 2016 Sou Bunnbu <iyzsong@gmail.com>
;;; Copyright © 2016 Jelle Licht <jlicht@fsfe.org>
@@ -5075,12 +5075,19 @@ w3c webidl files and a binding configuration file.")
;; Leave the DOCTYPE header as is.
(display (read-line in 'concat) out)
(sxml->xml
- (let rec ((sxml (xml->sxml in)))
+ (let rec ((sxml (xml->sxml in
+ #:default-entity-handler
+ (lambda (port name)
+ (string-append "<ENTITY>"
+ (symbol->string name)
+ "</ENTITY>")))))
;; We'd like to use sxml-match here, but it can't
;; match against generic tag symbols...
(match sxml
(`(div (@ (class "links")) . ,rest)
'())
+ (`(ENTITY ,ent)
+ `(*ENTITY* ,ent))
((x ...)
(map rec x))
(x x)))
--
2.25.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [bug#39410] [PATCH] gnu: netsurf: Fix entity parsing.
2020-02-04 5:06 [bug#39410] [PATCH] gnu: netsurf: Fix entity parsing Eric Bavier
@ 2020-02-04 11:02 ` Efraim Flashner
2020-02-04 12:25 ` bug#39410: " Efraim Flashner
0 siblings, 1 reply; 3+ messages in thread
From: Efraim Flashner @ 2020-02-04 11:02 UTC (permalink / raw)
To: Eric Bavier; +Cc: 39410, Eric Bavier
[-- Attachment #1: Type: text/plain, Size: 329 bytes --]
I assume this fixes building netsurf on master. Any idea why netsurf
builds on core-updates without this patch?
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* bug#39410: [PATCH] gnu: netsurf: Fix entity parsing.
2020-02-04 11:02 ` Efraim Flashner
@ 2020-02-04 12:25 ` Efraim Flashner
0 siblings, 0 replies; 3+ messages in thread
From: Efraim Flashner @ 2020-02-04 12:25 UTC (permalink / raw)
To: Eric Bavier; +Cc: 39410-done, Eric Bavier
[-- Attachment #1: Type: text/plain, Size: 501 bytes --]
On Tue, Feb 04, 2020 at 01:02:28PM +0200, Efraim Flashner wrote:
> I assume this fixes building netsurf on master. Any idea why netsurf
> builds on core-updates without this patch?
I take it back, with the recent merging of master into core-updates
netsurf failed to build for me.
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-02-04 12:27 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-02-04 5:06 [bug#39410] [PATCH] gnu: netsurf: Fix entity parsing Eric Bavier
2020-02-04 11:02 ` Efraim Flashner
2020-02-04 12:25 ` bug#39410: " Efraim Flashner
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).