, but even before this script is called , when i test the above page it throws this error
Only one top level element is allowed in an XML document. Error processing resource 'http://stage.ebizq.net/newsite/prakashtest/rssfeed'. Line 3, Position 6
-----^
is this a bug or is there any escape sequence so that it can passed to the python script.
"Help urgent"
Thanks
prakash
__________________________________________________________________
Introducing the New Netscape Internet Service.
Only $9.95 a month -- Sign up today at http://isp.netscape.com/register
Netscape. Just the Net You Need.
New! Netscape Toolbar for Internet Explorer
Search from anywhere on the Web and block those annoying pop-ups.
Download now at http://channels.netscape.com/ns/search/install.jsp
From random at dxtx.net Sun Apr 4 20:40:46 2004
From: random at dxtx.net (random@dxtx.net)
Date: Sun Apr 4 20:41:02 2004
Subject: [ZPT] repeat and odd/even question
Message-ID: <002d01c41aa6$a43b4ea0$0200a8c0@NOISE>
Hi ZPT list,
I have a brief question.. I have a tal:repeat running from a db query, and i want to stagger the results in two columns, so
it will look like this:
data1 .. data2
data3 .. data4
data5 .. data6
data7
I am using the odd/even checking and I ALMOST have this working. My problem is that since the repeat is on a , and i have to do a lot of html
and | formatting for each column, i can't properly close each row. Here's a psuedocode version of my setup.
if even, do left column |
if odd, do right column |
You can see the problem is that I only want to close the tablerow after it does the right column. But I can't put the
there inside the odd column's condition, because it breaks because of what i assume are nesting problems. (a