passing data to nested custom tags

2013-10-18 Thread Scott Stewart
Does the attributes scope of a custom tag get passed to it's nested descendants? -- -- Scott Stewart Adobe Certified Instructor, ColdFusion 8 9 Adobe Certified Expert, ColdFusion 8 9 Blog: http://www.sstwebworks.com Email: webmas...@sstwebworks.com

Re: passing data to nested custom tags

2013-10-18 Thread Raymond Camden
No, but a child tag can use getBaseTagData to access parent tag stuff. In the past when I've done custom tags that include parents and children, I have the children simply pass their crap up via cfassociate, and the real logic is done in the parent tag. I can send you a demo if you want. On Fri

Re: passing data to nested custom tags

2013-10-18 Thread Scott Stewart
I've done custom tags that include parents and children, I have the children simply pass their crap up via cfassociate, and the real logic is done in the parent tag. I can send you a demo if you want. On Fri, Oct 18, 2013 at 7:51 AM, Scott Stewart webmas...@sstwebworks.com wrote: Does

Re: passing data to nested custom tags

2013-10-18 Thread Raymond Camden
raymondcam...@gmail.com wrote: No, but a child tag can use getBaseTagData to access parent tag stuff. In the past when I've done custom tags that include parents and children, I have the children simply pass their crap up via cfassociate, and the real logic is done in the parent tag. I can send

Re: passing data to nested custom tags

2013-10-18 Thread Scott Stewart
to access parent tag stuff. In the past when I've done custom tags that include parents and children, I have the children simply pass their crap up via cfassociate, and the real logic is done in the parent tag. I can send you a demo if you want. On Fri, Oct 18, 2013 at 7:51 AM, Scott

Re: passing data to nested custom tags

2013-10-18 Thread Raymond Camden
access it in the child via getBaseTagData? On Fri, Oct 18, 2013 at 10:07 AM, Raymond Camden raymondcam...@gmail.com wrote: No, but a child tag can use getBaseTagData to access parent tag stuff. In the past when I've done custom tags that include parents

Re: passing data to nested custom tags

2013-10-18 Thread Claude Schnéegans
So lets say that I passed a query into the attributes scope of the parent, You can also define your query in the request scope and have it availiable at all levels. ~| Order the Adobe Coldfusion Anthology now!

Re: passing data to nested custom tags

2013-10-18 Thread Raymond Camden
I wouldn't do that. Seems a bit improper to me. We have a mechanism to share data between tags like this. IMO, it makes sense to use it. On Fri, Oct 18, 2013 at 12:47 PM, wrote: So lets say that I passed a query into the attributes scope of the parent, You can also define your query in

Re: passing data to nested custom tags

2013-10-18 Thread Claude Schnéegans
I wouldn't do that. Seems a bit improper to me. Well, IMO it depends on how you need to share data between levels of the tag - If you need to share any level data between all levels, then getBaseTagData is the only solution - If you need to share the same data between all levels, the request.

Re: passing data to nested custom tags

2013-10-18 Thread Raymond Camden
Yeah - I was just being anal about it. :) On Fri, Oct 18, 2013 at 2:46 PM, wrote: I wouldn't do that. Seems a bit improper to me. Well, IMO it depends on how you need to share data between levels of the tag - If you need to share any level data between all levels, then getBaseTagData

Re: passing data to nested custom tags

2013-10-18 Thread Claude Schnéegans
I was just being anal about it. That's our job, we are analysts aren't we? ;-) ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Re: Custom Tags

2012-03-04 Thread Larry Lyons
Short question, is this a CF custom tag or a CFX type tag. Custom tags don't have to be installed as others have said, to add to the prior comments, you can also use cfmodule and specify the exact path to the file as in cfmodule name = Name of the Tag template = /path/to/custom/tag etc

Custom Tags

2012-03-02 Thread Greg Edmonds
Hi All, I am having a challenge getting to my CF administrator page. CF 9.01, Windows 2008. I've been working on it for a bit with no solution. My question is, I have to install a custom tag. Is there any way to install a custom tag without using CF Administrator page? Thanks in advance!

Re: Custom Tags

2012-03-02 Thread Dave Watts
I am having a challenge getting to my CF administrator page.  CF 9.01, Windows 2008.  I've been working on it for a bit with no solution.  My question is, I have to install a custom tag.  Is there any way to install a custom tag without using CF Administrator page?  Thanks in advance!

Re: Custom Tags

