saxdotnet-notify Mailing List for SAX for .NET
Brought to you by:
jeffrafter,
kwaclaw
You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: SourceForge.net <no...@so...> - 2005-03-29 21:45:45
|
Bugs item #1172597, was opened at 2005-03-29 10:45 Message generated for change (Comment added) made by kwaclaw You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=611032&aid=1172597&group_id=95340 Category: None Group: None Status: Open >Resolution: Accepted Priority: 5 Submitted By: Elliotte Rusty Harold (elharo) >Assigned to: Jeff Rafter (jeffrafter) Summary: XML, not Xml Initial Comment: The doc comments in AElfred's XZmlparser class, and possibly elsewhere consistently refer to "Xml documents". This is miscapitalized. It should be "XML documents" even if the class names use the mixed case form. Honestly, that bothers me too, but it seems more conventional in the .NET world. However. "Xml" in documentation is just plain wrong. ---------------------------------------------------------------------- >Comment By: Karl Waclawek (kwaclaw) Date: 2005-03-29 16:45 Message: Logged In: YES user_id=290026 You are right about the first point. However, the naming standards in the C#/.NET world would not allow the use of more than two consecutive capitals for any names (in source code). Assigned to Jeff. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=611032&aid=1172597&group_id=95340 |
From: SourceForge.net <no...@so...> - 2005-03-29 15:45:37
|
Bugs item #1172597, was opened at 2005-03-29 10:45 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=611032&aid=1172597&group_id=95340 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Elliotte Rusty Harold (elharo) Assigned to: Nobody/Anonymous (nobody) Summary: XML, not Xml Initial Comment: The doc comments in AElfred's XZmlparser class, and possibly elsewhere consistently refer to "Xml documents". This is miscapitalized. It should be "XML documents" even if the class names use the mixed case form. Honestly, that bothers me too, but it seems more conventional in the .NET world. However. "Xml" in documentation is just plain wrong. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=611032&aid=1172597&group_id=95340 |
From: Karl W. <ka...@wa...> - 2004-12-07 17:48:53
|
We have set up a new mailing list for technical discussions about the SAX for .NET API design and implementations. This is not meant as a help or support list. E-mail to Sax...@li.... Subscribe at https://lists.sourceforge.net/lists/listinfo/saxdotnet-devel. Karl |
From: Geoff C. <gc...@gm...> - 2004-11-03 22:39:55
|
I'm having a problem with SaxDriver.declarePrefix. If an Element is of the form <xmlns="" ...> I get an exception thrown because the uri parameter is null. The following patch fixes the problem, although I'm not sure if it is the correct solution. -geoff Index: SaxDriver.cs =================================================================== RCS file: /cvsroot/saxdotnet/AElfred/SaxDriver.cs,v retrieving revision 1.7 diff -u -r1.7 SaxDriver.cs --- SaxDriver.cs 21 Oct 2004 18:12:03 -0000 1.7 +++ SaxDriver.cs 3 Nov 2004 22:38:09 -0000 @@ -719,16 +719,21 @@ } private void declarePrefix(string prefix, string uri) { - int index = uri.IndexOf(':'); - - // many versions of nwalsh docbook stylesheets - // have bogus URLs; so this can't be an error... - if(index < 1 && uri.Length != 0) - warn("relative URI for namespace: " + uri); - + if (uri != null) + { + int index = uri.IndexOf(':'); + + // many versions of nwalsh docbook stylesheets + // have bogus URLs; so this can't be an error... + if(index < 1 && uri.Length != 0) + warn("relative URI for namespace: " + uri); + } // FIXME: char [0] must be ascii alpha; chars [1..index] // must be ascii alphanumeric or in "+-." [RFC 2396] - uri = string.Intern(uri); + if (uri != null) + { + uri = string.Intern(uri); + } prefixStack.AddMapping(prefix, uri); contentHandler.StartPrefixMapping(prefix, uri); } |
From: <ben...@id...> - 2004-05-25 09:16:47
|
Dear Open Source developer I am doing a research project on "Fun and Software Development" in which I kindly invite you to participate. You will find the online survey under http://fasd.ethz.ch/qsf/. The questionnaire consists of 53 questions and you will need about 15 minutes to complete it. With the FASD project (Fun and Software Development) we want to define the motivational significance of fun when software developers decide to engage in Open Source projects. What is special about our research project is that a similar survey is planned with software developers in commercial firms. This procedure allows the immediate comparison between the involved individuals and the conditions of production of these two development models. Thus we hope to obtain substantial new insights to the phenomenon of Open Source Development. With many thanks for your participation, Benno Luthiger PS: The results of the survey will be published under http://www.isu.unizh.ch/fuehrung/blprojects/FASD/. We have set up the mailing list fa...@we... for this study. Please see http://fasd.ethz.ch/qsf/mailinglist_en.html for registration to this mailing list. _______________________________________________________________________ Benno Luthiger Swiss Federal Institute of Technology Zurich 8092 Zurich Mail: benno.luthiger(at)id.ethz.ch _______________________________________________________________________ |
From: Karl W. <ka...@wa...> - 2004-05-16 18:07:51
|
Checking if mailing list works. |