Pavel Karassev wrote:
> Dear Stefanu,
>
> I fix bug in xerces 1.3.0 library that prevents maping characters to
> HTML entities.
>
> I wish this fix to be included in production version.
>
> Kind regards,
>
> Pavel Karassev
>
>
>
> 412a413
> >
> 414c415
> < defineEntity( name, (char) code );
> ---
> > defineEntity( name, code );
> 443c444
> < * @param value The entity's value
> ---
> > * @param value The entity's value (should be int by Pavel Karassev)
> 445c446
> < private static void defineEntity( String name, char value )
> ---
> > private static void defineEntity( String name, int value )
> 448c449
> < _byName.put( name, new Character( value ) );
> ---
> > _byName.put( name, new Character( (char)value ) );
>
>
Can you guys take care of this, please.
Thanks.
Stefano.
---------------------------------------------------------------------
To unsubscribe, e-mail: cocoon-dev-unsubscribe@xml.apache.org
For additional commands, email: cocoon-dev-help@xml.apache.org
|