Code Depot
Third Party Plugins
The plugins offered below are contributed to the ColdBox project and are therefore maintained by those authors and not the ColdBox effort. Please download at your own risk, they are offered "As Is".
Captcha
CFImage CAPTCHA Plugin.
- Author: Tony Garcia
- Detail: http://www.objectivebias.com/blog/entry/a-simple-cfimage-captcha-plugin-for-coldbox
- Download : http://www.objectivebias.com/blog/assets/content/files/captchaplugin.zip
toXML
Set of utility functions to generate XML.
- Author: Ray Camden & Sana Ullah
- License: Apache 2
- Download : http://www.coldboxframework.com/downloads/depot/plugins/toXML.cfc.zip
Spry Plugin
A great plugin for Adobe Spry and the ColdBox Framework.
- Author: Ernst van der Linden
- License: Apache 2
- Live Demo
- Site : http://evdlinden.behindthe.net
- Download : http://evdlinden.behindthe.net/codedepot/sprysample%202.0.zip
JS Calendar Plugin
A great JS Calendar plugin for the ColdBox Framework.
- Author: Ernst van der Linden
- License: Apache 2
- More Detail
- Site : http://evdlinden.behindthe.net
- Download : http://evdlinden.behindthe.net/codedepot/jsCalendarCBPlugin.zip
Webcharts3D Plugin
A great plugin for WebCharts3D and the ColdBox Framework. WebCharts3D is included in ColdFusion.
- Author: Ernst van der Linden
- License: Apache 2
- Site: http://evdlinden.behindthe.net
- Download : http://evdlinden.behindthe.net/uploads/webcharts3d/WebCharts3D.zip
- WebCharts3D Manual
- 30 days evaluation Eclipse plugin for WebCharts3D
CSS Graphing Plugin
A great CSS based graphing plugin.
- Author: Russ Johnson
- Site: http://www.angry-fly.com
- Download : http://angry-fly.com/index.cfm/2008/7/23/Simple-CSS-Based-Graphing-Plugin-For-ColdBox
Request Method Plugin
A plugin that allows for POST's only on certain executions.
- Author: Dutch Rapley
- Site: http://dutchrapley.com/
- Download : http://www.coldboxframework.com/downloads/depot/plugins/RequestMethod.zip
I have just written what I feel to be a handy plugin. Right now, it only has one function, and that's the make sure the current request method is POST. It can be conveniently used inside a preHandler() method of an event handler.
<cffunction name="preHandler" output="false" returntype="void" access="public">
<cfargument name="Event" type="coldbox.system.beans.requestContext">
<cfif "confirm,create" CONTAINS event.getCurrentAction()>
<cfset controller.getPlugin('RequestMethod',true).requirePost() />
</cfif>
</cffunction>
ScriptInclude Plugin
The ScriptInclude plug-in was built for the ColdBox Framework to simplify including external stylesheets and JavaScript files. Additionally, ScriptInclude simplifies injecting internal JavaScript into your views and layouts.
- Author: Aaron Greenlee
- Site: http://www.aarongreenlee.com/
- Download : http://www.aarongreenlee.com/mango/post.cfm/new-coldbox-plugin-scriptinclude
ValidateThis Plugin
Bob has done a great job by providing a validation framework that now works seamlessly with ColdBox. If you need great and fast validations for all your form requirements, try ValidateThis!.
- Author: Bob Silverberg
- Site: http://www.silverwareconsulting.com/index.cfm/2009/7/23/A-Coldbox-Plugin-for-ValidateThis-is-Now-Available
- Download : http://www.validatethis.org/
Third Party Interceptors
The interceptors offered below are contributed to the ColdBox project and are therefore maintained by those authors and not the ColdBox effort. Please download at your own risk, they are offered "As Is".
Form Inspector Interceptor
When you create form fields with names like:
<input type="text" id="firstName" name="user.firstName" /> <input type="text" id="lastName" name="user.lastName" /> <input type="text" id="email" name="user.email" />
The interceptor will create a 'user' structure in the requestContext. So you can do
getPlugin("beanFactory").populateFromStruct(User, event.getValue('user'));
The advantage is that you can now use your form to group related data together into structures.
- Author: Dutch Rapley
- Site: http://dutchrapley.com/
- Download : http://www.coldboxframework.com/downloads/depot/interceptors/FormInspector.zip
