There are a lot of cfml tags that you can write as xml as well. such as: <cfcase value="" />
I prefer to write single tag things such as cfset and cfdump, cfabort etc with a / so I can instantly say if I need to look for a closing tag or not. And like everyone else said, it makes the switch from xml, xhtml and cfml a little easier. On 7/28/05, Barney Boisvert <[EMAIL PROTECTED]> wrote: > Any decent IDE will have RE support, so you can do your search like > this with RE's enabled: > > "crap *= *"whatever"" > > and match all 4 alternatives, plus those that accidentally have more > than one space in there. > > cheers, > barneyb > > On 7/28/05, M@ Bourke <[EMAIL PROTECTED]> wrote: > > I hate it with a passion, but I still code like it for everyone elses eyes. > > I dislike cfscript even more lol, but I still write constructors in > > cfscript. > > > > what I hate the most though is code like > > <cfset crap = "whatever"> > > instead of > > <cfset crap="whatever"> > > the space after or before the "=" is very anooying when it comes to > > doing searches in an IDE at work some devs write code like the first > > example which means if I'm searching the whole directory structure I > > have to search four times once for ""crap="whatever"" and once for > > "crap = "whatever"" and once for "crap= "whatever"" and once for "crap > > ="whatever"" > > I dislike white space greatly. > > I learnt to code in notepad so I never even used tabs lol, > > I'd simply wrote all code html tables and all so it was smack bang > > against the left of the screen :S > > > > how ever these days I use tabs for everyone else. > > > > M@ > > > > > > > -- > Barney Boisvert > [EMAIL PROTECTED] > 360.319.6145 > http://www.barneyb.com/ > > Got Gmail? I have 50 invites. > > > ---------------------------------------------------------- > You are subscribed to cfcdev. To unsubscribe, send an email to > [email protected] with the words 'unsubscribe cfcdev' as the subject of the > email. > > CFCDev is run by CFCZone (www.cfczone.org) and supported by CFXHosting > (www.cfxhosting.com). > > CFCDev is supported by New Atlanta, makers of BlueDragon > http://www.newatlanta.com/products/bluedragon/index.cfm > > An archive of the CFCDev list is available at > www.mail-archive.com/[email protected] > > > -- Ryan Guill BlueEyesDevelopment [EMAIL PROTECTED] www.ryanguill.com (270) 217.2399 Want gmail? Get it here while its hot. www.ryanguill.com/blog/ ---------------------------------------------------------- You are subscribed to cfcdev. To unsubscribe, send an email to [email protected] with the words 'unsubscribe cfcdev' as the subject of the email. CFCDev is run by CFCZone (www.cfczone.org) and supported by CFXHosting (www.cfxhosting.com). CFCDev is supported by New Atlanta, makers of BlueDragon http://www.newatlanta.com/products/bluedragon/index.cfm An archive of the CFCDev list is available at www.mail-archive.com/[email protected]