2012-03-02 Thread Russ Michaels
you do not need to go anywhere near the cfadmin to use custom tags. CF will first look in the current folder for the custom tag, if it is not there then it will look in custom tag paths, You can set per application custom tag paths in your application.cfc or you can use CFIMPORT to import custom

Custom tags in CF 9

2011-04-12 Thread Donnie Carvajal
Hi, I recently installed an enterprise version of CF9 and the default directory is c:\jrun4 and there is no CustomTags directory. I added my customtags directory from my MX7 server and the custom tags calls are returning errors that they can't be found. Does anyone know where the CustomTags

Re: Custom tags in CF 9

2011-04-12 Thread Eric Cobb
a difference this summerhttp://bit.ly/i8dJvQ On 4/12/2011 2:04 PM, Donnie Carvajal wrote: Hi, I recently installed an enterprise version of CF9 and the default directory is c:\jrun4 and there is no CustomTags directory. I added my customtags directory from my MX7 server and the custom tags calls

Re: Custom tags in CF 9

2011-04-12 Thread Russ Michaels
12, 2011 at 8:04 PM, Donnie Carvajal donnie.carva...@transformyx.com wrote: Hi, I recently installed an enterprise version of CF9 and the default directory is c:\jrun4 and there is no CustomTags directory. I added my customtags directory from my MX7 server and the custom tags calls

Re: Custom tags in CF 9

2011-04-12 Thread Ian Skinner
On 4/12/2011 12:04 PM, Donnie Carvajal wrote: Hi, I recently installed an enterprise version of CF9 and the default directory is c:\jrun4 and there is no CustomTags directory. I added my customtags directory from my MX7 server and the custom tags calls are returning errors

Re: Custom tags in CF 9

2011-04-12 Thread Donnie Carvajal
Thanks for the feedback. The intention is to set up a multi-server instance. I did find the customtags and the cfx directories for this instance; however, the customtags are more of a library that we use across servers. Is there a generic place that i can put these files so that all

Re: Custom tags in CF 9

2011-04-12 Thread Russ Michaels
you can stick them anywhere (c:\custom tags) and then create a custom tags directory in the CFADMIN for each instance pointing to that location. On Tue, Apr 12, 2011 at 8:28 PM, Donnie Carvajal donnie.carva...@transformyx.com wrote: Thanks for the feedback. The intention is to set up

Re: Custom tags in CF 9

2011-04-12 Thread Ian Skinner
On 4/12/2011 12:28 PM, Donnie Carvajal wrote: Thanks for the feedback. The intention is to set up a multi-server instance. I did find the customtags and the cfx directories for this instance; however, the customtags are more of a library that we use across servers. Is there a generic

Re: Custom tags in CF 9

2011-04-12 Thread Raymond Camden
Don't forget that in CF8 you gained the ability to specify custom tag folders in your Application.cfc file instead. I know you are looking for the simplest solution, but this is an option as well. On Tue, Apr 12, 2011 at 2:44 PM, Ian Skinner h...@ilsweb.com wrote: On 4/12/2011 12:28 PM,

Re: Custom tags in CF 9

2011-04-12 Thread Ian Skinner
On 4/12/2011 1:21 PM, Raymond Camden wrote: Don't forget that in CF8 you gained the ability to specify custom tag folders in your Application.cfc file instead. I know you are looking for the simplest solution, but this is an option as well. I do forget about that cool option all to often.

RE: Custom tags in CF 9

2011-04-12 Thread Andrew Scott
in the Installation documentation of ColdFusion. Regards, Andrew Scott http://www.andyscott.id.au/ -Original Message- From: Donnie Carvajal [mailto:donnie.carva...@transformyx.com] Sent: Wednesday, 13 April 2011 5:05 AM To: cf-talk Subject: Custom tags in CF 9 Hi, I recently

RE: Custom Tags, cf_location

2011-01-26 Thread Mark A. Kruger
Dave... don't encourage him!!! He had already moved on to something else (doh!). -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Tuesday, January 25, 2011 8:26 PM To: cf-talk Subject: Re: Custom Tags, cf_location That fails to address OP's question.  Instead

Re: Custom Tags, cf_location

2011-01-26 Thread Michael Firth
... don't encourage him!!! He had already moved on to something else (doh!). -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Tuesday, January 25, 2011 8:26 PM To: cf-talk Subject: Re: Custom Tags, cf_location That fails to address OP's question. Instead

