Hi, I'm converting an application from Fusebox 4 to 5.5 No XML and the only real issue I've hit is that the current application uses the globalfuseactions >...
Question: with XML, I could do this: include template="FuseWithMyQuery" required="true" /> if condition="MyQuery.recordcount" > However, with CFC, when I do: ...
Data should be stored in the event object rather than variables scope as a best practice (although there is a myFusebox.variables() method that returns the...
I'm storing my queries in the event model like this: <cfset event.setValue( "getFeaturedProducts", application.productManager.getFeaturedProducts() ) /> Do you...
Thanks Sean :) I'm currently refactoring Brian Kotek's fbbookstore from Fusebox 4.1 to 5.5 no xml so wanted to do like for like as much a possible to start...
That's and interesting take on it Sean. I wonder though if putting it in each controller is really necessary all the time? I can see in some sophisticated...
You get into trouble if you start running AJAX calls and your layout gets thrown on top of the result . . . that is the most compelling reason I have found for...
I'm using the following SES parameters with 5.5.1 <parameter name="queryStringStart" value="/" /> <parameter name="queryStringSeparator" value="/" /> ...
... The exactly same way you'd send a / as a value in a proper URL - by using UrlEncodedFormat The function will convert the / to it's hex charcode equivalent,...
Yes, I have already tried that... www.foo.com/index.cfm/fuseaction/bar.default/url/#URLEncodedFormat ('http://www.apple.com/')# Sure the URL gets encoded when...
... Huh? There is no URLDecode function in the fusebox sourcecode, and the xfa/parameter code does not do any manual decoding. Ah, wait, you're talking about...
Sorry, yes, I'm talking about incoming requests :-) Are you suggesting nested URLEncodedFormat() functions? I've just tried that and get the same result...
Im not sure that I fully understand what you are trying to accomplish here, however to simply 'escape' the fusebox SES '/' queryString params to get your...
... That was my thought - it should result in %252F, which would only be escaped once to %2F instead of / so Fusebox would pass it through to your code....
You're right, to an extent :-) Nesting URLEncodedFormat() turns "http://www" into "http%253A%252F%252Fwww" in the source but displays as "http%3A%2F%2Fwww" in...
Using the event object is the preferred method but the below does work and is supported, but it was mostly put into place to help with the transition so I...
Since I am not the original author of FB5.5 I can not talk to _why_ it was designed this way. I can however speak to future development and speculate previous...
... Adam is correct. In traditional Fusebox, circuit aliases must be unique so the same principle applies in no-XML mode. Adam's concerns about your points 2...
If this is defined as true in the fusebox.xml.cfm (Fusebox 5.5.1) and then I add : <cfset FUSEBOX_PARAMETERS.debug = false /> to my AJAX calls it still appends...
... FUSEBOX_PARAMETERS are only used when the framework is initialized. As the docs state, this is equivalent to the <parameters> blocks in fusebox.xml. What...
Thanks a bunch. I was using the new skeleton and didn't notice it was set in the index.cfm which was overriding my set in the fuse :). I was thinking it...
I've begun adding some features to Fusebox 5.5. I'd like to keep the discussion a centralized as possible, I turned comments off on the blog so please leave...
... see, and I ... application ... I had a ... So, if I understand correctly, <circuit alias="member" path="_Controller/member/"/> ... will now work with...