Changeset 1751
- Timestamp:
- 09/01/08 01:55:44 (4 months ago)
- Files:
-
- coldbox/trunk/testharness/config/coldbox.xml.cfm (modified) (1 diff)
- coldbox/trunk/testharness/handlers/default.cfc (modified) (1 diff)
- coldbox/trunk/testharness/views/default/rss.cfm (added)
- coldbox/trunk/testharness/views/navigation.cfm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
coldbox/trunk/testharness/config/coldbox.xml.cfm
r1741 r1751 45 45 <Setting name="MyArray" value="[1,2,3,4,5,6]"/> 46 46 <Setting name="MyBaseURL" value="apps.jfetmac" /> 47 48 <!-- RSS REader --> 49 <Setting name="feedReader_useCache" value="true" /> 50 <Setting name="feedReader_cacheType" value="ram" /> 51 <Setting name="feedReader_cacheTimeout" value="10" /> 47 52 </YourSettings> 48 53 coldbox/trunk/testharness/handlers/default.cfc
r1739 r1751 47 47 </cffunction> 48 48 49 <!--- RSS ---> 50 <!--- rss ---> 51 <cffunction name="rss" access="public" returntype="void" output="false" hint=""> 52 <cfargument name="Event" type="coldbox.system.beans.requestContext" required="yes"> 53 <cfset var rc = event.getCollection()> 54 <cfscript> 55 //get rss feed 56 rc.feed = getPlugin("feedReader").readFeed(feedURL="http://news.google.com/nwshp?hl=en&tab=wn&output=rss"); 57 </cfscript> 58 </cffunction> 59 49 60 <!--- onMissingAction ---> 50 61 <cffunction name="onMissingAction" access="public" returntype="void" output="false" hint="on missing action"> coldbox/trunk/testharness/views/navigation.cfm
r1739 r1751 15 15 <p><a href="index.cfm?#getController().getSetting("eventName")#=ehSecure.dspUser">Security Int Test</a></p> 16 16 <p><a href="index.cfm?#getController().getSetting("eventName")#=default.implicit">Implicit Views</a></p> 17 <p><a href="index.cfm?#getController().getSetting("eventName")#=default.rss">RSS Reader</a></p> 17 18 </cfoutput>
