Download the Bleeding Edge Release and let me know if that works. I added some functionality about 6 months ago regarding this but it was more geared towards...
4320
Adam Haskell
krogercfug
Aug 1, 2009 2:27 pm
Details on this addition: http://tech.groups.yahoo.com/group/fusebox5/message/3769 And http://cfrant.blogspot.com/2008/09/fusebox-status.html Looks like i was...
4321
Adam
vurcease
Aug 2, 2009 8:04 pm
In a project today I had to use JavaScript to navigate around a bit. I didn't want to hard code my fuseactions in the JS, and at the same time I didn't want to...
4322
Adam
vurcease
Aug 2, 2009 8:21 pm
I opened a minor bug for this in JIRA. If that wasn't the right thing to do, I'll go close it. I don't want to come off as a whiner here, just trying to do...
4323
Adam Haskell
krogercfug
Aug 2, 2009 10:21 pm
Already made the fix locally ;) I'll close it soonish. Curious though, now that you changed xfa.cfm does WDDX still lcase everything? Adam...
4324
Ryan J. Heldt
ryan.heldt
Aug 3, 2009 3:49 pm
Everyone- Okay, I'm working though this hybrid method and I'm having some difficulty. I don't think in my last post I mentioned I am trying to use a CFC as a...
4325
Sandra Clark
slclark2499
Aug 3, 2009 4:41 pm
Could you need to rename the file cSystem.xml.cfm? From: fusebox5@yahoogroups.com [mailto:fusebox5@yahoogroups.com] On Behalf Of Ryan J. Heldt Sent: Monday,...
4326
Ryan J. Heldt
ryan.heldt
Aug 3, 2009 4:56 pm
Got the same error. ... Got the same error. Sandra Clark wrote: Â Could you need to rename the file cSystem.xml. cfm? Â From: fusebox5@yahoogroup s.com [...
4327
Adam Haskell
krogercfug
Aug 3, 2009 5:10 pm
If you want to use CFCs as a circuit but do not want to follow the conventional folder structure you'll have to use the BER I linked to the other day. Further...
4328
Derek Hedstrom
derekhed
Aug 3, 2009 5:10 pm
Ryan, Try ending all the circuit definitions with a slash. ... Becomes: <circuits> <circuit alias="cSystem" path="circuits/system/" parent="" /> <circuit...
4329
Ryan J. Heldt
ryan.heldt
Aug 3, 2009 6:38 pm
Hey Adam- Thanks for all your help. As you said, I downloaded the BER and set my application to use it: <cfcomponent extends="com.fusebox552ber.Application"...
4330
Adam Haskell
krogercfug
Aug 3, 2009 7:02 pm
Do you still have a circuit.xml (or circuit.xml.cfm) in that directory? That'll possibly screw with Fusebox. What does the debugging output? Adam ... Do you...
4331
Ryan J. Heldt
ryan.heldt
Aug 3, 2009 8:35 pm
No, there's only the CFC in that folder. Here's the debugging info: Fusebox debugging: Time Category Message Count 0ms Fusebox Creating Fusebox...
4332
Adam Haskell
krogercfug
Aug 3, 2009 9:21 pm
Well one thing is perfectly clear, I need to add a couple more lines of debugging in there. As I suspected though no "Circuit Found at: ..." was mentioned....
4333
Derek Hedstrom
derekhed
Aug 3, 2009 11:01 pm
I have been trying to add an OnRequestEnd() method to my application and noticed that as soon as I do the Fusebox debugging output is suppressed. Simply add...
4334
Kevin Pepperman
lbretail22
Aug 3, 2009 11:09 pm
You have to call fusebox onRequestEnd. eg <cfset super.onRequestEnd() /> before you run your own code. ... -- -- if you've written a homegrown[*CFML]...
4335
Barney Boisvert
barneyboisvert
Aug 3, 2009 11:10 pm
If you add super.onRequestEnd() at the top of the method body (the only line, in this case, since it's currently blank), that should take care of it for you....
4336
Kevin Pepperman
lbretail22
Aug 3, 2009 11:12 pm
addn. You need to pass the target page as an argument. <cffunction name="onRequestEnd" output="true"> <cfargument name="targetPage" type="string"...
4337
Bob Silverberg
bobsilverberg
Aug 3, 2009 11:12 pm
I believe you need to extend Fusebox's Application.cfc in your Application.cfc, and in onRequestEnd() you need to call super. ...
4338
Adam Haskell
wildcujo
Aug 3, 2009 11:13 pm
Be sure to call super.onreqestend() Sent from my iPhone On Aug 3, 2009, at 6:57 PM, Derek Hedstrom <derekhedstrom@...>...
4339
Ryan Heldt
ryan.heldt
Aug 4, 2009 5:31 pm
Hi Adam- I made the change and re-ran. Looks like circuitFile is an empty string. For kicks and giggles, I added "#variables.alias#.cfc" to the list of ...
4340
Adam Haskell
krogercfug
Aug 4, 2009 8:52 pm
Hah that was a little tricky, certainly is a bug, turn off StrictMode and I bet it starts working. Adam...
4341
Ryan Heldt
ryan.heldt
Aug 4, 2009 10:24 pm
Booyah! That did it. Thanks for all your help, Adam. Ryan...
4342
Adam Haskell
krogercfug
Aug 4, 2009 10:45 pm
Not a problem, just remember that functionality is not in Fusebox right now in a stable (obviously) fashion. Adam...
4343
Mike Ritchie
starkraving2002
Aug 4, 2009 10:56 pm
Personally, if it were me, I would be doing the extension so that it's not necessary to do anything differently in the circuit declaration in fusebox.xml. It...
4344
Adam Haskell
krogercfug
Aug 4, 2009 11:17 pm
where are you writting this: <include template="someFuse" circuit="myCFCcircuit"/> In another circuit.xml? Adam...
4345
Mike Ritchie
starkraving2002
Aug 4, 2009 11:21 pm
That's right... this has been possible since Fusebox4.1. Mike www.fusebuilder.net...
4346
Adam Haskell
krogercfug
Aug 4, 2009 11:38 pm
Yeah I should probably do a type check on the type of Circuit it is and throw an appropriate error if one tries to do that, or should it instead look for a...
4347
Mike Ritchie
starkraving2002
Aug 5, 2009 2:29 am
I think that if the circuit path is declared in fusebox.xml, it should be available for anything I can throw at it :) If I set allowImplicitCircuit to true,...
4348
Adam Haskell
krogercfug
Aug 5, 2009 11:13 am
Well i think there is a bit of a misconception there. If you define a circuit as a CFC there there is not "cfm" files associated to that Circuit. I suppose if...