<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

			<channel>
			<title>Jon Hartmann - BlogCFC</title>
			<link>http://www.jonhartmann.com/index.cfm</link>
			<description>Technical blog of West Virginia web developer Jon Hartmann, covering ColdFusion, Asp.NET, Javascript, User Interface Design, and current website trends.</description>
			<language>en-us</language>
			<pubDate>Wed, 08 Sep 2010 04:21:03 -0500</pubDate>
			<lastBuildDate>Wed, 24 Dec 2008 22:17:00 -0500</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>jon.hartmann@gmail.com</managingEditor>
			<webMaster>jon.hartmann@gmail.com</webMaster>
			<itunes:subtitle></itunes:subtitle>
			<itunes:summary></itunes:summary>
			<itunes:category text="Technology" />
			<itunes:category text="Technology">
				<itunes:category text="Podcasting" />
			</itunes:category>
			<itunes:category text="Technology">
				<itunes:category text="Tech News" />
			</itunes:category>
			<itunes:keywords></itunes:keywords>
			<itunes:author></itunes:author>
			<itunes:owner>
				<itunes:email>jon.hartmann@gmail.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			<itunes:image href="" />
			<image>
				<url></url>
				<title>Jon Hartmann</title>
				<link>http://www.jonhartmann.com/index.cfm</link>
			</image>
			<itunes:explicit></itunes:explicit>
			
			<item>
				<title>Tweaking BlogCFC: Theme Management</title>
				<link>http://www.jonhartmann.com/index.cfm/2008/12/24/Tweaking-BlogCFC-Theme-Management</link>
				<description>
				
				&lt;img class=&quot;floatTL&quot; src=&quot;http://www.jonhartmann.com/images/theming.jpg&quot; alt=&quot;Preview of the Theme Management section in the BlogCFC Administrator.&quot; /&gt;One of the really nice things about Wordpress is that it has a very easy to use admin for managing your blog&apos;s theme. Working with the design in BlogCFC is a pain: the design is integrated into the actual code for the blog. Further, the code for designs is strewn through a number of different folders (includes/, images/, tags/, includes/pods/, etc.), which makes it hard to fully update a design. I&apos;ve made the necessary changes to make BlogCFC handle custom theming as easily as Wordpress: click more to see the details.  [More]
				</description>
				
				<category>BlogCFC</category>				
				
				<pubDate>Wed, 24 Dec 2008 22:17:00 -0500</pubDate>
				<guid>http://www.jonhartmann.com/index.cfm/2008/12/24/Tweaking-BlogCFC-Theme-Management</guid>
				
			</item>
			
			<item>
				<title>BlogCFC Tweaks: Bug Fix for viewByCategory.cfm</title>
				<link>http://www.jonhartmann.com/index.cfm/2008/12/12/BlogCFC-Tweaks-Bug-Fix-for-viewByCategorycfm</link>
				<description>
				
				I recently posted a blog entry with some code and instructions to allow drilling down into categories to view the posts in that category. Unfortunately, it had a bug. The meat of the viewByTemplate.cfm file should look like this:

&lt;code&gt;
&lt;cfmodule template=&quot;../tags/datatable.cfm&quot; data=&quot;#entries#&quot; editlink=&quot;entry.cfm&quot; label=&quot;Entries&quot;
		  linkcol=&quot;title&quot; defaultsort=&quot;posted&quot; defaultdir=&quot;desc&quot;&gt;
	&lt;cfmodule template=&quot;../tags/datacol.cfm&quot; colname=&quot;title&quot; label=&quot;Title&quot; /&gt;
	&lt;cfmodule template=&quot;../tags/datacol.cfm&quot; colname=&quot;released&quot; label=&quot;Released&quot; format=&quot;yesno&quot;/&gt;
	&lt;cfmodule template=&quot;../tags/datacol.cfm&quot; colname=&quot;posted&quot; label=&quot;Posted&quot; format=&quot;datetime&quot; /&gt;
	&lt;cfmodule template=&quot;../tags/datacol.cfm&quot; colname=&quot;views&quot; label=&quot;Views&quot; format=&quot;number&quot; /&gt;
	&lt;cfmodule template=&quot;../tags/datacol.cfm&quot; label=&quot;View&quot; data=&quot;&lt;a href=&quot;&quot;#application.rooturl#/index.cfm?mode=entry&amp;entry=$id$&quot;&quot;&gt;View&lt;/a&gt;&quot; sort=&quot;false&quot;/&gt;
