Re: Scribus filter / c# advice needed

2006-12-02 Thread D Bera
 Thanks for the advice, although I just tried running the filter on an
 old scribus file and it seems the XmlReader is quite happy to process
 xml files that are malformed in this way so it looks like there's no
 need for buffering.

Are sure that this it not a bug (in mono implementation) that
XmlReader processes malformed files w/out any problem ? What does the
spec or msdn documentation say (you can also test on a .Net windows
machine) ?

- dBera

-- 
-
Debajyoti Bera @ http://dtecht.blogspot.com
beagle / KDE fan
Mandriva / Inspiron-1100 user
___
Dashboard-hackers mailing list
Dashboard-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/dashboard-hackers


Re: Scribus filter / c# advice needed

2006-12-02 Thread D Bera
 On further inspection it seems to be because I am using the .Net 1.0
 method of creating an XmlTextReader which does not enable character
 checking:

 XmlTextReader reader = new XmlTextReader(thestream);

 msdn says this is deprecated in .Net 2.0 in favour of:

 XmlReader r = XmlReader.Create(thestream);

 using the new method character checking seems to be enabled by
 default. So its not a bug in mono its just that the XmlReader is
 slightly lax by default.

There is a plan to move beagle to .Net-2.0 pretty soon (this or next
release). Would the filter break in that case ?

-- 
-
Debajyoti Bera @ http://dtecht.blogspot.com
beagle / KDE fan
Mandriva / Inspiron-1100 user
___
Dashboard-hackers mailing list
Dashboard-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/dashboard-hackers