Forum OpenACS Development: Re: Filesystem/HTTP Get objects as datasources

Collapse
Posted by Dave Bauer on
something like this?

Once you have the data in a variable something like this would work:

template::multirow create data element
foreach line [split $html \n] {
template::multirow append data $line
# or
# lappend data $line
}

Collapse
Posted by Sam Nicholson on
Thanks. I'll give that a go.