Re: Custom Tags, cf_location

2011-01-26 Thread John M Bliss
...@figleaf.com] Sent: Tuesday, January 25, 2011 8:26 PM To: cf-talk Subject: Re: Custom Tags, cf_location That fails to address OP's question. Instead, it begs his question... I hate to get into this, but ... I don't think you're using beg the question correctly. When you beg the question, you're

Re: Custom Tags, cf_location

2011-01-26 Thread WebSite CFTalk
- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Tuesday, January 25, 2011 8:26 PM To: cf-talk Subject: Re: Custom Tags, cf_location That fails to address OP's question. Instead, it begs his question... I hate to get into this, but ... I don't think you're using beg the question

RE: Custom Tags, cf_location

2011-01-26 Thread Mark A. Kruger
Not you john no... .sorry... I'm catching up.. it was for he-who-must-not-be-named -Original Message- From: John M Bliss [mailto:bliss.j...@gmail.com] Sent: Wednesday, January 26, 2011 10:11 AM To: cf-talk Subject: Re: Custom Tags, cf_location Huh? I don't think I was a bad actor

Re: Custom Tags, cf_location

2011-01-26 Thread Michael Firth
] Sent: Wednesday, January 26, 2011 10:11 AM To: cf-talk Subject: Re: Custom Tags, cf_location Huh? I don't think I was a bad actor in this thread, was I? On Wed, Jan 26, 2011 at 10:01 AM, Mark A. Kruger mkru...@cfwebtools.comwrote: Dave... don't encourage him!!! He had already moved

Re: Custom Tags, cf_location

2011-01-26 Thread Kelly
-Original Message- From: John M Bliss [mailto:bliss.j...@gmail.com] Sent: Wednesday, January 26, 2011 10:11 AM To: cf-talk Subject: Re: Custom Tags, cf_location Huh? I don't think I was a bad actor in this thread, was I? On Wed, Jan 26, 2011 at 10:01 AM, Mark A. Kruger mkru

Custom Tags, cf_location

2011-01-25 Thread Eric Vineyard
Hi, I'm trying to implement custom tags into a website I'm working with, but I'm not having much success with one in particular, cf_location. I'm using the 2.0.1 hosted on Adobe's website. The CF server I'm running is CF7, and I'm using a designated sub directory listed in the coldfusion admin

Re: Custom Tags, cf_location

2011-01-25 Thread John M Bliss
Why not use cflocation / http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentationfile=0284.htm#wp1100753 On Tue, Jan 25, 2011 at 2:34 PM, Eric Vineyard eric.viney...@hotmail.comwrote: Hi, I'm trying to implement custom tags

Re: Custom Tags, cf_location

2011-01-25 Thread Eric Vineyard
custom tags into a website I'm working with, but I'm not having much success with one in particular, cf_location. I'm using the 2.0.1 hosted on Adobe's website. The CF server I'm running is CF7, and I'm using a designated sub directory listed in the coldfusion admin as my custom tags

RE: Custom Tags, cf_location

2011-01-25 Thread Bobby Hartsfield
it is using that template instead. Just a thought. .:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Eric Vineyard [mailto:eric.viney...@hotmail.com] Sent: Tuesday, January 25, 2011 3:45 PM To: cf-talk Subject: Re: Custom Tags, cf_location

RE: Custom Tags, cf_location

2011-01-25 Thread Andrew Scott
Then use addToken=false Regards, Andrew Scott http://www.andyscott.id.au/ -Original Message- From: Eric Vineyard [mailto:eric.viney...@hotmail.com] Sent: Wednesday, 26 January 2011 7:45 AM To: cf-talk Subject: Re: Custom Tags, cf_location Why not use cflocation / http

Re: Custom Tags, cf_location

2011-01-25 Thread Al Musella, DPM
Check to see if there is another file named CF_Location in the customs tag directory or in the directory your template is in that is calling the tag At 03:34 PM 1/25/2011, you wrote: Hi, I'm trying to implement custom tags into a website I'm working with, but I'm not having much success

Re: Custom Tags, cf_location

2011-01-25 Thread Kelly Matthews
um... then why not use: cflocation addtoken=no / addtoken=no doesn't add the unnecessary cftoken Because the website that I'm working with has thousands of cflocation's. My entire reason for using cf_location was so that I wouldn't have the annoying, and highly unneccessary cftoken in my

RE: Custom Tags, cf_location

