<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0">
			<channel>
			<title>Bob&apos;s Blog - ColdFusion Tidbits - Mura CMS</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 04:57:50 -0400</pubDate>
			<lastBuildDate>Fri, 19 Feb 2010 15:45: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>Using the Mura FW/1 Connector Plugin</title>
				<link>http://www.silverwareconsulting.com/index.cfm/2010/2/19/Using-the-Mura-FW1-Connector-Plugin</link>
				<description>
				
				Several months ago &lt;a href=&quot;http://patweb99.avatu.com/&quot; target=&quot;_blank&quot;&gt;Pat Santora&lt;/a&gt; of &lt;a href=&quot;http://www.blueriver.com/go/br/&quot; target=&quot;_blank&quot;&gt;Blue River&lt;/a&gt; and I developed
a Mura plugin that would allow a developer to take an existing &lt;a href=&quot;http://fw1.riaforge.org/&quot; target=&quot;_blank&quot;&gt;FW/1&lt;/a&gt; application and deploy it within a Mura page.
I was interested in this as I saw a need for a lightweight framework that I could use for my plugins, and by coincidence Pat happened to be working on something similar. So
we joined forces and the &lt;a href=&quot;http://www.getmura.com/index.cfm/app-store/plugins/fw1-connector-plugin/&quot; target=&quot;_blank&quot;&gt;FW/1 Connector Plugin&lt;/a&gt; was born.&lt;/p&gt;
&lt;p&gt;The plugin was finally released yesterday so I thought it prudent to author a post about how to use the plugin.&lt;/p&gt;
&lt;h3&gt;Overview&lt;/h3&gt;
&lt;p&gt;The FW/1 Connector plugin can be used to incorporate an FW/1 application into Mura. 
	Each plugin can be assigned to an individual FW/1 application. 
	As long as each FW/1 application has a unique applicationKey, you can have as many FW/1 applications running inside Mura as you please.  [More]
				</description>
				
				<category>ColdFusion</category>				
				
				<category>Mura CMS</category>				
				
				<category>FW/1</category>				
				
				<pubDate>Fri, 19 Feb 2010 15:45:00 -0400</pubDate>
				<guid>http://www.silverwareconsulting.com/index.cfm/2010/2/19/Using-the-Mura-FW1-Connector-Plugin</guid>
				
			</item>
			
			<item>
				<title>Extending Mura CMS with Plugins - Part V - Handling Plugin Errors</title>
				<link>http://www.silverwareconsulting.com/index.cfm/2010/2/10/Extending-Mura-CMS-with-Plugins--Part-V--Handling-Plugin-Errors</link>
				<description>
				
				Here&apos;s a quick Mura Plugin tip: You can handle errors in your plugin via an &lt;em&gt;onError()&lt;/em&gt; event in your event handler. Here&apos;s what mine looks like:
&lt;code&gt;&lt;cffunction name=&quot;onError&quot; output=&quot;true&quot; returntype=&quot;any&quot;&gt;
&lt;cfargument name=&quot;event&quot;&gt;

&lt;cfif arguments.event.getConfigBean().getDebuggingEnabled()&gt;
	&lt;cfdump var=&quot;#arguments.event.getValue(&apos;error&apos;)#&quot; /&gt;
&lt;cfelse&gt;
	&lt;cfset arguments.event.getServiceFactory().getBean(&quot;MuraService&quot;).SendErrorEmail(arguments.event.getValue(&quot;error&quot;)) /&gt;
	&lt;cfinclude template=&quot;../displayObjects/util/dspPluginError.cfm&quot; /&gt;
&lt;/cfif&gt;

