Re: Using DOM to build your output documents

2001-10-08 Thread Jeffrey W. Baker
On Wed, 3 Oct 2001, DeWitt Clinton wrote: > On Wed, Oct 03, 2001 at 04:43:41PM -0700, Jeffrey W. Baker wrote: > > > I'd also like to hear people's opinions on XML::DOM (I think it > > stinks and I've replaced it with a C DOM implementation). > > You just proved that you already know everything yo

Re: Using DOM to build your output documents

2001-10-04 Thread Chris Winters
* Perrin Harkins ([EMAIL PROTECTED]) [011004 01:03]: > > * Jeffrey W. Baker ([EMAIL PROTECTED]) [011003 19:52]: > > > I'd love to hear any other experiences with using the DOM to build > output > > > from scratch. I'd also like to hear people's opinions on XML::DOM (I > > > think it stinks and I'

Re: Using DOM to build your output documents

2001-10-04 Thread Robin Berjon
On Thursday 04 October 2001 01:43, Jeffrey W. Baker wrote: > I believe that the canonical way to output a document using any web > scripting language (Perl CGI, mod_perl, PHP, ASP, etc.) is to simply print > out your markup, like this fictional example: > > while (my $row = $sth->fetchrow_arrayred

Re: Using DOM to build your output documents

2001-10-03 Thread Perrin Harkins
> * Jeffrey W. Baker ([EMAIL PROTECTED]) [011003 19:52]: > > I'd love to hear any other experiences with using the DOM to build output > > from scratch. I'd also like to hear people's opinions on XML::DOM (I > > think it stinks and I've replaced it with a C DOM implementation). > > I can't speak

Re: Using DOM to build your output documents

2001-10-03 Thread Chris Winters
* Jeffrey W. Baker ([EMAIL PROTECTED]) [011003 19:52]: > I'd love to hear any other experiences with using the DOM to build output > from scratch. I'd also like to hear people's opinions on XML::DOM (I > think it stinks and I've replaced it with a C DOM implementation). I can't speak to XML::DOM

Re: Using DOM to build your output documents

2001-10-03 Thread DeWitt Clinton
On Wed, Oct 03, 2001 at 04:43:41PM -0700, Jeffrey W. Baker wrote: > I'd also like to hear people's opinions on XML::DOM (I think it > stinks and I've replaced it with a C DOM implementation). You just proved that you already know everything you need to on the subject of XML::DOM. :) Seriously

Using DOM to build your output documents

2001-10-03 Thread Jeffrey W. Baker
I believe that the canonical way to output a document using any web scripting language (Perl CGI, mod_perl, PHP, ASP, etc.) is to simply print out your markup, like this fictional example: while (my $row = $sth->fetchrow_arrayred()) { print "$row->[0]$row->[1]\n"; } There are two main d