Archives
-
ColdFusion and Basecamp's API
Recently I began working on a project that will integrate with Basecamp’s API to fetch and sync data back and forth. My approach to the application was simple. I began by designing the interface, marking it up, and getting some basic jQuery interactions functional. After a few hours it was time to begin working with [...]
Feb 28th, 2011 | Filed under ColdFusion, Components -
Lorem Ipsum ColdFusion Builder Extension, by Matt Gifford
Matt Gifford created the “Lipsum Generator” for ColdFusion Builder based on the CFC Lipsum written by Tim Blair. Both products are posted on RiaForge.org. As himself said, “you have to love the CF community and sharing code”. Here is the link to his article.
-
ColdFusion Twitter Library Updated
Warning: fopen(/a0030277fc9284d75cab3c6e1bc40cf06b4fa128) [function.fopen]: failed to open stream: Permission denied in /home1/ricards2/public_html/wp-content/plugins/fv-code-highlighter/Includes/Cache.php on line 69
The ColdFusion library to communicate with the Twitter API was written by a friend from Brazil, Pedro Claudio, and it is available at RiaForge. Library that enables integration of ColdFusion with the Twitter API. Usage: 1 2 3 4 5 6 <cfscript> twitter = createObject(‘component’,'Twitter’).init(‘username’,'password’); /* sent message */ xmlString = twitter.updateStatus(‘Message for your friend’,'FriendID’,'xml’); [...]
Feb 17th, 2010 | Filed under ColdFusion, Components -
Creating Globally-Accessible User Defined Functions
Congratulations Ben Nadel for your experiences on undocumented features of ColdFusion ! I liked the idea of playing with hidden features. I’m wrinting this re-post just to remind me where I can get this information later. getPageContext().getFusionContext().hiddenScope Here is the link to the full article on Ben’s blog.
-
Scripting Functions for ColdFusion 7 Users
In my work environment we have ColdFusion 7 and I like to write my templates in cfscript, but since CF7 does not support some new scripting functions in CF8, I wrote a component to mimic those functions and allow me to stay focused on the scripting. Well, it is not my original idea, I saw [...]
Tags: cfabort, cfdirectory, cfdump, cffile, cfflush, cflocation, cfquery, cfscript, ColdFusion, fileWriteUTF8, mailIt, postError, trace -
Query Sorted Results in HTML Table
Nowadays we have ways of sorting the display results from a query without resubmitting the page by using Ajax. Long time ago I wrote a custom tag with the help of my coworker Jason Sheppard to do the same by submitting the page with the new sort field information. So, for those who do not [...]
Oct 24th, 2008 | Filed under ColdFusion, Components
jQuery_Mobile First Look