XML

Xml code posted
created at 26 May 07:56, updated at 27 May 05:06

Edit | Back
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<cfcomponent
  displayname="RssListener"
  extends="MachII.framework.Listener"
  depends="RssService"
  output="false"
  hint="Listener for the RSS.">

  <!---
  PROPERTIES
  --->
  <cfset variables.instance = StructNew() />
  <cfset variables.rssService = "" />
  <cfset variables.googleGroupsRssUrl = "" />
  <cfset variables.blogRssUrl = "" />
  <cfset variables.cache = StructNew() />

  <!---
  INITIALIZATION / CONFIGURATION
  --->
  <cffunction name="configure" access="public" returntype="void" output="false"
    hint="Configures the listener.">
    <cfset variables.blogRssUrl = getParameter('blogRssUrl') />
    <cfset variables.googleGroupsRssUrl = getParameter('googleGroupsRssUrl') />
<cfif something>
<cfelse>
</cfif>
  </cffunction>
</cfcomponent>
766 Bytes in 6 ms with coderay