Sorcerer's Tower

Entries tagged "Fusebox"

Fusebox is one of the oldest frameworks for CFML. Although dormant for a long time, it has recently been picked up again.

Find out more at fusebox.org

Found 2 entries tagged with "fusebox".

Fusebox 5.5 is out now!

The highly anticapted next major version of Fusebox has finally been released to the website.

Fusebox 5.5 allows you to use the Fusebox applications without using XML, which should please many people.

Instead of fusebox.xml it checks conventional places for your circuits, and instead of circuit.xml it can either use CFCs, where each function is a fuseaction, or just a directory, where each file is a fuseaction.

It also brings support for dynamic do to both xml and non-xml configuration, which is a feature I've really wanted on a couple of occasions.

Get it while it's hot...

http://fusebox.org/go/fusebox-downloads/core-files

Link lexicon verb for Fusebox 5

I have created a simple custom verb which allows you to link specified resource files from circuit.xml, without having to go to the bother of writing it all in a script and including it.

For example, you can do this:

<cf:link resource="/res/bubbles.css"/>
<cf:link resource="/res/bubbles.js"/>

And it will convert that and place the following inside your HTML head:

<link rel="stylesheet" type="text/css" href="/res/bubbles.css"/>
<script type="text/javascript" src="/res/bubbles.js"></script>

This should be useful if you have a lot of different circuits that all have unique styles and scripts, and you'd rather avoid putting lots of conditional statements in your layout pages.

For more information and a download link, read the article.