2011-01-25 Thread Bobby Hartsfield
Message- From: Eric Vineyard [mailto:eric.viney...@hotmail.com] Sent: Tuesday, January 25, 2011 3:45 PM To: cf-talk Subject: Re: Custom Tags, cf_location Why not use cflocation / http://livedocs.adobe. com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp. htm?context

Re: Custom Tags, cf_location

2011-01-25 Thread Claude Schnéegans
It's much easier to just simply use a custom tag that defaults to no than to Find and Replace every single tag with addToken=no. It's not more difficult to replace all occurrences of 'CFLOCATION' by 'CFLOCATION addToken=no' than by 'CF_LOCATION'

RE: Custom Tags, cf_location

2011-01-25 Thread Andrew Scott
And people wonder why ColdFusion gets a bad name!! Regards, Andrew Scott http://www.andyscott.id.au/ ~| Order the Adobe Coldfusion Anthology now!

Re: Custom Tags, cf_location

2011-01-25 Thread John M Bliss
...because noobs aren't yet find-and-replace ninjas? Doubt it. On Tue, Jan 25, 2011 at 5:35 PM, Andrew Scott andr...@andyscott.id.auwrote: And people wonder why ColdFusion gets a bad name!! Regards, Andrew Scott http://www.andyscott.id.au/

RE: Custom Tags, cf_location

2011-01-25 Thread Andrew Scott
Yet he planned to replace all cflocation with cf_location, didn't he? Regards, Andrew Scott http://www.andyscott.id.au/ -Original Message- From: John M Bliss [mailto:bliss.j...@gmail.com] Sent: Wednesday, 26 January 2011 10:41 AM To: cf-talk Subject: Re: Custom Tags, cf_location

Re: Custom Tags, cf_location

2011-01-25 Thread Michael Firth
Don't you just love how developers like Bobby and Andrew assume everybody should follow the expert way. Its developers like this that give Coldfusion the bad name. Yet he planned to replace all cflocation with cf_location, didn't he? Regards, Andrew Scott http://www.andyscott.id.au/

RE: Custom Tags, cf_location

2011-01-25 Thread Andrew Scott
It has nothing to do with being expert or not, but common sense. Regards, Andrew Scott http://www.andyscott.id.au/ -Original Message- From: Michael Firth [mailto:mfsqlser...@gmail.com] Sent: Wednesday, 26 January 2011 10:38 AM To: cf-talk Subject: Re: Custom Tags, cf_location

Re: Custom Tags, cf_location

2011-01-25 Thread John M Bliss
: Custom Tags, cf_location ...because noobs aren't yet find-and-replace ninjas? Doubt it. On Tue, Jan 25, 2011 at 5:35 PM, Andrew Scott andr...@andyscott.id.auwrote: And people wonder why ColdFusion gets a bad name!! Regards, Andrew Scott http://www.andyscott.id.au

Re: Custom Tags, cf_location

2011-01-25 Thread Michael Firth
or not, but common sense. Regards, Andrew Scott http://www.andyscott.id.au/ -Original Message- From: Michael Firth [mailto:mfsqlser...@gmail.com] Sent: Wednesday, 26 January 2011 10:38 AM To: cf-talk Subject: Re: Custom Tags, cf_location Don't you just love how developers like

Re: Custom Tags, cf_location

2011-01-25 Thread Michael Firth
Subject: Re: Custom Tags, cf_location ...because noobs aren't yet find-and-replace ninjas? Doubt it. On Tue, Jan 25, 2011 at 5:35 PM, Andrew Scott andr...@andyscott.id.auwrote: And people wonder why ColdFusion gets a bad name!! Regards, Andrew Scott http://www.andyscott.id.au

RE: Custom Tags, cf_location

2011-01-25 Thread Andrew Scott
I actually did answer it, if you look hard enough. Regards, Andrew Scott http://www.andyscott.id.au/ -Original Message- From: Michael Firth [mailto:mfsqlser...@gmail.com] Sent: Wednesday, 26 January 2011 10:49 AM To: cf-talk Subject: Re: Custom Tags, cf_location Its amazing

Re: Custom Tags, cf_location

2011-01-25 Thread Michael Firth
://www.andyscott.id.au/ -Original Message- From: Michael Firth [mailto:mfsqlser...@gmail.com] Sent: Wednesday, 26 January 2011 10:49 AM To: cf-talk Subject: Re: Custom Tags, cf_location Its amazing how fast the experts forget they were beginners at one time. It has everything

