Hi guys

It would be supercool to have a chapter on the XML package.��
Does any of you have the knowledge to do it?
I do not have it.��

Stef


On Sat, May 6, 2017 at 9:51 AM, Udo Schneider <udo.schneider@homeaddress.de> wrote:
Perfect! Thank you very very much!

Am 05/05/17 um 19:28 schrieb monty:

This should be fixed now. Thanks for the bug report.

Sent: Wednesday, May 03, 2017 at 4:44 PM
From: "Udo Schneider" <udo.schneider@homeaddress.de>
To: pharo-users@lists.pharo.org
Subject: [Pharo-users] XMLHTMLParser Entity Handling oddity

All,

I'm hitting an interesting issue with XMLHTMLParser and I'm not even
sure if this is a bug or intended behaviour. Given an HTML Entity in a
String it's resolved or quoted depending on the tag (header or section tag):

doc := XMLHTMLParser parse:
'<html><head><title>��</title></head><body>��</body></html>'.
(doc findElementNamed: 'title') contentString. "'��'"
(doc findElementNamed: 'body') contentString.�� "'��'"

In my understanding and according to
https://www.w3.org/TR/html401/struct/global.html#h-7.4.2 Entities in the
title tag are allowed and should IMHO be resolved.

So both should return '��' in this case.

Any pointers?

CU,

Udo