Current Filter:
Category: ColdFusion
Date Range: 1/15/2006 - 1/21/2006
(clear filters)

Monday, January 16, 2006

Dreamweaver 8.0.1 Updater Released Today

Adobe realesed the Dreamweaver 8.0.1 updater today. (It is sure going to take some getting used to not saying "Macromedia"...)

Get the scoop on what's been fixed by checking out the Resolved Issues: http://www.macromedia.com/go/f56452a8

In the first paragraph of the Release Notes you'll find a link to the download. Be sure to read the installation instructions! (Don't forget to disable virus protection like I did...Oops!)

Posted by ~Angela | Comments (1) | Add Comment | Permalink

 
Sunday, January 15, 2006

<cfinclude /> Rendering Trick for Dreamweaver

Here's a tip for you if you don't want Dreamweaver to render a specific <cfinclude> tag in Design view. Look at the tag in the previous sentence. Now go back and look at the tag in this subject line. Spot the difference?

If you close a cfinclude tag as if it were an empty element like in XHTML, Dreamweaver does not render the contents of the cfinclude.

This won't render in Design view:
<cfinclude template="/includes/header.cfm" />

This will render in Design view:
<cfinclude template="/includes/header.cfm">

Why wouldn't you want Dreamweaver to render a cfinclude you ask? Oh, I can come up with a lot of reasons... I'll give you but a few of them.

If anyone cares to share some potential uses for this trick, please be sure to leave a comment.

To any Adobe employees reading this blog post: Please do not "fix" the translator to account for the space and closing slash. This is not a bug; its an undocumented feature. ;-)

Posted by ~Angela | Comments (5) | Add Comment | Permalink