Changes for page TwitterMacros

Last modified by Ludovic Dubost on 2009/01/02 17:09

From version 3.1
edited by Ludovic Dubost
on 2009/01/02 16:05
Change comment: There is no comment for this version
To version 8.1
edited by Ludovic Dubost
on 2009/01/02 16:36
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -2,34 +2,35 @@
2 2   * Twitter macros allowing to display twitter data
3 3   *#
4 4  
5 -#macro(twitter_display $list)
5 +#macro(twitter_display $list $withuser)
6 +{pre}
6 6  <table>
7 7  #foreach($msg in $list)
8 8  <tr>
9 9  <td style="border: 0px; border-bottom:1px dashed #D2DADA;">
10 -<a href="$msg.user.URL">$msg.user.name</a> $msg.text
11 +#if($withuser)<a href="$msg.user.URL">$msg.user.name</a>#end $msg.text
11 11  <span style="color: #A2AAAA; font-size: 10px;">$xwiki.formatDate($msg.createdAt) #if($msg.source!="")from $msg.source #end</span>
12 12  </td>
13 13  </tr>
14 14  #end
15 15  </table>
17 +{/pre}
16 16  #end
17 17  
18 18  
19 19  #macro(twitter_search $text)
22 +#if(!$twitter)
20 20  #set($tg = $xwiki.parseGroovyFromPage("Twitter.TwitterGroovy", "Twitter.TwitterGroovy"))
21 21  #set($twitter = $tg.getTwitter("xwikiapi", "xwapi2008"))
22 -#twitter_display($tg.search($text))
23 23  #end
26 +#twitter_display($tg.search($text) true)
27 +#end
24 24  
25 25  #macro(twitter_user $user)
30 +#if(!$twitter)
26 26  #set($tg = $xwiki.parseGroovyFromPage("Twitter.TwitterGroovy", "Twitter.TwitterGroovy"))
27 27  #set($twitter = $tg.getTwitter("xwikiapi", "xwapi2008"))
28 -#twitter_display($twitter.getUserTimeline($user))
29 29  #end
30 -
31 -#macro(twitter_friends $user)
32 -#set($tg = $xwiki.parseGroovyFromPage("Twitter.TwitterGroovy", "Twitter.TwitterGroovy"))
33 -#set($twitter = $tg.getTwitter("xwikiapi", "xwapi2008"))
34 -#twitter_display($twitter.getFriendsTimeline($user))
34 +#twitter_display($twitter.getUserTimeline($user) false)
35 35  #end
36 +