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

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 1693 - 1722 of 4396   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1693
Please make the following correction to the patch. Old Value <cfreturn variables.attributes /> New Value <cfreturn variables.attributes[arguments.valueName] />...
Qasim Rasheed
qasim_1976
Offline Send Email
Jan 2, 2007
3:46 am
1694
Sean, Here is a patch for fuseboxEvent.cfc Index: C:/CFFrameworks/Fusebox5/svn/fuseboxEvent.cfc ... +++ C:/CFFrameworks/Fusebox5/svn/fuseboxEvent.cfc (working...
Qasim Rasheed
qasim_1976
Offline Send Email
Jan 2, 2007
3:55 am
1695
Thanx. Fixed in SVN. For future reference, please open a ticket for anything found (I fixed this without one for expediency but for tracking purposes would...
Sean Corfield
seancorfield
Online Now Send Email
Jan 2, 2007
5:35 am
1696
I have a cirucuit that updates the application structure and I would like to lock the application scope before updating the structure. How is this done in...
Seth Johnson
cfx_user
Offline Send Email
Jan 2, 2007
3:02 pm
1697
Either create a lock lexicon, or call a fuse to do so. <fuseaction name="processSettings" permissions="management"> <xfa name="success" value="main"/> <set...
Sandra Clark
slclark2499
Offline Send Email
Jan 2, 2007
4:19 pm
1698
Thanks Sandra, I saw a reference somewhere to cf:lock but I cannot find any documentation on this. How would I go about creating a lexicon? Seth ... From:...
Seth Johnson
cfx_user
Offline Send Email
Jan 2, 2007
4:40 pm
1699
If you download the skeleton application from the fusebox.org site, http://fuseboxframework.org/downloads/downloadablefiles/fusebox500.skeleton. cfmx.zip it...
Sandra Clark
slclark2499
Offline Send Email
Jan 2, 2007
5:04 pm
1700
Several people will tell you that you're putting too much logic in your fuseaction and you should move it into an action fuse :) However, the Fusebox 5...
Sean Corfield
seancorfield
Online Now Send Email
Jan 2, 2007
6:20 pm
1701
Thanks for the tips Sandra and Sean! The cf:lock worked great! Seth ... From: Sean Corfield To: fusebox5@yahoogroups.com Sent: Tuesday, January 02, 2007 12:05...
Seth Johnson
cfx_user
Offline Send Email
Jan 2, 2007
8:10 pm
1702
Hello, I was drawing up the planning for my fusebox application when i came across an issue i wanted to look further into. I like the idea of breaking my...
david_marc_c
Offline Send Email
Jan 3, 2007
2:01 am
1703
You might want to look at content variables. Each <do /> contains a variable that all the content gets stuffed into. At the end, in your global post-process,...
Sandra Clark
slclark2499
Offline Send Email
Jan 3, 2007
2:19 am
1704
David, I relatively new to Fusebox-still learning my way through my first big app. -solo- on my own, so I'm not absolutely certain that my solution-comment...
Dan@...
danielhoodan
Offline Send Email
Jan 3, 2007
2:42 am
1705
Also, including the same fuseaction multiple times is not very fusebox like to me. Suppose i wanted to change it, i would have to change multiple entries. ...
david marc
david_marc_c
Offline Send Email
Jan 3, 2007
2:52 am
1706
Dan, I assume the way to go about it would be to just use a layouts.buildpage variable at the end of every warranted fuseaction....
david marc
david_marc_c
Offline Send Email
Jan 3, 2007
2:55 am
1707
Sandra, Was this a typo when you said circuit post process, I'm aware of postfuseaction which ends up getting called anytime i call multiple fuseactions from...
david marc
david_marc_c
Offline Send Email
Jan 3, 2007
3:06 am
1708
Fuseboxers, The if verb seems to be very useful, but i cant help wondering if im using it in the wrong manner. For instance, if im processing a form i send the...
david_marc_c
Offline Send Email
Jan 3, 2007
3:30 am
1709
That would be my take on it. For my app, I saw the contentvariable as a home run solution. I simply write a fuseaction for each "page type" I have, or need,...
Dan@...
danielhoodan
Offline Send Email
Jan 3, 2007
3:32 am
1710
It was a typo, postfuseaction. Look at how you have your circuits set up. If you are using an MVC design pattern, then your controller circuit is only called...
Sandra Clark
slclark2499
Offline Send Email
Jan 3, 2007
3:48 am
1711
David, There are several schools of thought as to where to include the layout portion. Some folks do as Dan suggests and include it w/in every call. Others...
Jason Daiger
jasondaiger
Offline Send Email
Jan 3, 2007
11:14 am
1712
... I don't know if it is the best way, but that's what I do too. --  Damien McKenna - Web Developer - damien.mckenna@... The Limu Company -...
Damien McKenna
d_mc_kenna
Online Now Send Email
Jan 3, 2007
4:21 pm
1713
My take on it is so long as your controller is using the if statement for control, ie (to send a user somewhere or call a fuse or fuseaction based on a...
Sandra Clark
slclark2499
Offline Send Email
Jan 3, 2007
5:43 pm
1714
... If you do the check at runtime (not compile time), then there shouldn't be a problem. ... -- Barney Boisvert bboisvert@... 360.319.6145 ...
Barney Boisvert
barneyboisvert
Offline Send Email
Jan 3, 2007
5:56 pm
1715
I'll second Sandra's assessment. The example described: If saved display thanks else display try again form are definite controller items IMO. Items such as ...
Jason Daiger
jasondaiger
Offline Send Email
Jan 3, 2007
6:20 pm
1716
... Doh! Clearly not enough caffeine over the holiday break... yes, thank you Barney! So do folks think the <relocate> change would be worthwhile? Sean A...
Sean Corfield
seancorfield
Online Now Send Email
Jan 3, 2007
6:47 pm
1717
I like the change. It seems like it would be easier to read. ... -- John Blayter 602.740.3020 john@... http://www.blayter.com/john/...
John Blayter
jblayter
Offline Send Email
Jan 3, 2007
7:27 pm
1718
As it happened, I ended up removing the mapping and just including _fusebox51/fusebox5.cfm where _fusebox51 is under my shared webroot. I didn't want to end...
Christian Ready
christianrea...
Offline Send Email
Jan 5, 2007
5:26 am
1719
Hi, I'm building an application in fusebox5 (php on Windows) and all's going well except for a few odd messages appearing at the top of the default page...
Dan
danner_1969
Offline Send Email
Jan 5, 2007
6:08 pm
1720
... Sounds like you don't have those tags in your fusebox.xml file? <globalfuseactions> <appinit /> <preprocess /> <postprocess /> </globalfuseactions> appinit...
Sean Corfield
seancorfield
Online Now Send Email
Jan 5, 2007
6:24 pm
1721
Hi Dan, I haven't been able to see this error yet but a few other PHP-FB5 users have reported it as well. I'm trying to come up with a bug fix but it's hard...
Mike
starkraving2002
Offline Send Email
Jan 5, 2007
7:02 pm
1722
Posting on behalf of Michael Smith, TeraTech: We are looking at how we can improve Fusebox and want to know what you like about it and what you want to see...
Sean A Corfield
seancorfield
Online Now Send Email
Jan 6, 2007
3:51 am
Messages 1693 - 1722 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