I've Slurped up a twitter feed where each entry looks like:

<entry>
    <id>tag:search.twitter.com,2005:30481912300568576</id>
    <published>2011-01-27T04:27:08Z</published>
    <link type="text/html" rel="alternate" href="http://twitter.com/LadyCourtz/statuses/30481912300568576"/>
    <title>U always right. ml</title>
    <content type="html">U always right. T <a href=&quot;http://twitter.com/Star_babey&quot;>@Star_babey</a>: But its only <b>twitter</b> tho star u wilding...lml</content>
    <updated>2011-01-27T04:27:08Z</updated>
    <link type="image/png" rel="image" href="http://a2.twimg.com/profile_images/1221429153/248287865_normal.jpg"/>

etc etc

What I needed to do in grails/GSP was to display the image like <img src=${tweet.imgUrl}/> So this looked like a good case for metaprogramming the XML result but I'm having trouble as a Groovy nooby.

See how there are at least 2 "link" nodes, the image url has a rel="image" attribute. So I've tried...

def records = new XmlSlurper().parse(response.data)
records.entry.metaClass.imgUrl = { -> return delegate.link?.find{it?.@rel == 'image'}?.@href }

But errors like this I cannot get beyond:

groovy.lang.MissingMethodException: No signature of method: groovy.util.slurpersupport.NodeChild.shout() is applicable for argument types: () values: []

Any help appreciated

link|improve this question

62% accept rate
feedback

1 Answer

up vote 1 down vote accepted

No need for meta programming I don't think, you should just be able to do:

imageUrlList = new XmlSlurper().parse( response.data ).entry.link.findAll { it.@rel == 'image' }*.@href

Then that should leave you with a list of Strings for each location...

Are you passing the whole XmlSlurper back to the GSP? I'd probably just extract the data you need and send only that back

link|improve this answer
I think meta programming would be the best option in this case...some more info, consider the GSP calling a template (or even just iterating over the entries) <g:render template="/layouts/news" var="entry" collection="${entries}" /> Thanks though it has given me something else to consider in the template: ${entry.title} <img src="${entry.img}"> – Steve Jan 31 '11 at 0:33
Looks like meta programming XMLSLurper would mean meta programming groovy.util.slurpersupport.NodeChild.metaClass, is just started looking to wrong and I couldnt get it to work anyway. So I turned to the clean approach in GSP: <g:findAll in="${entry.link}" expr="it.@rel == 'image'"> <img src="${it?.@href}"/> </g:findAll> No meta programming afterall...you were right! – Steve Jan 31 '11 at 2:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.