Re: Custom Tags, cf_location

2011-01-25 Thread John M Bliss
: Wednesday, 26 January 2011 10:49 AM To: cf-talk Subject: Re: Custom Tags, cf_location Its amazing how fast the experts forget they were beginners at one time. It has everything with being a so called expert. You could have just answered his question in a more professional manner

Re: Custom Tags, cf_location

2011-01-25 Thread Michael Firth
actually did answer it, if you look hard enough. Regards, Andrew Scott http://www.andyscott.id.au/ -Original Message- From: Michael Firth [mailto:mfsqlser...@gmail.com] Sent: Wednesday, 26 January 2011 10:49 AM To: cf-talk Subject: Re: Custom Tags, cf_location Its amazing

RE: Custom Tags, cf_location

2011-01-25 Thread Andrew Scott
Scott http://www.andyscott.id.au/ -Original Message- From: Michael Firth [mailto:mfsqlser...@gmail.com] Sent: Wednesday, 26 January 2011 10:56 AM To: cf-talk Subject: Re: Custom Tags, cf_location Your not just getting it. The sad part is you never will. Sure you answered

Re: Custom Tags, cf_location

2011-01-25 Thread Russ Michaels
The problem with us experts sometimes is that we do forget the daft things that noobs do and common sense comes with experience. However what does get my goat is an unwillingness to RTFM or google search. There is a HUGE resource of documentation and tutorials out there, and sometimes no matter

Re: Custom Tags, cf_location

2011-01-25 Thread Russ Michaels
Despite Andrews lack of partience he is however correct. Replacing cflocation with cflocation addtoken=false would be much better and is of course almost as easy to do.If the URL is different in every cflocation then a REGEX will be required, bit there are some regex gurus on here who can help

Re: Custom Tags, cf_location

2011-01-25 Thread Michael Firth
Gotta say Andrew and Russ you two take the cake. Who cares now if your right? All meaning has been lost. Caution to anybody that is new to ColdFusion. You will sometimes encounter developers who give double meaning and treat you with a lack of respect. Arrogance. Complete Egos at work

RE: Custom Tags, cf_location

2011-01-25 Thread Andrew Scott
: Wednesday, 26 January 2011 11:19 AM To: cf-talk Subject: Re: Custom Tags, cf_location Gotta say Andrew and Russ you two take the cake. Who cares now if your right? All meaning has been lost. Caution to anybody that is new to ColdFusion. You will sometimes encounter developers who give double

Re: Custom Tags, cf_location

2011-01-25 Thread John M Bliss
I follow. I'm an expert (14 or so years) and I like to think I Google first and ask questions later. Having said that, cf-talk is (generally) comprised of people with such a high D-18 roll of: - intelligence - wisdom - charisma ...that it's easy to understand why people of all experience

Re: Custom Tags, cf_location

2011-01-25 Thread Michael Firth
stated he is no noob as well, or did you not read that? Regards, Andrew Scott http://www.andyscott.id.au/ -Original Message- From: Michael Firth [mailto:mfsqlser...@gmail.com] Sent: Wednesday, 26 January 2011 11:19 AM To: cf-talk Subject: Re: Custom Tags, cf_location

Re: Custom Tags, cf_location

2011-01-25 Thread Michael Firth
John, You hit it right on the button. I would dare say your the true expert here. Mike On Jan 25, 2011, at 7:23 PM, John M Bliss wrote: I follow. I'm an expert (14 or so years) and I like to think I Google first and ask questions later. Having said that, cf-talk is (generally)

Re: Custom Tags, cf_location

2011-01-25 Thread John M Bliss
://www.andyscott.id.au/ -Original Message- From: Michael Firth [mailto:mfsqlser...@gmail.com] Sent: Wednesday, 26 January 2011 11:19 AM To: cf-talk Subject: Re: Custom Tags, cf_location Gotta say Andrew and Russ you two take the cake. Who cares now if your right? All

Re: Custom Tags, cf_location

2011-01-25 Thread Kelly Matthews
My thoughts exactly. Figured maybe I was missing something. lol Yet he planned to replace all cflocation with cf_location, didn't he? Regards, Andrew Scott http://www.andyscott.id.au/ ~| Order the Adobe Coldfusion Anthology

Re: Custom Tags, cf_location

