Hi all,
this is my first topic here, my name is Pedro Claudio, I'm in Brazil and I hope you enjoy what I did.
I write a pod twitter, and is working on my blog http://blog.pcsilva.com
Add in blog.ini.cfm
in line 37#blog.ini.cfm
usertwitter=<twitter username>
And add in blog.cfc
in line 97#blog.cfc
<cfset instance.usertwitter = variables.utils.configParam(variables.cfgFile, arguments.name, "usertwitter")>
in line 2566#blog.cfc
<cffunction name="getTwitter" returntype="any" output="false">
<cfset var retuned = StructNew() >
<cfset retuned.query = ArrayNew(1) >
<cfset retuned.fallowme = '' >
<cfset retuned.xml = '' >
<cfif Len(Trim(instance.usertwitter))>
<cfhttp url="http://twitter.com/statuses/user_timeline/#instance.usertwitter#.rss" />
<cfset returned.xml = xmlParse(replace(cfhttp.FileContent,'#instance.usertwitter#:','','all')) >
<cfif NOT StructKeyExists(returned.xml,'hash')>
<cfset retuned.query = xmlSearch(returned.xml,'//item') >
<cfset retuned.fallowme = xmlSearch(returned.xml,'//link') >
<cfset retuned.fallowme = retuned.fallowme[1].xmlText >
</cfif>
</cfif>
<cfreturn retuned >
</cffunction>
then you can use Twitter pod, which is the link below.
http://blog.pcsilva.com/download.cfm?filename=blogcfc%5Fpcsilva%2Ezip&post=Galleon_Forum
zip file has the file of a logo and internationalization pt_BR
[]s
<pcsilva />