&lt;/cffunction&gt;&lt;/code&gt;
&lt;/p&gt;
&lt;p&gt;What&apos;s going on in there?&lt;/p&gt;
&lt;p&gt;First I&apos;m checking to see if debugging is enabled in the global config by checking the value of &lt;em&gt;event.getConfigBean().getDebuggingEnabled()&lt;/em&gt;.
If debugging is enabled I want to display the information about the error on the page, so I&apos;m dumping the contents of the &lt;em&gt;error&lt;/em&gt; key from the event.
If debugging is not enabled, then I want to send an email to the site administrator, which is done by invoking a method on my &lt;em&gt;MuraService&lt;/em&gt; object,
which is defined in my Coldspring config. After that I want to display a friendly error message to the user, so I simply include a template from the 
&lt;em&gt;displayObjects/util/&lt;/em&gt; folder of my plugin. This allows the plugin itself to control what sort of message is displayed to a user when an error occurs.&lt;/p&gt;
&lt;p&gt;Pretty simple, eh?&lt;/p&gt; 
				</description>
				
				<category>ColdFusion</category>				
				
				<category>Mura CMS</category>				
				
				<pubDate>Wed, 10 Feb 2010 15:20:00 -0400</pubDate>
				<guid>http://www.silverwareconsulting.com/index.cfm/2010/2/10/Extending-Mura-CMS-with-Plugins--Part-V--Handling-Plugin-Errors</guid>
				
			</item>
			
			<item>
				<title>Extending Mura CMS with Plugins - Part IV - Using Extended Attributes</title>
				<link>http://www.silverwareconsulting.com/index.cfm/2010/1/6/Extending-Mura-CMS-with-Plugins--Part-IV--Using-Extended-Attributes</link>
				<description>
				
				In the &lt;a href=&quot;http://www.silverwareconsulting.com/index.cfm/2010/1/6/Extending-Mura-CMS-with-Plugins--Part-III--Configurable-Settings&quot;&gt;previous post&lt;/a&gt; in this series about
Extending &lt;a href=&quot;http://www.getmura.com/&quot; target=&quot;_blank&quot;&gt;Mura CMS&lt;/a&gt; (an open source ColdFusion CMS) with Plugins,
we looked at using plugin settings to make our plugin configurable by a Mura administrator. In that simple example, our plugin settings were used directly in our ouput. 
Although plugin settings can be useful in a number of scenarios, using them in that manner has a limitation, which is that you&apos;ll 
get the exact same output on each and every page that uses the plugin,
because the value of the setting is set via the Mura Admin and hence the plugin always uses that single value.&lt;/p&gt;
&lt;p&gt;In this post we&apos;ll look at a different technique for making a plugin configurable, and this time we&apos;ll be able to configure the plugin
on a page-by-page basis, instead of having one global configuration setting.  We&apos;ll do this by assigning a value to an extended attribute of a page, 
and then direct our plugin to use that value. The first step, therefore, is to enable an extended attribute for a page, so we&apos;ll look at that first.  [More]
				</description>
				
				<category>ColdFusion</category>				
				
				<category>Mura CMS</category>				
				
				<pubDate>Wed, 06 Jan 2010 12:12:00 -0400</pubDate>
				<guid>http://www.silverwareconsulting.com/index.cfm/2010/1/6/Extending-Mura-CMS-with-Plugins--Part-IV--Using-Extended-Attributes</guid>
				
				<enclosure url="http://www.silverwareconsulting.com/enclosures/HelloWorld3.zip" length="1984" type="application/zip"/>
				
			</item>
			
			<item>
				<title>Extending Mura CMS with Plugins - Part III - Configurable Settings</title>
				<link>http://www.silverwareconsulting.com/index.cfm/2010/1/6/Extending-Mura-CMS-with-Plugins--Part-III--Configurable-Settings</link>
				<description>
				
				I&apos;m continuing my series on Extending &lt;a href=&quot;http://www.getmura.com/&quot; target=&quot;_blank&quot;&gt;Mura CMS&lt;/a&gt; (an open source ColdFusion CMS) with Plugins, after a long hiatus,
 by looking at adding configurable settings to a plugin.
 In the &lt;a href=&quot;http://www.silverwareconsulting.com/index.cfm/2009/8/4/Extending-Mura-CMS-with-PlugIns--Part-II--Hello-World&quot;&gt;previous post&lt;/a&gt; we looked at creating a simple
 Hello World plugin and also looked at how we could place the output of that plugin on a page in our Mura site.&lt;/p&gt;
&lt;p&gt;As you may recall, all that plugin did was output the text &quot;Hello World!&quot; inside an h1 tag. That&apos;s not particularly useful, so let&apos;s make it a bit more interesting.
How about we allow the person managing the Mura site to decide whom we should greet and what that greeting should be?  
We&apos;re going to do that by adding a couple of settings to our plugin. In order to add those settings we&apos;re going to have to make a few changes to our plugin&apos;s configuration, which
we do by editing the &lt;em&gt;/plugin/config.xml&lt;/em&gt; file.  Let&apos;s take a look at out new version:  [More]
				</description>
				
				<category>ColdFusion</category>				
				
				<category>Mura CMS</category>				
				
				<pubDate>Wed, 06 Jan 2010 08:40:00 -0400</pubDate>
				<guid>http://www.silverwareconsulting.com/index.cfm/2010/1/6/Extending-Mura-CMS-with-Plugins--Part-III--Configurable-Settings</guid>
				
				<enclosure url="http://www.silverwareconsulting.com/enclosures/HelloWorld2.zip" length="2013" type="application/zip"/>
				
			</item>
			
			<item>
				<title>Extending Mura CMS with Plugins - The Story Continues</title>
				<link>http://www.silverwareconsulting.com/index.cfm/2010/1/5/Extending-Mura-CMS-with-Plugins--The-Story-Continues</link>
				<description>
				
				Just a quick note to say that my languishing series on Extending &lt;a href=&quot;http://www.getmura.com/&quot; target=&quot;_blank&quot;&gt;Mura CMS&lt;/a&gt; (an open source ColdFusion CMS) with Plugins
