I have been messing around with the Blog sample app running on BlueDragon (6 2 1 - free/fedor 4) and have been patching errors as the arise. But it is getting late now (in Australia) so I am going to pack up.
Just wanted to know if any one is using BD?
some of my patches:
<cffunction name="getXml" access="public" hint="I return this table expressed as an XML document" output="false" ><!--- AJM returntype="string" --->
DB thinks it is returning a struct
<!--- AJM <cfset item.expires = now() * 1 + arguments.timeout /> --->
<cfset item.expires = now() + arguments.timeout />
not sure if this is doing the same thing but stopped the error - DB didnt like the * with dates
<!--- AJM <cfif table IS 0> --->
<cfif isNumeric(table)>
if table was set there was a data type missmatch
<!--- AJM <cfif NOT DirectoryExists(expandPath(arguments.mapping
))>
<cfthrow type="reactor.Invalidmapping"
message="Invalid Mapping Setting [ #arguments.mapping# ]"
detail="The mapping argument must be a mapping to a directory which exists [ #expandPath(
arguments.mapping)# ]." />
</cfif> --->
when BD did expandPath it indeed was not a directory
-- Reactor for ColdFusion Mailing List -- [email protected]
-- Archives at http://www.mail-archive.com/reactor%40doughughes.net/
- [Reactor For CF] BlueDragon support for Reactor? Andrew Mercer
- Re: [Reactor For CF] BlueDragon support for Reactor? Sean Corfield