&lt;/cfmodule&gt;
&lt;/code&gt;

Notice the missing &quot;querystring&quot; attribute on the datatable module. If you don&apos;t remove that bit, clicking on a blog post link from the category view wont take you to that blog post at all. I&apos;ve updated the code in the relevant zip.

&lt;div class=&quot;download&quot;&gt;
&lt;a href=&quot;/tutorials/blogcfctweaks/ViewByCategory.zip&quot;&gt;Download the updated code.&lt;/a&gt;
&lt;/div&gt; 
				</description>
				
				<category>BlogCFC</category>				
				
				<pubDate>Fri, 12 Dec 2008 14:15:00 -0500</pubDate>
				<guid>http://www.jonhartmann.com/index.cfm/2008/12/12/BlogCFC-Tweaks-Bug-Fix-for-viewByCategorycfm</guid>
				
			</item>
			
			<item>
				<title>BlogCFC Tweaks: View Entries By Category</title>
				<link>http://www.jonhartmann.com/index.cfm/2008/12/5/BlogCFC-Tweaks-View-Entries-By-Category</link>
				<description>
				
				With BlogCFC, there isn&apos;t an easy way to browse your entries by category. The closest you can get is to go to Entries put the category into the search. This actually wasn&apos;t too hard, once I figured out some of the more cryptic bits of some of the custom tags in BlogCFC.  [More]
				</description>
				
				<category>BlogCFC</category>				
				
				<pubDate>Fri, 05 Dec 2008 05:29:00 -0500</pubDate>
				<guid>http://www.jonhartmann.com/index.cfm/2008/12/5/BlogCFC-Tweaks-View-Entries-By-Category</guid>
				
			</item>
			
			<item>
				<title>BlogCFC Tweaks: Easier Category Selection</title>
				<link>http://www.jonhartmann.com/index.cfm/2008/11/29/BlogCFC-Tweaks-Easier-Category-Selection</link>
				<description>
				
				I&apos;ve talked about it before, but I find classic multi-selects in HTML to be really hard to use. You invariably have to end up putting some explanation text to let a user know how to select more then one, and its easy to clear your selections everything while trying to select an additional item. I put these ideas into practice in BlogCFC to help with category selection. I replaced the following code in admin/entry.cfm starting at line 391:

&lt;code&gt;&lt;cfif allCats.recordCount&gt;
	&lt;select name=&quot;categories&quot; multiple size=4 class=&quot;txtDropdown&quot;&gt;
	&lt;cfloop query=&quot;allCats&quot;&gt;
		&lt;option value=&quot;#categoryID#&quot; &lt;cfif isDefined(&quot;form.categories&quot;) and listFind(form.categories,categoryID)&gt;selected&lt;/cfif&gt;&gt;#categoryName#&lt;/option&gt;
	&lt;/cfloop&gt;
	&lt;/select&gt;&lt;br&gt;
&lt;/cfif&gt;&lt;/code&gt;

With this code:

&lt;code&gt;&lt;cfif allCats.recordCount&gt;
	&lt;ul class=&quot;multiselect&quot;&gt;
		&lt;cfloop query=&quot;allCats&quot;&gt;
			&lt;li&gt;&lt;input id=&quot;cat_#categoryID#&quot; type=&quot;checkbox&quot; name=&quot;categories&quot; value=&quot;#categoryID#&quot;&lt;cfif isDefined(&quot;form.categories&quot;) and listFind(form.categories,categoryID)&gt; checked=&quot;checked&quot;&lt;/cfif&gt;/&gt;&lt;label for=&quot;cat_#categoryID#&quot;&gt;#categoryName#&lt;/label&gt;&lt;/li&gt;
		&lt;/cfloop&gt;
	&lt;/ul&gt;
&lt;/cfif&gt;&lt;/code&gt;

I also added the following code the admin style sheet ( /includes/admin.css ):

&lt;code&gt;
ul.multiselect {
	height: 100px; 
	width: 225px; 
	border: 1px solid silver; 
	list-style-type: none; 
	padding-left: 3px; 
	overflow: auto;
}
ul.multiselect li label {
	display: inline;
	padding-left: 2px;
}&lt;/code&gt;