will in fact continue in the very near future.  I took some downtime over the holidays to draft a couple of posts, and I just have to get them ready for publication.  
In an interesting coincidence I discovered, after writing the posts, that the crew at &lt;a href=&quot;http://www.blueriver.com/go/br/&quot; target=&quot;_blank&quot;&gt;Blue River&lt;/a&gt;
 have been hosting a webcast, &lt;a href=&quot;http://www.getmura.com/index.cfm/support/mura-show/&quot; target=&quot;_blank&quot;&gt;The Mura Show&lt;/a&gt;,
 about Mura, and have been talking about
developing plugins as well.  And then I saw a tweet that mentioned my earlier posts, which pointed me to the &lt;a href=&quot;http://coldfusionthrowdown.com/&quot; target=&quot;_blank&quot;&gt;ColdFusion Throwdown&lt;/a&gt;,
 which is hosting a &lt;a href=&quot;http://coldfusionthrowdown.com/index.cfm/throwdowns/mura-plugin-throwdown/&quot; target=&quot;_blank&quot;&gt;competition for developing Mura plugins&lt;/a&gt;. 
 So there seems to be a lot of interest in Mura plugins right now.&lt;/p&gt;
&lt;p&gt;I watched the first episode of The Mura Show, and it pretty much covered all that I had written, and then some, so I considered not publishing the posts after all.
But I figure that having them as a permanent, readable resource would be of value to some, so I&apos;m going to finish them up and get them out there.  
I hope to then write another post discussing all of the new stuff that I learned from The Mura Show.&lt;/p&gt;
&lt;p&gt;So stay tuned for some more Mura goodness!&lt;/p&gt; 
				</description>
				
				<category>ColdFusion</category>				
				
				<category>Mura CMS</category>				
				
				<pubDate>Tue, 05 Jan 2010 10:19:00 -0400</pubDate>
				<guid>http://www.silverwareconsulting.com/index.cfm/2010/1/5/Extending-Mura-CMS-with-Plugins--The-Story-Continues</guid>
				
			</item>
			
			<item>
				<title>Testing Application and Session Integration with FW/1</title>
				<link>http://www.silverwareconsulting.com/index.cfm/2009/8/8/Testing-Application-and-Session-Integration-with-FW1</link>
				<description>
				
				&lt;a href=&quot;http://corfield.org/&quot; target=&quot;_blank&quot;&gt;Sean Corfield&lt;/a&gt; recently &lt;a href=&quot;http://fw1.riaforge.org/blog/index.cfm/2009/7/19/Introducing-Framework-One&quot; target=&quot;_blank&quot;&gt;released&lt;/a&gt; a very lightweight ColdFusion MVC application framework called &lt;a href=&quot;http://fw1.riaforge.org/&quot; target=&quot;_blank&quot;&gt;Framework One&lt;/a&gt; (FW/1 for short).  I&apos;ve been doing quite a bit of development of plugins for &lt;a href=&quot;http://www.getmura.com/&quot; target=&quot;_blank&quot;&gt;Mura CMS&lt;/a&gt; lately and I&apos;ve been looking for a lightweight front-controller, so it sounded like a potentially good match.&lt;/p&gt;
