<?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>TeraTech Blog - CFEclipse</title>
			<link>http://www.teratech.com/blog/index.cfm</link>
			<description>Software Connections to your information</description>
			<language>en-us</language>
			<pubDate>Sat, 31 Jul 2010 04:51:58 -0400</pubDate>
			<lastBuildDate>Wed, 21 Feb 2007 20:52:00 -0400</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>blog@teratech.com</managingEditor>
			<webMaster>blog@teratech.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>blog@teratech.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			<itunes:image href="" />
			<image>
				<url></url>
				<title>TeraTech Blog</title>
				<link>http://www.teratech.com/blog/index.cfm</link>
			</image>
			<itunes:explicit>no</itunes:explicit>
			
			<item>
				<title>CFEclipse cheatsheet</title>
				<link>http://www.teratech.com/blog/index.cfm/2007/2/21/CFEclipse-cheatsheet</link>
				<description>
				
				Jim Priest has a good new cfeclipse cheatsheet up:
&lt;a href=&quot;http://www.thecrumb.com/cfeclipse/&quot;&gt;http://www.thecrumb.com/cfeclipse/&lt;/a&gt;

I had seen this posted on someone else&apos;s blog (can&apos;t find the link), but after Theo&apos;s CFEclipse post, thought it would be useful here.

(UPDATE: These are now on the CFEclipse wiki: 
&lt;a href=&quot;http://trac.cfeclipse.org/cfeclipse/wiki/ShortcutKeys&quot;&gt;http://trac.cfeclipse.org/cfeclipse/wiki/ShortcutKeys&lt;/a&gt;

&lt;a href=&quot;http://trac.cfeclipse.org/cfeclipse/wiki/CFSnippets&quot;&gt;http://trac.cfeclipse.org/cfeclipse/wiki/CFSnippets&lt;/a&gt;
) 
				</description>
				
				<category>ColdFusion</category>				
				
				<category>CFEclipse</category>				
				
				<pubDate>Wed, 21 Feb 2007 20:52:00 -0400</pubDate>
				<guid>http://www.teratech.com/blog/index.cfm/2007/2/21/CFEclipse-cheatsheet</guid>
				
			</item>
			
			<item>
				<title>CFEclipse 1.3 Update - Part II</title>
				<link>http://www.teratech.com/blog/index.cfm/2007/2/19/CFEclipse-13-Update--Part-II</link>
				<description>
				
				Hello World,

In my last post I talked about two of the several new features of the CFEclipse 1.3 update. One of which was the Code Snippets feature. Although the Code Snippets has been a feature of CFEclipse for some time now most people (including myself) are either unaware of its existance or its features. I would like to revisit the Code Snippets in this post. I admit that I did not give Code Snippets the credit that it deserved. After playing around with the Code Snippets panel for more than 15 minutes I found that it has a bit more to it than one might think at first glance. So let&apos;s look a little beyond the first glance and explore a couple of the coolest features of the Code Snippets panel.

&lt;b&gt;1) User Variables:&lt;/b&gt; One of the coolest features I found while using the Code Snippets was the use of variables in your snippets. You can define variables within your code snippet. Your variables can be defined as shown below:

&lt;code&gt;$${yourvariablename}&lt;/code&gt;

Here is an example of how you would use the variable definition:

&lt;code&gt;
&lt;cfquery name=&quot;$${queryname}&quot; datasource=&quot;cfdocexamples&quot;&gt;
&lt;/cfquery&gt;
&lt;/code&gt;

Now when you double click on your Code Snippet in order to place it into your code, a dialog box will be displayed prompting you for a value for the queryname variable. You can define more than one variable within your code snippet. See below:

&lt;code&gt;
&lt;cfquery name=&quot;$${queryname}&quot; 
datasource=&quot;cfdocexamples&quot; 
cachedwithin=&quot;#CreateTimeSpan($${days}, $${hours}, $${minutes}, $${seconds})#&quot;&gt;
&lt;/cfquery&gt;
&lt;/code&gt;

Using this code snippet, the dialog box will prompt you for the queryname, days, hours, minutes, and seconds.

&lt;b&gt;2) System Snippet Variables:&lt;/b&gt; In addition to being able to use your own variables you can also use the following System Snippet Variables:

