Re: Usage of Exceptions in std.xml

2012-04-19 Thread ponce
For now I'll keep using std.xml. The application only reads xml files during initialization, so it's mostly a convenience issue. I had to do a quick-and-dirty tool in a limited time frame and using kxml was much easier than std.xml. http://opticron.no-ip.org/svn/branches/kxml/

Re: Usage of Exceptions in std.xml

2012-04-19 Thread Jacob Carlborg
On 2012-04-19 18:03, Rene Zwanenburg wrote: On Monday, 16 April 2012 at 20:59:11 UTC, Nick Sabalausky wrote: "Rene Zwanenburg" wrote in message news:qsfdbygjmisksxwmz...@forum.dlang.org... Thanks. I've been trying to get D2-XML to compile for a few hours now without much luck, so that one is

Re: Usage of Exceptions in std.xml

2012-04-19 Thread Rene Zwanenburg
On Monday, 16 April 2012 at 20:59:11 UTC, Nick Sabalausky wrote: "Rene Zwanenburg" wrote in message news:qsfdbygjmisksxwmz...@forum.dlang.org... Thanks. I've been trying to get D2-XML to compile for a few hours now without much luck, so that one is out. Does anyone know another good replacem

Re: Usage of Exceptions in std.xml

2012-04-17 Thread Somedude
Le 16/04/2012 22:32, Rene Zwanenburg a écrit : > On Sunday, 15 April 2012 at 15:31:52 UTC, Jesse Phillips wrote: > Also, why replace std.xml? As far as I can tell it works fine, except > for the thrown exceptions. For performance reasons.

Re: Usage of Exceptions in std.xml

2012-04-16 Thread Nick Sabalausky
"Rene Zwanenburg" wrote in message news:qsfdbygjmisksxwmz...@forum.dlang.org... > > Thanks. I've been trying to get D2-XML to compile for a few hours now > without much luck, so that one is out. Does anyone know another good > replacement? > The one in Tango is supposed to be pretty good (and

Re: Usage of Exceptions in std.xml

2012-04-16 Thread Rene Zwanenburg
On Sunday, 15 April 2012 at 15:31:52 UTC, Jesse Phillips wrote: On Sunday, 15 April 2012 at 14:43:37 UTC, Rene Zwanenburg wrote: I'm not sure, but it appears that std.xml uses exceptions for control flow. I use VisualD for development, and Visual Studio has been configured to break on exception

Re: Usage of Exceptions in std.xml

2012-04-15 Thread Jesse Phillips
On Sunday, 15 April 2012 at 14:43:37 UTC, Rene Zwanenburg wrote: I'm not sure, but it appears that std.xml uses exceptions for control flow. I use VisualD for development, and Visual Studio has been configured to break on exceptions. This means that every time a new DocumentParser is created wi

Usage of Exceptions in std.xml

2012-04-15 Thread Rene Zwanenburg
I'm not sure, but it appears that std.xml uses exceptions for control flow. I use VisualD for development, and Visual Studio has been configured to break on exceptions. This means that every time a new DocumentParser is created with valid XML, the debugger explodes because of the thrown excepti