<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: Implementing Master Page concept in ColdFusion</title>
	<link>http://www.cfdesignpatterns.com/application-development/implementing-master-page-concept-in-coldfusion/</link>
	<description>Using Design Patterns in Coldfusion Programming</description>
	<pubDate>Wed, 10 Mar 2010 14:51:40 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
		<item>
		<title>By: Bryn Parrott</title>
		<link>http://www.cfdesignpatterns.com/application-development/implementing-master-page-concept-in-coldfusion/#comment-7500</link>
		<dc:creator>Bryn Parrott</dc:creator>
		<pubDate>Wed, 03 Jun 2009 06:19:53 +0000</pubDate>
		<guid>http://www.cfdesignpatterns.com/application-development/implementing-master-page-concept-in-coldfusion/#comment-7500</guid>
		<description>Have you never heard of Fusebox for Cold Fusion.

This has been around for a number of years, and it implements the design pattern of aMaster Page.

In fact this predates the deployment of Master Pages in ASP/Visual Studio .Net.
Yes, you saw it in Cold Fusion first !!
Fusebox was around before Microsoft released he first version of VS.Net around 2003/4?)

Cheers,
BP</description>
		<content:encoded><![CDATA[<p>Have you never heard of Fusebox for Cold Fusion.</p>
<p>This has been around for a number of years, and it implements the design pattern of aMaster Page.</p>
<p>In fact this predates the deployment of Master Pages in ASP/Visual Studio .Net.<br />
Yes, you saw it in Cold Fusion first !!<br />
Fusebox was around before Microsoft released he first version of VS.Net around 2003/4?)</p>
<p>Cheers,<br />
BP</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vladimir Ugryumov</title>
		<link>http://www.cfdesignpatterns.com/application-development/implementing-master-page-concept-in-coldfusion/#comment-5517</link>
		<dc:creator>Vladimir Ugryumov</dc:creator>
		<pubDate>Fri, 27 Mar 2009 20:46:24 +0000</pubDate>
		<guid>http://www.cfdesignpatterns.com/application-development/implementing-master-page-concept-in-coldfusion/#comment-5517</guid>
		<description>@Adrian

I agree. Meanwhile combination of  and  does the job.</description>
		<content:encoded><![CDATA[<p>@Adrian</p>
<p>I agree. Meanwhile combination of  and  does the job.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adrian Lynch</title>
		<link>http://www.cfdesignpatterns.com/application-development/implementing-master-page-concept-in-coldfusion/#comment-5397</link>
		<dc:creator>Adrian Lynch</dc:creator>
		<pubDate>Sat, 21 Mar 2009 12:18:17 +0000</pubDate>
		<guid>http://www.cfdesignpatterns.com/application-development/implementing-master-page-concept-in-coldfusion/#comment-5397</guid>
		<description>It would be great if cfhtmlhead worked like cfsavecontent rather than with the text attribute.</description>
		<content:encoded><![CDATA[<p>It would be great if cfhtmlhead worked like cfsavecontent rather than with the text attribute.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathan Mische</title>
		<link>http://www.cfdesignpatterns.com/application-development/implementing-master-page-concept-in-coldfusion/#comment-4121</link>
		<dc:creator>Nathan Mische</dc:creator>
		<pubDate>Mon, 22 Dec 2008 18:09:15 +0000</pubDate>
		<guid>http://www.cfdesignpatterns.com/application-development/implementing-master-page-concept-in-coldfusion/#comment-4121</guid>
		<description>As for your comments about javascript and css being littered throughout the page, ColdFusion has a built in tag to handle this, &lt;code&gt;CFHTMLHEAD&lt;/code&gt;.</description>
		<content:encoded><![CDATA[<p>As for your comments about javascript and css being littered throughout the page, ColdFusion has a built in tag to handle this, <code>CFHTMLHEAD</code>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: akalura</title>
		<link>http://www.cfdesignpatterns.com/application-development/implementing-master-page-concept-in-coldfusion/#comment-4084</link>
		<dc:creator>akalura</dc:creator>
		<pubDate>Sun, 21 Dec 2008 06:10:42 +0000</pubDate>
		<guid>http://www.cfdesignpatterns.com/application-development/implementing-master-page-concept-in-coldfusion/#comment-4084</guid>
		<description>Henry

Thanks for the comment, my intention of this post was towards the audience that’s not using any sort of MVC framework (sorry did not make it very clear), I completely agree that many coldfusion MVC framework out there support the template based system  i.e. like in fusebox can have global header and footer and respective views for the individual pages.  But what I find missing (strictly focusing on fusebox in this context) is that once certain section of template is executed or rendered there are no possible changes, whereas in asp.net masterpage that’s not the case, the template and content gets merged after the server side logic has completely processed, and that’s what I wanted to highlight in this post.  

Also thanks for highlight the cfsavecontent limitation, you are correct to point out that cfform and cf8 ajax template adds extra content that cannot be capture in cfsavecontent tag.

My intention of this post was to throw out some thought provoking idea on notion of generating the content first and then merging it with template completely against the normal way of procedural rendering of content.

BTW: you got great documentation on coldfusion MVC frameworks!</description>
		<content:encoded><![CDATA[<p>Henry</p>
<p>Thanks for the comment, my intention of this post was towards the audience that’s not using any sort of MVC framework (sorry did not make it very clear), I completely agree that many coldfusion MVC framework out there support the template based system  i.e. like in fusebox can have global header and footer and respective views for the individual pages.  But what I find missing (strictly focusing on fusebox in this context) is that once certain section of template is executed or rendered there are no possible changes, whereas in asp.net masterpage that’s not the case, the template and content gets merged after the server side logic has completely processed, and that’s what I wanted to highlight in this post.  </p>
<p>Also thanks for highlight the cfsavecontent limitation, you are correct to point out that cfform and cf8 ajax template adds extra content that cannot be capture in cfsavecontent tag.</p>
<p>My intention of this post was to throw out some thought provoking idea on notion of generating the content first and then merging it with template completely against the normal way of procedural rendering of content.</p>
<p>BTW: you got great documentation on coldfusion MVC frameworks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Henry Ho</title>
		<link>http://www.cfdesignpatterns.com/application-development/implementing-master-page-concept-in-coldfusion/#comment-4079</link>
		<dc:creator>Henry Ho</dc:creator>
		<pubDate>Sat, 20 Dec 2008 22:30:20 +0000</pubDate>
		<guid>http://www.cfdesignpatterns.com/application-development/implementing-master-page-concept-in-coldfusion/#comment-4079</guid>
		<description>Master page concept has been implemented in almost all CF mvc frameworks.  They usually call it the template system.

reference: http://on.tapogee.com/galleonproject/comparison.html#views

warning: CFSAVECONTENT does not everything.  CFFORM and cf8 ajax tags are examples of tags that don't get 'saved'.</description>
		<content:encoded><![CDATA[<p>Master page concept has been implemented in almost all CF mvc frameworks.  They usually call it the template system.</p>
<p>reference: <a href="http://on.tapogee.com/galleonproject/comparison.html#views" rel="nofollow">http://on.tapogee.com/galleonproject/comparison.html#views</a></p>
<p>warning: CFSAVECONTENT does not everything.  CFFORM and cf8 ajax tags are examples of tags that don&#8217;t get &#8217;saved&#8217;.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
