Search the web
Sign In
New User? Sign Up
fusebox5
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 3741 - 3770 of 4396   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3741
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 >...
aliaspooryorik
Offline Send Email
Sep 8, 2008
1:27 pm
3742
... Well, I would suggest that best practice is to have a controller circuit that calls down into the model and view - in which case you could use...
Sean Corfield
seancorfield
Online Now Send Email
Sep 8, 2008
3:28 pm
3743
Question: with XML, I could do this: include template="FuseWithMyQuery" required="true" /> if condition="MyQuery.recordcount" > However, with CFC, when I do: ...
houston_blue_texas
houston_blue...
Offline Send Email
Sep 8, 2008
8:17 pm
3744
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...
Sean Corfield
seancorfield
Online Now Send Email
Sep 8, 2008
8:35 pm
3745
I'm storing my queries in the event model like this: <cfset event.setValue( "getFeaturedProducts", application.productManager.getFeaturedProducts() ) /> Do you...
aliaspooryorik
Offline Send Email
Sep 9, 2008
8:52 am
3746
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...
aliaspooryorik
Offline Send Email
Sep 9, 2008
9:00 am
3747
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...
Adam Haskell
krogercfug
Offline Send Email
Sep 9, 2008
5:49 pm
3748
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...
Seth Johnson
cfx_user
Offline Send Email
Sep 9, 2008
6:07 pm
3749
I'm using the following SES parameters with 5.5.1 <parameter name="queryStringStart" value="/" /> <parameter name="queryStringSeparator" value="/" /> ...
dickbob
dickbob57
Offline Send Email
Sep 10, 2008
11:30 am
3750
... 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,...
Peter Boughton
boughtonp
Offline Send Email
Sep 10, 2008
11:48 am
3751
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...
dickbob
dickbob57
Offline Send Email
Sep 10, 2008
12:27 pm
3752
... 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...
Peter Boughton
boughtonp
Offline Send Email
Sep 10, 2008
12:45 pm
3753
Sorry, yes, I'm talking about incoming requests :-) Are you suggesting nested URLEncodedFormat() functions? I've just tried that and get the same result...
dickbob
dickbob57
Offline Send Email
Sep 10, 2008
2:17 pm
3754
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...
Josh Carrico
the_sigepjedi
Offline Send Email
Sep 10, 2008
2:28 pm
3755
... 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....
Peter Boughton
boughtonp
Offline Send Email
Sep 10, 2008
2:35 pm
3756
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...
dickbob
dickbob57
Offline Send Email
Sep 10, 2008
2:56 pm
3757
Sorry: answered my own question. But feel free to let me know if this is not best-practice: cfset myFusebox.do( action="FuseWithMyQuery" ) /> cfif...
houston_blue_texas
houston_blue...
Offline Send Email
Sep 17, 2008
5:10 pm
3758
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...
Adam Haskell
krogercfug
Offline Send Email
Sep 17, 2008
6:29 pm
3759
Assume a standard 5.5 MVC folder structure: /controller /model /view Also, assume CFCs as Circuits (for this example, 'news') /controller/news.cfc ...
hanzo55
Online Now Send Email
Sep 18, 2008
3:13 pm
3760
I can't answer your actual question, however implicit circuits must be named uniquely. You have two circuits called news Controller/news.cfc ...
Sandra Clark
slclark2499
Offline Send Email
Sep 18, 2008
3:19 pm
3761
I tend to go for: /controller/news.cfc /model/mnews/news.cfc /view/vnews/dsp_news.cfm...
aliaspooryorik
Offline Send Email
Sep 18, 2008
3:23 pm
3762
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 Haskell
krogercfug
Offline Send Email
Sep 18, 2008
5:37 pm
3763
... 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...
Sean Corfield
seancorfield
Online Now Send Email
Sep 18, 2008
6:15 pm
3764
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...
Jeffrey Roberson
hippiex
Offline Send Email
Sep 19, 2008
7:08 am
3765
Fusebox parameters can be set in Application.cfc. Adam Sent from my iPhone On Sep 18, 2008, at 5:40 PM, Jeffrey Roberson <jeff@...>...
Adam Haskell
krogercfug
Offline Send Email
Sep 19, 2008
11:53 am
3766
Depending on the skeleton you're using, you might also find this within fusebox.appinit.cfm or index.cfm. JOSH...
Josh Carrico
the_sigepjedi
Offline Send Email
Sep 19, 2008
1:09 pm
3767
... 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...
Sean Corfield
seancorfield
Online Now Send Email
Sep 19, 2008
3:32 pm
3768
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...
jeff@...
hippiex
Offline Send Email
Sep 19, 2008
5:07 pm
3769
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...
Adam Haskell
krogercfug
Offline Send Email
Sep 19, 2008
7:14 pm
3770
... see, and I ... application ... I had a ... So, if I understand correctly, <circuit alias="member" path="_Controller/member/"/> ... will now work with...
Mike
starkraving2002
Online Now Send Email
Sep 19, 2008
7:38 pm
Messages 3741 - 3770 of 4396   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help