<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0">
			<channel>
			<title>Bob&apos;s Blog - ColdFusion Tidbits - Model-Glue</title>
			<link>http://www.silverwareconsulting.com/index.cfm</link>
			<description>Some stuff about ColdFusion and Transfer</description>
			<language>en-us</language>
			<pubDate>Thu, 09 Sep 2010 05:24:29 -0400</pubDate>
			<lastBuildDate>Thu, 01 Apr 2010 17:24:00 -0400</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>bob.silverberg@gmail.com</managingEditor>
			<webMaster>bob.silverberg@gmail.com</webMaster>
			
			<item>
				<title>I&apos;m Invading Your Airwaves Again</title>
				<link>http://www.silverwareconsulting.com/index.cfm/2010/4/1/Im-Invading-Your-Airwaves-Again</link>
				<description>
				
				Yes, once again I&apos;ve been interviewed for a ColdFusion podcast, and this time it&apos;s &lt;a href=&quot;http://www.cfhour.com/&quot; target=&quot;_blank&quot;&gt;CFHour&lt;/a&gt;. 
&lt;a href=&quot;http://blog.dkferguson.com/&quot; target=&quot;_blank&quot;&gt;Dave&lt;/a&gt; and &lt;a href=&quot;http://coldfusionnotes.com/&quot; target=&quot;_blank&quot;&gt;Mike&lt;/a&gt; 
allowed me to wax poetically about a wide range of topics including 
&lt;a href=&quot;http://www.validatethis.org/&quot; target=&quot;_blank&quot;&gt;ValidateThis&lt;/a&gt;, my validation framework for ColdFusion objects, 
the upcoming &lt;a href=&quot;http://www.cfobjective.com/&quot; target=&quot;_blank&quot;&gt;cf.Objective()&lt;/a&gt; conference 
and the &lt;a href=&quot;http://www.cfobjective.com/index.cfm/pre-conf/&quot; target=&quot;_blank&quot;&gt;pre-conference training&lt;/a&gt;
that will be available,
&lt;a href=&quot;http://www.model-glue.com/&quot; target=&quot;_blank&quot;&gt;Model-Glue&lt;/a&gt;, specifically some of the new features that will be included in version 3.2,
&lt;a href=&quot;http://mxunit.org/&quot; target=&quot;_blank&quot;&gt;MXUnit&lt;/a&gt;, again talking about what&apos;s coming in version 2.0,
and Dave also tricked me into weighing in on the CFBuilder debate.&lt;/p&gt;
&lt;p&gt;It was a lot of fun, and I really appreciate being given the opportunity to let people know about all of this great stuff
that is available to the ColdFusion community. If you don&apos;t mind listening to my Canadian accent for close to an hour, 
I encourage you to give it a listen. It&apos;s available via iTunes, and can also be listened to or downloaded directly from the 
&lt;a href=&quot;http://www.cfhour.com/post.cfm/show-47-the-bob-silverberg-show&quot; target=&quot;_blank&quot;&gt;show page&lt;/a&gt;.&lt;/p&gt; 
				</description>
				
				<category>Model-Glue</category>				
				
				<category>ValidateThis</category>				
				
				<category>cfObjective</category>				
				
				<category>MXUnit</category>				
				
				<pubDate>Thu, 01 Apr 2010 17:24:00 -0400</pubDate>
				<guid>http://www.silverwareconsulting.com/index.cfm/2010/4/1/Im-Invading-Your-Airwaves-Again</guid>
				
			</item>
			
			<item>
				<title>Customizing Model-Glue by Overriding Framework Components</title>
				<link>http://www.silverwareconsulting.com/index.cfm/2010/1/11/Customizing-ModelGlue-by-Overriding-Framework-Components</link>
				<description>
				
				One of the cool features of &lt;a href=&quot;http://www.model-glue.com/blog/&quot; target=&quot;_blank&quot;&gt;Model-Glue version 3&lt;/a&gt; is the ability to replace many of the components that make up the framework with your own version.
This allows you to change the default behaviour of the framework (which can be useful) without having to alter any of the framework&apos;s internal code (which is a bad idea).
Let&apos;s look at a situation in which we might want to customize Model-Glue and how we would do it.&lt;/p&gt;
&lt;h3&gt;Customizing Generated Code&lt;/h3&gt;
&lt;p&gt;Scaffolding is a feature of the framework that allows Model-Glue to generate working CRUD code for an object when you&apos;re using an ORM. Model-Glue 3.1 supports
&lt;a href=&quot;http://www.transfer-orm.com/&quot; target=&quot;_blank&quot;&gt;Transfer&lt;/a&gt; and &lt;a href=&quot;http://trac.reactorframework.com/&quot; target=&quot;_blank&quot;&gt;Reactor&lt;/a&gt;,
and Model-Glue 3.2 (&lt;a href=&quot;http://www.model-glue.com/blog/index.cfm/2009/12/23/MG-32-Feature-Sneak-Peak--CF9-ORM-Scaffolding&quot; target=&quot;_blank&quot;&gt;coming soon&lt;/a&gt;)
will also support ColdFusion 9&apos;s built-in ORM features. When you ask Model-Glue to do scaffolding for an object it will create event handlers and view templates for the operations that you request, which can include
List, View, Edit, Commit and Delete. The code that is generated is based on cfcs that, by default, are found in ModelGlue/gesture/modules/scaffold/beans.
The cfcs are called View.cfc, List.cfc, etc.&lt;/p&gt;
&lt;p&gt;If we want to change the way the view template is generated for the List action, we can simply edit the file ModelGlue/gesture/modules/scaffold/beans/List.cfc, changing the code to
reflect how we want our List view template to be generated.&lt;/p&gt;
&lt;p&gt;But wait, didn&apos;t we discuss earlier that changing files within the framework itself is a Bad Thing&amp;copy;?
No problem. Model-Glue allows you to override its own internal components by pointing to a component that belongs to your own application, which lives outside of
Model-Glue&apos;s code base.  [More]
				</description>
				
				<category>ColdFusion</category>				
				
				<category>Model-Glue</category>				
				
				<pubDate>Mon, 11 Jan 2010 14:23:00 -0400</pubDate>
				<guid>http://www.silverwareconsulting.com/index.cfm/2010/1/11/Customizing-ModelGlue-by-Overriding-Framework-Components</guid>
				
			</item>
			</channel></rss>