Re: Parsing from a string

2003-07-10 Thread Colin Paul Adams
> "Gareth" == Gareth Reakes <[EMAIL PROTECTED]> writes: Gareth> Hi, its quite unlikely that we will implement this in the Gareth> next 6 months. OK, then I shall go ahead and do it. -- Colin Paul Adams Preston Lancashire --

Re: Parsing from a string

2003-07-10 Thread Gareth Reakes
Hi, its quite unlikely that we will implement this in the next 6 months. Gareth On 10 Jul 2003, Colin Paul Adams wrote: > > "Gareth" == Gareth Reakes <[EMAIL PROTECTED]> writes: > > >> OK. I suggest the best approach would be to create some new > >> files with the new n

Re: Parsing from a string

2003-07-10 Thread Colin Paul Adams
> "Gareth" == Gareth Reakes <[EMAIL PROTECTED]> writes: >> OK. I suggest the best approach would be to create some new >> files with the new names, for starters. Then we have to decide >> exactly how a DOMInputStream and a DOMReader would be >> implemented (the more I think ab

Re: Parsing from a string

2003-07-08 Thread Gareth Reakes
> > enum ActionType has only four values listed, as per the April 2002 draft, not 5 as > in the recent > working drafts. And the meanings of some of the values have changed > around. > > I propose fixing the values, and adding the fifth case, to come in > line with the last-call draft. OK? y

Re: Parsing from a string

2003-07-08 Thread Colin Paul Adams
> "Gareth" == Gareth Reakes <[EMAIL PROTECTED]> writes: Gareth> Give us a shout if you need any help. First query: enum ActionType has only four values listed, as per the April 2002 draft, not 5 as in the recent working drafts. And the meanings of some of the values have changed around.

Re: Parsing from a string

2003-07-08 Thread Gareth Reakes
Hi, On 7 Jul 2003, Colin Paul Adams wrote: > > "Gareth" == Gareth Reakes <[EMAIL PROTECTED]> writes: > > Gareth> Hi, Sorry. I forgot this was only available in my (custom) > Gareth> cvs. You can call DOMBuilder->parse with a > Gareth> DOMInputSource, but as I said we do currentl

Re: Parsing from a string

2003-07-07 Thread Colin Paul Adams
> "Gareth" == Gareth Reakes <[EMAIL PROTECTED]> writes: Gareth> Hi, Sorry. I forgot this was only available in my (custom) Gareth> cvs. You can call DOMBuilder->parse with a Gareth> DOMInputSource, but as I said we do currently implement Erm. I take it that's a typo, and you've m

Re: Parsing from a string

2003-07-07 Thread Gareth Reakes
Hi, Sorry. I forgot this was only available in my (custom) cvs. You can call DOMBuilder->parse with a DOMInputSource, but as I said we do currently implement the most recent version of the spec in this area (where the name has changed to DOMInput and the attribute you mention was a

Re: Parsing from a string

2003-07-07 Thread Colin Paul Adams
> "Gareth" == Gareth Reakes <[EMAIL PROTECTED]> writes: Gareth> Hi, We don't currently implement the most recent version Gareth> of the spec in this area. If you want to input a string Gareth> then there is an example in the samples/DOMTest directory. I see no such directory. Did

Re: Parsing from a string

2003-07-07 Thread Gareth Reakes
Hi, We don't currently implement the most recent version of the spec in this area. If you want to input a string then there is an example in the samples/DOMTest directory. sorry! Gareth On 4 Jul 2003, Colin Paul Adams wrote: > Is the DOMBuilder method parse (DOMInputSource) implemente

Parsing from a string

2003-07-04 Thread Colin Paul Adams
Is the DOMBuilder method parse (DOMInputSource) implemented in 2.3.0 or later? If so, is it yet possible to build a DOMInputSource and then set the stringData attribute on it, so as to be able to parse from a DOMString? -- Colin Paul Adams Preston Lancashire -

Re: Parsing from a string

2002-01-18 Thread Tinny Ng
ECTED] wrote: > Dave, > > When I click on "memparse" link I get file not found > > Sid > > -Original Message- > From: David N Bertoni/CAM/Lotus [mailto:[EMAIL PROTECTED]] > Sent: Friday, 18 January 2002 9:19 AM > To: [EMAIL PROTECTED] > Subject: R

RE: Parsing from a string

2002-01-17 Thread SidY
Dave, When I click on "memparse" link I get file not found Sid -Original Message- From: David N Bertoni/CAM/Lotus [mailto:[EMAIL PROTECTED]] Sent: Friday, 18 January 2002 9:19 AM To: [EMAIL PROTECTED] Subject: RE: Parsing from a string It's already in the &qu

RE: Parsing from a string

2002-01-17 Thread David N Bertoni/CAM/Lotus
young QML Pathology Brisbane -Original Message- From: Dario Bllb. [mailto:[EMAIL PROTECTED]] Sent: Thursday, 17 January 2002 6:07 PM To: [EMAIL PROTECTED] Subject: RE: Parsing from a string I parse strings in this way... // your string buffer unsigned char* XML_Doc_uChar; // here the

RE: Parsing from a string

2002-01-17 Thread SidY
? Is it worth while ? Is it a waste of time ? Would people object to me doing it ? Sid young QML Pathology Brisbane -Original Message- From: Dario Bllb. [mailto:[EMAIL PROTECTED]] Sent: Thursday, 17 January 2002 6:07 PM To: [EMAIL PROTECTED] Subject: RE: Parsing from a string I

Re: Parsing from a string

2002-01-17 Thread Don Mastrovito
This ought to get you started. While this code snippet was not compiled and tested, it was extracted from one of my projects. It demonstrates loading from either a file or a stream. const bool LoadFromStream = true;// Set to false for file i/o const char *MyFileName = "C:\TEMP\

RE: Parsing from a string

2002-01-17 Thread Dario Bllb.
de(true); m_parser->parse(MemBufInSource); where m_parser is DOMParser* . I hope it can be helpful for you Dario. >From: "Murphy, James" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> >Su

RE: Parsing from a string

2002-01-16 Thread Murphy, James
Look at MemBufInputSource - there is a sample. It wraps your buffer and reads bytes from memory. Jim > -Original Message- > From: Drew Tennenbaum [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, January 16, 2002 5:35 PM > To: [EMAIL PROTECTED] > Subject: Parsin