2011-01-25 Thread Michael Grant
://www.andyscott.id.au/ -Original Message- From: John M Bliss [mailto:bliss.j...@gmail.com] Sent: Wednesday, 26 January 2011 10:41 AM To: cf-talk Subject: Re: Custom Tags, cf_location ...because noobs aren't yet find-and-replace ninjas? Doubt it. On Tue, Jan 25, 2011

RE: Custom Tags, cf_location

2011-01-25 Thread Andrew Scott
[mailto:bliss.j...@gmail.com] Sent: Wednesday, 26 January 2011 11:27 AM To: cf-talk Subject: Re: Custom Tags, cf_location Btw if you read the guys comment, he also clearly stated he is no noob aswell, or did you not read that? He wrote, I don't really consider myself to be a novice with CF

Re: Custom Tags, cf_location

2011-01-25 Thread Kelly Matthews
Good God! Having flashbacks from high school with this thread! LOL Your not just getting it and I don't think you every will. You come off as sounding like a jerk plain and simple, so who cares if your right. ~| Order

Re: Custom Tags, cf_location

2011-01-25 Thread Michael Grant
+1 for the rpg reference... nerd. On Tue, Jan 25, 2011 at 7:23 PM, John M Bliss bliss.j...@gmail.com wrote: I follow. I'm an expert (14 or so years) and I like to think I Google first and ask questions later. Having said that, cf-talk is (generally) comprised of people with such a high

Re: Custom Tags, cf_location

2011-01-25 Thread Wil Genovese
STOP THE INSANITY - the horse is dead quit whipping it.. PLEASE!! Wil Genovese One man with courage makes a majority. -Andrew Jackson A fine is a tax for doing wrong. A tax is a fine for doing well. On Jan 25, 2011, at 6:33 PM, Michael Grant wrote: +1 for the rpg reference... nerd.

Re: Custom Tags, cf_location

2011-01-25 Thread John M Bliss
nerd. Guilty. :-) On Tue, Jan 25, 2011 at 6:33 PM, Michael Grant mgr...@modus.bz wrote: +1 for the rpg reference... nerd. On Tue, Jan 25, 2011 at 7:23 PM, John M Bliss bliss.j...@gmail.com wrote: I follow. I'm an expert (14 or so years) and I like to think I Google first and

Re: Custom Tags, cf_location

2011-01-25 Thread Michael Firth
: Custom Tags, cf_location ...because noobs aren't yet find-and-replace ninjas? Doubt it. On Tue, Jan 25, 2011 at 5:35 PM, Andrew Scott andr...@andyscott.id.auwrote: And people wonder why ColdFusion gets a bad name!! Regards, Andrew Scott http://www.andyscott.id.au

Re: Custom Tags, cf_location

2011-01-25 Thread Russ Michaels
/ -Original Message- From: John M Bliss [mailto:bliss.j...@gmail.com] Sent: Wednesday, 26 January 2011 10:41 AM To: cf-talk Subject: Re: Custom Tags, cf_location ...because noobs aren't yet find-and-replace ninjas? Doubt it. On Tue, Jan 25, 2011 at 5:35 PM, Andrew Scott andr

Re: Custom Tags, cf_location

2011-01-25 Thread Michael Grant
cflocation with cf_location, didn't he? Regards, Andrew Scott http://www.andyscott.id.au/ -Original Message- From: John M Bliss [mailto:bliss.j...@gmail.com] Sent: Wednesday, 26 January 2011 10:41 AM To: cf-talk Subject: Re: Custom Tags, cf_location ...because noobs

Re: Custom Tags, cf_location

2011-01-25 Thread Michael Firth
Please. So what? Somebody who was actually helping wouldnt feel the need for such self promotion. Face it your only doimg it to gloss the resume On Jan 25, 2011 8:04 PM, Russ Michaels r...@michaels.me.uk wrote: Michael, perhaps you need to look a bit harder before making such statements, I

Re: Custom Tags, cf_location

2011-01-25 Thread Russ Michaels
Well done on your self promotion as a Jerk Michael, you are doing an absolutely sterling job and you definitely deserve everything you get in recognition of your gr8 talent. three cheers for Michael. On Wed, Jan 26, 2011 at 1:12 AM, Michael Firth mfsqlser...@gmail.comwrote: Please. So

Re: Custom Tags, cf_location

2011-01-25 Thread Michael Firth
Wow. Sounds like the expert is taking it personally. Good to know you like to resort to personal attacks like this. Real class On Jan 25, 2011 8:24 PM, Russ Michaels r...@michaels.me.uk wrote: Well done on your self promotion as a Jerk Michael, you are doing an absolutely sterling job and