&lt;p&gt;I&apos;ve been working with &lt;a href=&quot;http://patweb99.avatu.com/&quot; target=&quot;_blank&quot;&gt;Pat Santora&lt;/a&gt; of &lt;a href=&quot;http://www.blueriver.com/go/br/&quot; target=&quot;_blank&quot;&gt;Blue River&lt;/a&gt; on a Mura CMS plugin that will enable a developer to plug a FW/1 application into Mura.  One of the things we needed to do was to ensure that FW/1&apos;s events were properly tied in to Mura&apos;s events.  To that end I created a little test application that makes use of FW/1&apos;s setupApplication() and setupSession() methods.&lt;/p&gt;
&lt;p&gt;I thought that this sample app might be useful to someone else who is attempting a different form of integration, so I&apos;m attaching it to this post.&lt;/p&gt; 
				</description>
				
				<category>ColdFusion</category>				
				
				<category>Mura CMS</category>				
				
				<category>FW/1</category>				
				
				<pubDate>Sat, 08 Aug 2009 10:57:00 -0400</pubDate>
				<guid>http://www.silverwareconsulting.com/index.cfm/2009/8/8/Testing-Application-and-Session-Integration-with-FW1</guid>
				
				<enclosure url="http://www.silverwareconsulting.com/enclosures/FW1IntegrationTest 2.zip" length="1955" type="application/x-zip"/>
				
			</item>
			
			<item>
				<title>Extending Mura CMS with Plug-Ins - Part II - Hello World</title>
				<link>http://www.silverwareconsulting.com/index.cfm/2009/8/4/Extending-Mura-CMS-with-PlugIns--Part-II--Hello-World</link>
				<description>
				
				In my &lt;a href=&quot;http://www.silverwareconsulting.com/index.cfm/2009/6/24/Extending-Mura-CMS-with-PlugIns&quot;&gt;previous post&lt;/a&gt; about Extending &lt;a href=&quot;http://www.getmura.com/&quot; target=&quot;_blank&quot;&gt;Mura CMS&lt;/a&gt; (an open source ColdFusion CMS) with plugins, we looked at what plugins are and how one creates and installs a plugin. In this post we&apos;ll look at a very simple plugin, and then add new features to the plugin in future posts.
&lt;p&gt;There are already a couple of &lt;a href=&quot;http://docs.getmura.com/index.cfm/developer-guides/back-end-development/#plugIns&quot; target=&quot;_blank&quot;&gt;sample plug-ins&lt;/a&gt; that can be found on the Mura site.  This example is loosely based on the Hello World example found there. This simple plugin won&apos;t do anything useful (yet), it will simply display the message &quot;Hello World&quot; on a page.  So let&apos;s get started.  [More]
				</description>
				
				<category>ColdFusion</category>				
				
				<category>Mura CMS</category>				
				
				<pubDate>Tue, 04 Aug 2009 17:18:00 -0400</pubDate>
				<guid>http://www.silverwareconsulting.com/index.cfm/2009/8/4/Extending-Mura-CMS-with-PlugIns--Part-II--Hello-World</guid>
				
				<enclosure url="http://www.silverwareconsulting.com/enclosures/HelloWorldStep1.zip" length="1487" type="application/x-zip"/>
				
			</item>
			
			<item>
				<title>Extending Mura CMS with Plug-Ins</title>
				<link>http://www.silverwareconsulting.com/index.cfm/2009/6/24/Extending-Mura-CMS-with-PlugIns</link>
				<description>
				
				I&apos;ve been using &lt;a href=&quot;http://www.getmura.com/&quot; target=&quot;_blank&quot;&gt;Mura CMS&lt;/a&gt; on and off for the past few months, trying to integrate a bunch of functionality from an existing site into a Mura installation. At first it was a fairly daunting task, as although Mura is an excellent tool which is easily extendible, it is also quite complicated and there is not a heck of a lot of documentation available for back end development. I was lucky enough to get some help from &lt;a href=&quot;http://www.blueriver.com/go/br/about-us/people/&quot; target=&quot;_blank&quot;&gt;Matt Levine&lt;/a&gt;, the architect and lead developer, who helped me get an understanding of the plug-in architecture, after which I was able to integrate much of my existing functionality into Mura.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.blueriver.com/go/br/&quot; target=&quot;_blank&quot;&gt;Blue River&lt;/a&gt; has made a start at producing some &lt;a href=&quot;http://docs.getmura.com/index.cfm/developer-guides/back-end-development/&quot; target=&quot;_blank&quot;&gt;back end development documentation&lt;/a&gt;, and I decided to attempt to help the cause by documenting what I&apos;ve learned about developing plug-ins for Mura.  To that end I&apos;m starting a series about extending Mura with plug-ins. This first entry will be an introduction to plug-ins.  I plan to follow it up with articles containing much more detail.  As I&apos;m about to head off for three week&apos;s vacation in beautiful British Columbia, those additional articles will not appear until some time in July.  [More]
				</description>
				
				<category>ColdFusion</category>				
				
				<category>Mura CMS</category>				
				
				<pubDate>Wed, 24 Jun 2009 10:42:00 -0400</pubDate>
				<guid>http://www.silverwareconsulting.com/index.cfm/2009/6/24/Extending-Mura-CMS-with-PlugIns</guid>
				
			</item>
			</channel></rss>