&lt;code&gt;
$${DATE}		- Enters the date as MM/DD/YYYY E.g. 11/30/2007
$${MONTH}		- Enters the month as text E.g. February
$${TIME}		- Enters the time E.g.: 7:29:58 AM
$${DATETIME}		- Enters the date and time E.g.: 2/9/2007 7:29:58 AM
$${DAYOFWEEK}		- E.g.: Friday
$${CURRENTFILE}		- Current file name (just the file)
$${CURRENTFOLDER}	- Current folder (The path to the containing folder)
$${CURRENTPATH}		- Current path (full file name)
$${CURRENTPRJPATH}	- Just the folder
$${USERNAME}		- Current user
$${MONTHNUMBER}		- Month as a number
$${DAYOFMONTH}		- Day of month as a number
$${DAYOFWEEKNUMBER}	- Day of week (the week starts on Sunday)
$${DATETIME24}		- DateTime24 - a 24 hour clock version of datetime.
$${YEAR}		- Current year.
$${YEAR2DIGIT}		- Current two digit year.
&lt;/code&gt;

Here is an example of you might use one of the System Variables:

&lt;code&gt;
&lt;!---
	&lt;fusedoc 
		fuse=&quot;$${CURRENTFILE}&quot; 
		language=&quot;ColdFusion&quot;&gt;

		&lt;responsibilities&gt;
			$${response}
		&lt;/responsibilities&gt;

		&lt;properties&gt;
			&lt;property 
				name=&quot;Date&quot; 
				value=&quot;$${DATE}&quot;&gt;
		&lt;/properties&gt;
	&lt;/fusedoc&gt;
---&gt;
&lt;/code&gt;

As you can see this is a sample fusedoc that uses a couple of the System variables to automatically substitute the current file and the current date. A user variable is defined which will prompt for the responsibilities text.

&lt;b&gt;CFEclipse TV&lt;/b&gt;

The CFEclipse.org site has added a new section called &lt;a href=&quot;http://www.cfeclipse.org/index.cfm?event=page&amp;page=TV&quot;&gt;CFEclipse TV&lt;/a&gt;. This section hosts several screencasts describing some of the features of CFEclipse including Using Snippets for Speedy Coding and Getting Started.

&amp;lt;&amp;frasl;post&amp;gt; 
				</description>
				
				<category>ColdFusion</category>				
				
				<category>CFEclipse</category>				
				
				<pubDate>Mon, 19 Feb 2007 13:18:00 -0400</pubDate>
				<guid>http://www.teratech.com/blog/index.cfm/2007/2/19/CFEclipse-13-Update--Part-II</guid>
				
			</item>
			
			<item>
				<title>CFEclipse 1.3 Update - Part I</title>
				<link>http://www.teratech.com/blog/index.cfm/2007/2/16/CFEclipse-13-Update--Part-I</link>
				<description>
				
				Hello World,

Many people have wondered, &quot;just what are the enhancements to CFEclipse?&quot;. Well I asked myself that same question and began to do a little research to find the answers. So I will present to you a few of the enhancements you will find in the CFEclipse 1.3 update. I will alos include my personal experience with those features as I make use of them.

&lt;b&gt;Methods View&lt;/b&gt;: A new panel has been added that allows you to see and include your ColdFusion CFC methods. I&apos;ve used it and it works resonalbly well. I have been using such a functionality in Dreamweaver for a while. I&apos;m glad to see it now in CFEclipse. You can find the Methods View by Selecting Window &gt; Other Views. Then within the Show View window Expand the CFML tree node and Select &quot;Methods View&quot;. now Click on the OK button.

&lt;b&gt;Code Snippets&lt;/b&gt;: Once again, this is a functionality that I&apos;ve used in Dreamweaver for quite some time. You can find the Snip Tree View by Selecting Window &gt; Other Views. Then within the Show View window Expand the CFML tree node and Select &quot;Snip Tree View&quot;. now Click on the OK button.

Many developers tend to &quot;put down&quot; Dreamweaver for many reasons. However, as a developer and dessigner I still find Dreamweaver quite useful. As CFEclipse adds more and more functionality I will then look to make a complete move from Dreamweaver to Flex Builder 2 or Eclipse, using the CFEclipse plugin for ColdFusion development. Until then I use each tool in the appropriate setting to achive my goal.

I will have more for you in the near future as I explore what the new release of CFEclipse has to offer.

&amp;lt;&amp;frasl;post&amp;gt; 
				</description>
				
				<category>ColdFusion</category>				
				
				<category>CFEclipse</category>				
				
				<pubDate>Fri, 16 Feb 2007 15:38:00 -0400</pubDate>
				<guid>http://www.teratech.com/blog/index.cfm/2007/2/16/CFEclipse-13-Update--Part-I</guid>
				
			</item>
			</channel></rss>