Re: pgsql: Fix XML tag namespace change inadvertantly missed from previous

From: Andrew Dunstan <andrew(at)dunslane(dot)net>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: pgsql-committers(at)postgresql(dot)org
Subject: Re: pgsql: Fix XML tag namespace change inadvertantly missed from previous
Date: 2007-11-25 19:23:29
Message-ID: 4749CBB1.2030900@dunslane.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

I wrote:
>
>
> Tom Lane wrote:
>>
>>
>> Aren't hexadecimal entities supposed to be case-insensitive?
>>
>>
>>
>
> The 'x' must be lower case, the hex digits can be upper or lower. The
> XML spec says:
>
> CharRef ::= '&#' [0-9]+ ';'
> | '&#x' [0-9a-fA-F]+ ';'
>
>

But I also see that the HTML spec allows for 'X' as well as 'x', so I'll
change it.

cheers

andrew

In response to

Browse pgsql-committers by date

  From Date Subject
Next Message Andrew Dunstan 2007-11-25 19:35:41 pgsql: Allow for X as well as x to be the prefix for hexadecimal
Previous Message Tom Lane 2007-11-25 19:20:49 Re: pgsql: Fix XML tag namespace change inadvertantly missed from previous