From sven at beta9.be Fri Jun 11 13:33:33 2004 From: sven at beta9.be (Sven Van Caekenberghe) Date: Fri, 11 Jun 2004 15:33:33 +0200 Subject: [s-xml-devel] First release candidate Message-ID: Brian, Rudi, I did some more updates to s-xml and made a first release candidate, please tell me what you think. I tried to do a better job documenting the SSAX parser interface and added some more examples. I do have a minor and probably benign problem with CVS (when commiting): [sven at voyager:~/apps/clnet/s-xml/public_html]$ cvs commit cvs commit: Examining . Checking in index.html; /project/s-xml/cvsroot/public_html/index.html,v <-- index.html new revision: 1.4; previous revision: 1.3 done cvs server: warning: cannot write to history file /project/s-xml/cvsroot/CVSROOT/history: Permission denied But as far as I can see the permissions on that file are OK (group s-xml writable). Sven PS: It is probably best to also start using the mailing lists ;-) From rudi at constantly.at Sun Jun 13 14:22:41 2004 From: rudi at constantly.at (Rudi Schlatte) Date: Sun, 13 Jun 2004 16:22:41 +0200 Subject: [s-xml-devel] Re: First release candidate In-Reply-To: References: Message-ID: <217B9E98-BD45-11D8-9065-000A95717856@constantly.at> On 11. Jun 2004, at 15:33, Sven Van Caekenberghe wrote: > I did some more updates to s-xml and made a first release candidate, > please tell me what you think. > I tried to do a better job documenting the SSAX parser interface and > added some more examples. I have not looked in detail, but IIRC the code was clean enough for a release candidate a year ago as well. > I do have a minor and probably benign problem with CVS (when > commiting): I saw the same when committing to s-xml-rpc. > PS: It is probably best to also start using the mailing lists ;-) Ok, subscribed. Cheers, Rudi -------------- next part -------------- A non-text attachment was scrubbed... Name: PGP.sig Type: application/pgp-signature Size: 186 bytes Desc: This is a digitally signed message part URL: From ralphc at bellsouth.net Wed Jun 30 17:57:24 2004 From: ralphc at bellsouth.net (ralphc at bellsouth.net) Date: Wed, 30 Jun 2004 13:57:24 -0400 Subject: [s-xml-devel] exporting xml-element-attribute(s) Message-ID: <20040630175724.QJEI1779.imf23aec.mail.bellsouth.net@mail.bellsouth.net> All, I use the DOM and xml-struct part of s-xml; it's easier for me to keep track of the tree structure that way. Is it possible to export xml-element-attribute and xml-element-attributes from the xml-struct file? I think xml-element-attribute is an oversight; without it there's no way to get to the attributes of an xml-element without resorting to :: I'd also like to have xml-element-attributes exported, in case I have to iterate over all the attributes at some point. Nice work, Ralph Richard Cook From sven at beta9.be Wed Jun 30 19:15:17 2004 From: sven at beta9.be (Sven Van Caekenberghe) Date: Wed, 30 Jun 2004 21:15:17 +0200 Subject: [s-xml-devel] exporting xml-element-attribute(s) In-Reply-To: <20040630175724.QJEI1779.imf23aec.mail.bellsouth.net@mail.bellsouth.net> References: <20040630175724.QJEI1779.imf23aec.mail.bellsouth.net@mail.bellsouth.net> Message-ID: On 30 Jun 2004, at 19:57, wrote: > All, > > I use the DOM and xml-struct part of s-xml; it's easier for me to keep > track of the tree structure that way. > > Is it possible to export xml-element-attribute and > xml-element-attributes from > the xml-struct file? > > I think xml-element-attribute is an oversight; without it there's no > way to get > to the attributes of an xml-element without resorting to :: > > I'd also like to have xml-element-attributes exported, in case I have > to > iterate over all the attributes at some point. You are absolutely right, I added the exports to package.lisp, updated the docs and did a new release. > Nice work, Thanks, > Ralph Richard Cook Thanks for the feedback, Sven