You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@abdera.apache.org by Garrett Rooney <ro...@electricjellyfish.net> on 2007/07/26 14:22:53 UTC

Re: svn commit: r559700 - in /incubator/abdera/java/trunk: core/src/main/java/org/apache/abdera/parser/ core/src/main/java/org/apache/abdera/util/ parser/src/main/java/org/apache/abdera/parser/stax/ parser/src/main/java/org/apache/abdera/parser/stax/

On 7/26/07, jmsnell@apache.org <jm...@apache.org> wrote:
> Author: jmsnell
> Date: Wed Jul 25 23:08:32 2007
> New Revision: 559700
>
> URL: http://svn.apache.org/viewvc?view=rev&rev=559700
> Log:
> The XML parser has a tendency of dying when it comes across characters that are
> not valid within XML documents. Go figure.  Unfortunately, invalid characters
> tend to occur quite frequently in syndication feeds.  This provides us with the
> simple option of filtering bad characters out at the Reader level.  Filtering is
> disabled by default and enabled using a ParserOptions property.  The characters
> to filter will be automatically detected given the XML version being used. The
> default is to assume XML 1.0

Nice!

-garrett