Displaying 2 results from an estimated 2 matches for "feature_blurb".
2006 Jun 24
1
Parsing XML with REXML problem
...pe = article.elements[''news_type'']
art.head = article.elements[''headline''].text
art.blurb = article.elements[''blurb''].text
art.body = article.elements[''body''].text
art.fblurb = article.elements[''feature_blurb''].text
art.fimage = article.elements[''feature_image''].text
art.att = article.elements[''attribution'']
art.source = article.elements[''source''].text
art.copy = article.elements[''copyright''].text...
2006 Jun 26
0
DBI question. How do I load a database with data parsed from REXML?
...pe = article.elements[''NEWS_TYPE'']
p.head = article.elements[''HEADLINE''].text
p.blurb = article.elements[''BLURB''].text
p.body = article.elements[''BODY''].text
p.fblurb = article.elements[''FEATURE_BLURB''].text
p.fimage = article.elements[''FEATURE_IMAGE''].text
p.att = article.elements[''ATTRIBUTION'']
p.source = article.elements[''SOURCE''].text
p.copy = article.elements[''COPYRIGHT''].text...