Moby
Stay tuned for more information on Moby Application Framework.
FEX Integrated Error Handling is an extension to Fusebox 3.0. The "official" core files, available on fusebox.org, are pitiful when it comes to error handling. FEX solves this problem with a robust error catching and handling system that is drop-dead simple to use, but can be extended to be as powerful as you like. Take a look...
Rebar Wireframe Editor
Built from the ground-up to meet the needs of developers using FLiP, Rebar is the next generation in wireframe editors.
A Rebar wireframe is a page-by-page, plain-text representation of what a finished application will do. Devoid of techno-babble such as UML, flowcharts, or data models, the wireframe is extremely fast to develop, is readable by everyone, and answers the oft-overlooked question of what the application needs to do.
The updated classic, now working with Fusebox 3, Fuseminder2 takes a Mind Map file and converts it into a Fusebox skeleton, complete with fbx_ files, all fuses, fuseactions, and more. You gotta see it to believe it!
Use "Search Engine Safe" URLs, like:
http://www.fusium.com/index.cfm/id/7/color/blue/
If you develop a Fusebox application in an NT environment, the chances are that some of your CFINCLUDE statements don't quite match in case to the actual physical files. For example, you could have a fuse file named "dsp_showProducts.cfm", but your CFINCLUDE look like this:
<cfinclude template="dsp_showProducts.cfm">
This will work on NT, but if you need to deploy to *nix, you're going to run into trouble. This tool checks for case sensitivity errors.
A ColdFusion custom tag for testing and prototyping CFMAIL code. Simply replace <cfmail> and </cfmail> with <cf_testmail> and </cf_testmail>, keeping all parameters. This tag will display all parameters passed to the tag, and mock up the output that the receiver's email should display.
This tag reads a flash variable file, and returns all variables it contains into the variables scope. For example, if you have a file that looks like this: "&FOO=BAR", the variable FOO will be available in ColdFusion, value BAR. A list of variables set is also returned.
For old school Fuseboxers, here's a collection of custom tags for you. Someone asked us for the FB2 custom tag files, and we realized they don't appear to be available anywhere. An old system backup was discovered and we zipped up everything which even remotely resembled Fusebox into this archive.
Erik got sick of typing the code for next/previous n records in all of his projects, so he threw this together. It's not super robust or magical, but it might save you some time. Usage:
<cf_nextPrev
queryName="Session.GetProducts"
actionString="index.cfm?fuseaction=listProducts"
queryStartRow="1"
queryMaxRows="20">