Re: Custom Tags, cf_location

2011-01-25 Thread Kelly Matthews
Seriously Michael I don't know you, but I think you've blown this whole thing out of proportion. Why not take the high road and just give it a rest? I suffer from Last word syndrome at times, maybe that's what we're dealing with here. We shall see. :) Wow. Sounds like the expert is taking

Re: Custom Tags, cf_location

2011-01-25 Thread Michael Firth
Kelly, I am not the one resorting to personal attacks and this is a real big problem with expert programmers attacking new people to the profession but yet claim to help them. Russ claims to help but attacks his peers by calling them a jerk. Real professional. On Jan 25, 2011 8:35 PM, Kelly

RE: Custom Tags, cf_location

2011-01-25 Thread Andrew Scott
/ -Original Message- From: Michael Firth [mailto:mfsqlser...@gmail.com] Sent: Wednesday, 26 January 2011 12:40 PM To: cf-talk Subject: Re: Custom Tags, cf_location Kelly, I am not the one resorting to personal attacks and this is a real big problem with expert programmers attacking new people

Re: Custom Tags, cf_location

2011-01-25 Thread Russ Michaels
Erm, read your own posts. You are the one attacking and insulting everyone, you called everyone a jerk, and then got all upset when it was said right back you. You make baseless claims about people contributing nothing, then throw out even more insults when you are proved wrong. The only one

Re: RE: Custom Tags, cf_location

2011-01-25 Thread Michael Firth
[mailto:mfsqlser...@gmail.com] Sent: Wednesday, 26 January 2011 12:40 PM To: cf-talk Subject: Re: Custom Tags, cf_location Kelly, I am not the one resorting to personal attacks and this is a real big problem with expert programmers attacking new people to the profession but yet claim to help them

Re: Custom Tags, cf_location

2011-01-25 Thread Michael Firth
Just cant let it go can you. Real professional. On Jan 25, 2011 8:47 PM, Russ Michaels r...@michaels.me.uk wrote: Erm, read your own posts. You are the one attacking and insulting everyone, you called everyone a jerk, and then got all upset when it was said right back you. You make

Re: Custom Tags, cf_location

2011-01-25 Thread Russ Michaels
ok that's enough now, you are now added to my spam filter, so feel free to get the last word in as I wont see it. On Wed, Jan 26, 2011 at 1:49 AM, Michael Firth mfsqlser...@gmail.comwrote: Just cant let it go can you. Real professional. On Jan 25, 2011 8:47 PM, Russ Michaels

Re: Custom Tags, cf_location

2011-01-25 Thread Michael Firth
Wow how mature and professional. Spam filter. Guess I was right lmao On Jan 25, 2011 8:51 PM, Russ Michaels r...@michaels.me.uk wrote: ok that's enough now, you are now added to my spam filter, so feel free to get the last word in as I wont see it. On Wed, Jan 26, 2011 at 1:49 AM, Michael

RE: Custom Tags, cf_location

2011-01-25 Thread DURETTE, STEVEN J (ATTASIAIT)
: Michael Firth [mailto:mfsqlser...@gmail.com] Sent: Tuesday, January 25, 2011 6:49 PM To: cf-talk Subject: Re: Custom Tags, cf_location Its amazing how fast the experts forget they were beginners at one time. It has everything with being a so called expert. You could have just answered his question

Re: Custom Tags, cf_location

2011-01-25 Thread Dave Watts
That fails to address OP's question.  Instead, it begs his question... I hate to get into this, but ... I don't think you're using beg the question correctly. When you beg the question, you're assuming the answer. Whatever Andrew's doing, I don't think it's that.

Re: RE: Custom Tags, cf_location

2011-01-25 Thread Michael Firth
not be the opinion of my friends, others on the list, my employer, or the general public) -Original Message- From: Michael Firth [mailto:mfsqlser...@gmail.com] Sent: Tuesday, January 25, 2011 6:49 PM To: cf-talk Subject: Re: Custom Tags, cf_location Its amazing how fast the experts

Re: Custom Tags, cf_location

2011-01-25 Thread Michael Firth
Wikipedia is not exactly a great source for verifying something lol. Just saying. On Jan 25, 2011, at 9:26 PM, Dave Watts wrote: That fails to address OP's question. Instead, it begs his question... I hate to get into this, but ... I don't think you're using beg the question