That makes it a lot easier to keep track of categories without messing something up. 
				</description>
				
				<category>BlogCFC</category>				
				
				<category>User Interface Design</category>				
				
				<pubDate>Sat, 29 Nov 2008 05:30:00 -0500</pubDate>
				<guid>http://www.jonhartmann.com/index.cfm/2008/11/29/BlogCFC-Tweaks-Easier-Category-Selection</guid>
				
			</item>
			
			<item>
				<title>BlogCFC Tweaks: Post Releaser Scheduled Task</title>
				<link>http://www.jonhartmann.com/index.cfm/2008/11/26/BlogCFC-Tweaks-Post-Releaser-Schedule-Task</link>
				<description>
				
				I&apos;ve been slowly accumulating a few tweaks to BlogCFC that make my life a little easier. The first is a schedule task I created to help me with my problem of writing 10 posts one day, but then none for a week.

&lt;code&gt;
&lt;cfquery name=&quot;qryEntries&quot; datasource=&quot;myblogds&quot;&gt;
	SELECT TOP 1 id
	FROM tblBlogEntries
	WHERE blog = &apos;myblogname&apos;
	AND released = 0
	ORDER BY posted ASC
&lt;/cfquery&gt;

&lt;cfif qryEntries.recordCount&gt;
	&lt;cfquery name=&quot;qryUpdateEntries&quot; datasource=&quot;myblogds&quot;&gt;
		UPDATE tblBlogEntries
		SET released = 1,
			posted = GETDATE()
		WHERE id = &lt;cfqueryparam value=&quot;#qryEntries.id#&quot; cfsqltype=&quot;cf_sql_varchar&quot; /&gt;
	&lt;/cfquery&gt;
&lt;/cfif&gt;
&lt;/code&gt;

I set this up to run once a day, fairly early in the morning. With this setup, all I have to do is make sure that I mark my posts as not released, and they will be parceled out one at a time to help keep my blog fresh. 
				</description>
				
				<category>BlogCFC</category>				
				
				<pubDate>Wed, 26 Nov 2008 14:34:00 -0500</pubDate>
				<guid>http://www.jonhartmann.com/index.cfm/2008/11/26/BlogCFC-Tweaks-Post-Releaser-Schedule-Task</guid>
				
			</item>
			
			<item>
				<title>BlogCFC Broke</title>
				<link>http://www.jonhartmann.com/index.cfm/2008/9/23/BlogCFC-Broke</link>
				<description>
				
				So, recently my install of the blog CFC client for this section broke and started kicking a really weird error. I tried fixing it by reinstalling the client, which failed... so I dumped a fresh org/... folder in as well, which caused me to have to update my database because my blog was out of date...

Blarg. Now my old theme is gone for this site. 
				</description>
				
				<category>BlogCFC</category>				
				
				<pubDate>Tue, 23 Sep 2008 17:01:00 -0500</pubDate>
				<guid>http://www.jonhartmann.com/index.cfm/2008/9/23/BlogCFC-Broke</guid>
				
			</item>
			
			<item>
				<title>MachBlog</title>
				<link>http://www.jonhartmann.com/index.cfm/2007/5/12/MachBlog</link>
				<description>
				
				Seems some one beat me to the idea of a blog in Mach II.

Check it out &lt;a href=&quot;http://www.machblog.org/&quot;&gt;here&lt;/a&gt;. 
				</description>
				
				<category>BlogCFC</category>				
				
				<pubDate>Sat, 12 May 2007 08:32:00 -0500</pubDate>
				<guid>http://www.jonhartmann.com/index.cfm/2007/5/12/MachBlog</guid>
				
			</item>
			
			<item>
				<title>BlahCFC</title>
				<link>http://www.jonhartmann.com/index.cfm/2007/4/19/BlahCFC</link>
				<description>
				
				So, I&apos;ve got BlogCFC setup and running fine... but I&apos;m really confused by parts of it. It probably stems from being intended for a single blog setup, but this thing really is horrible at multi-blog setups. None of the blog info is held in the database, despite having one to handle blog entries and pages.  [More]
				</description>
				
				<category>BlogCFC</category>				
				
				<pubDate>Thu, 19 Apr 2007 00:50:00 -0500</pubDate>
				<guid>http://www.jonhartmann.com/index.cfm/2007/4/19/BlahCFC</guid>
				
			</item>
			</channel></rss>