Re: Custom Tags, cf_location

2011-01-25 Thread John M Bliss
Granted. I guess I should have said something like, You didn't answer his question. Instead, you re-worded a bit of his question in a most un-helpful form. Like, You ask, is the sky blue. I answer, sky...blue...many wonder. On Tue, Jan 25, 2011 at 8:26 PM, Dave Watts dwa...@figleaf.com

Re: Custom Tags, cf_location

2011-01-25 Thread Dave Watts
Wikipedia is not exactly a great source for verifying something lol.  Just saying. It's satisfactory for undisputed facts, and it's easier to remember off the cuff than other sites that list logical fallacies, which is what begging the question is. I use it quite often to provide simple

Re: Custom Tags, cf_location

2011-01-25 Thread Michael Firth
Interesting. In my spare time I am going back to college and almost to a tee all of my professors warn about wikipedia and how much misinformation is on there. What is really something is that at my previous school the professors were the same way about wikipedia. Guess you have to take it

Re: Custom Tags, cf_location

2011-01-25 Thread Brandon
Wow. This thread is FANTASTIC. Michael, you can't be so sensitive. In programming, there are a LOT of egos we all have to deal with. None of the comments were that condescending, and if they really have 18's for stats, well it might be a good idea to just listen to what they have to say. I

Re: Custom Tags, cf_location

2011-01-25 Thread Dave Watts
Interesting.  In my spare time I am going back to college and almost to a tee all of my professors warn about wikipedia and how much misinformation is on there.  What is really something is that at my previous school the professors were the same way about wikipedia.  Guess you have to take

Re: Custom Tags, cf_location

2011-01-25 Thread Michael Firth
Ok I see your point. I cannot say I agree, but I do see your viewpoint. Yes, the professors pointed that out as well, but also said that even on off the cuff things it can be a very dangerous tool because you don't know who is doing the writing. In other words are they true and supported

Re: Custom Tags, cf_location

2011-01-25 Thread Sean Corfield
On Tue, Jan 25, 2011 at 6:53 PM, Michael Firth mfsqlser...@gmail.com wrote: Ok I see your point.  I cannot say I agree, but I do see your viewpoint.   Yes, the professors pointed that out as well, but also said that even on off the cuff things it can be a very dangerous tool because you don't

Re: Custom Tags, cf_location

2011-01-25 Thread Michael Firth
LMAO. Now my sides are hurting. On Jan 25, 2011, at 10:10 PM, Sean Corfield wrote: On Tue, Jan 25, 2011 at 6:53 PM, Michael Firth mfsqlser...@gmail.com wrote: Ok I see your point. I cannot say I agree, but I do see your viewpoint. Yes, the professors pointed that out as well, but also

RE: Custom Tags, cf_location

2011-01-25 Thread Bobby Hartsfield
Subject: RE: Custom Tags, cf_location Michael, I don't know if you suffer from Aspeger's or Higher Functioning Autism as it is known over there. But I think you really need to adhere to what people are saying, back off calm down and have a good think about it later. Regards, Andrew Scott http

Re: Custom Tags, cf_location

2011-01-25 Thread Michael Firth
Hartsfield http://acoderslife.com -Original Message- From: Andrew Scott [mailto:andr...@andyscott.id.au] Sent: Tuesday, January 25, 2011 8:42 PM To: cf-talk Subject: RE: Custom Tags, cf_location Michael, I don't know if you suffer from Aspeger's or Higher Functioning Autism

Re: Custom Tags, cf_location

2011-01-25 Thread Sean Corfield
On Tue, Jan 25, 2011 at 7:50 PM, Michael Firth mfsqlser...@gmail.com wrote: It's too bad that you, Russ, Andrew have formulated opinions without really knowing me. A friend just pointed me to Michael's posts on cf-jobs so I could get to know him better... (I've tried really hard not to

RE: Custom Tags, cf_location

2011-01-25 Thread Andrew Scott
: Custom Tags, cf_location Bobby, I know you are filtering, but if you see this post you may want to look at some of the other ones. It's too bad that you, Russ, Andrew have formulated opinions without really knowing me. Sorry, but thats a real dangerous line of thought if you ask me. Also

List Of Custom Tags

2010-06-07 Thread Paul Alkema
Is there any possible way to pull a list of all custom tags available? ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion Archive

  1   2   3   4   5   6   7   >