[cfaussie] Re: Any way to get a list of all cftags?

2007-08-29 Thread Robin Hilliard
Here's an idea: All tags T seem to have a corresponding TTag.class inside cfusion.jar's coldfusion.tagext package. So from the command line I get: Similitude:~/jrun/servers/cf8b2/cf8rc2/WEB-INF/cfusion/lib robin$ jar tf cfusion.jar | grep .*Tag\.class coldfusion/tagext/AntTag.class coldfu

[cfaussie] Re: Any way to get a list of all cftags?

2007-08-28 Thread Charlie Arehart \(lists account\)
: Tuesday, August 28, 2007 7:38 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Any way to get a list of all cftags? Charlie, No easier than Marks original problem, if it was a case of being able to catch the runtime exception then that would be great, problem solved. As for cfincludes, they

[cfaussie] Re: Any way to get a list of all cftags?

2007-08-28 Thread Andrew Scott
, 29 August 2007 3:46 AM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Any way to get a list of all cftags? Easier than CFInclude? Or easier than the OO solution? I'll assume you mean the latter, and will bow out of that debate, as I have nothing more to add. And to Steve, who won

[cfaussie] Re: Any way to get a list of all cftags?

2007-08-28 Thread Charlie Arehart \(lists account\)
ilto:[EMAIL PROTECTED] On Behalf Of Andrew Scott Sent: Tuesday, August 28, 2007 1:11 AM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Any way to get a list of all cftags? Charlie, Again I would agree with you, but with the differences in all CFML Engines would there actually be an easi

[cfaussie] Re: Any way to get a list of all cftags?

2007-08-27 Thread Andrew Scott
ssage- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andrew Scott Sent: Monday, August 27, 2007 11:42 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Any way to get a list of all cftags? Well, As much as I agree with Charlie, I'll also add that this

[cfaussie] Re: Any way to get a list of all cftags?

2007-08-27 Thread Steve Onnis
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andrew Scott Sent: Monday, August 27, 2007 11:42 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Any way to get a list of all cftags? Well, As much as I agree with Charlie, I'll also add that this is a good exam

[cfaussie] Re: Any way to get a list of all cftags?

2007-08-27 Thread Mark Mandel
Original Message- > From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf > Of Andrew Scott > Sent: Monday, August 27, 2007 11:42 PM > To: cfaussie@googlegroups.com > Subject: [cfaussie] Re: Any way to get a list of all cftags? > > > Well, > > As much as

[cfaussie] Re: Any way to get a list of all cftags?

2007-08-27 Thread Charlie Arehart \(lists account\)
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andrew Scott Sent: Monday, August 27, 2007 11:42 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Any way to get a list of all cftags? Well, As much as I agree with Charlie, I'll also add that this is a good example

[cfaussie] Re: Any way to get a list of all cftags?

2007-08-27 Thread Andrew Scott
ssage- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Charlie Arehart (lists account) Sent: Tuesday, 28 August 2007 12:02 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Any way to get a list of all cftags? I'll throw out that for the same reason, it wouldn't

[cfaussie] Re: Any way to get a list of all cftags?

2007-08-27 Thread Raymond Camden
In case people do doubt Charlie, I'll back him up here. I used this method myself in a few apps myself, even the old Spectra. On 8/27/07, Charlie Arehart (lists account) <[EMAIL PROTECTED]> wrote: > > I'll throw out that for the same reason, it wouldn't have worked if one > tried to say "if runni

[cfaussie] Re: Any way to get a list of all cftags?

2007-08-27 Thread Charlie Arehart \(lists account\)
ht serve as a catalyst for someone to think of another solution. /charlie -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of MrBuzzy Sent: Monday, August 27, 2007 4:32 AM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Any way to get a list of all cftags

[cfaussie] Re: Any way to get a list of all cftags?

2007-08-27 Thread Andrew Scott
> > And you don't need to code against specific products (assuming they > all > > > catch). > > > > > > > > > Regards > > > Dale Fraser > > > > > > http://dalefraser.blogspot.com > > > > > > > > >

[cfaussie] Re: Any way to get a list of all cftags?

2007-08-27 Thread MrBuzzy
o code against specific products (assuming they all > > catch). > > > > > > Regards > > Dale Fraser > > > > http://dalefraser.blogspot.com > > > > > > -----Original Message- > > From: cfaussie@googlegroups.com [mailto: [EMAIL PROTECTED] On

[cfaussie] Re: Any way to get a list of all cftags?

2007-08-27 Thread Andrew Scott
ing they all > catch). > > > Regards > Dale Fraser > > http://dalefraser.blogspot.com > > > -Original Message- > From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On > Behalf > Of Mark Mandel > Sent: Monday, 27 August 2007 5:47 PM > To: cfaussie@goo

[cfaussie] Re: Any way to get a list of all cftags?

2007-08-27 Thread Dale Fraser
e] Re: Any way to get a list of all cftags? Yeah, that's a good idea (and what I did in the first place), unfortunately in CF8 there is a setting to turn off access to coldfuion.* java objects, so I wanted to have preferential treatment to the cfdbinfo tag, if it existed. Mark On 8/27/0

[cfaussie] Re: Any way to get a list of all cftags?

2007-08-27 Thread Haikal Saadh
Ah, if that's the only issue, aren't you all set? If cf8, use cfdbinfo. else, use your wrapper? There's also the admin API which seems to do the same thing for CF 7? http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentation&file=1

[cfaussie] Re: Any way to get a list of all cftags?

2007-08-27 Thread Mark Mandel
Yeah, that's a good idea (and what I did in the first place), unfortunately in CF8 there is a setting to turn off access to coldfuion.* java objects, so I wanted to have preferential treatment to the cfdbinfo tag, if it existed. Mark On 8/27/07, Haikal Saadh <[EMAIL PROTECTED]> wrote: > > To rep

[cfaussie] Re: Any way to get a list of all cftags?

2007-08-27 Thread Haikal Saadh
To reply to your request for an Orange with an Apple, why not write a thin wrapper around java.sql.DatabaseMetaData? http://java.sun.com/j2se/1.4.2/docs/api/java/sql/DatabaseMetaData.html particularly http://java.sun.com/j2se/1.4.2/docs/api/java/sql/DatabaseMetaData.html#getTables(java.lang.Stri

[cfaussie] Re: Any way to get a list of all cftags?

2007-08-27 Thread Steve Onnis
@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Mandel Sent: Monday, 27 August 2007 5:41 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Any way to get a list of all cftags? And writing my own defeats the whole purpose of what I wanted to accomplish in the first place, which was

[cfaussie] Re: Any way to get a list of all cftags?

2007-08-27 Thread Mark Mandel
ttp://dalefraser.blogspot.com > > > -Original Message- > From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf > Of Mark Mandel > Sent: Monday, 27 August 2007 5:27 PM > To: cfaussie@googlegroups.com > Subject: [cfaussie] Re: Any way to get a list of

[cfaussie] Re: Any way to get a list of all cftags?

2007-08-27 Thread Dale Fraser
andel Sent: Monday, 27 August 2007 5:27 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Any way to get a list of all cftags? Yes, but I'm writing framework code, that is supporting multiple versions of products, so, there is no 'you must be on CF8'. Basically, if the feature

[cfaussie] Re: Any way to get a list of all cftags?

2007-08-27 Thread Mark Mandel
al Message- > > From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On > > Behalf Of Mark Mandel > > Sent: Monday, 27 August 2007 4:32 PM > > To: cfaussie@googlegroups.com > > Subject: [cfaussie] Re: Any way to get a list of all cftags? > > > > > > I du

[cfaussie] Re: Any way to get a list of all cftags?

2007-08-27 Thread Steve Onnis
regardless. -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Mandel Sent: Monday, 27 August 2007 5:20 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Any way to get a list of all cftags? That's what I have to do.. It just means that say, i

[cfaussie] Re: Any way to get a list of all cftags?

2007-08-27 Thread Steve Onnis
-Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Mandel Sent: Monday, 27 August 2007 5:20 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Any way to get a list of all cftags? That's what I have to do.. It just means that sa

[cfaussie] Re: Any way to get a list of all cftags?

2007-08-27 Thread Mark Mandel
glegroups.com > Subject: [cfaussie] Re: Any way to get a list of all cftags? > > > I dunno if that is going to cut it - > > Basically, I want to know if cfdbinfo is available as a tag. > > Since I doing framework development, I'd rather implement my code on a 'is

[cfaussie] Re: Any way to get a list of all cftags?

2007-08-27 Thread Steve Onnis
Um why don't you just check the Server.ColdFusion.ProductVersion value? -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Mandel Sent: Monday, 27 August 2007 4:32 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Any way to get a

[cfaussie] Re: Any way to get a list of all cftags?

2007-08-26 Thread Mark Mandel
I dunno if that is going to cut it - Basically, I want to know if cfdbinfo is available as a tag. Since I doing framework development, I'd rather implement my code on a 'is this tag enabled' level, rather than a 'on Cf8 do this, on CF7 do this, on Railo...' etc. I'm looking for a way to do that

[cfaussie] Re: Any way to get a list of all cftags?

2007-08-26 Thread Dale Fraser
Railio has that tag, but I don't think CF does. You could write one, not too hard. Would be easier to write a getUnsupportedTagList() function Then you just need to define the tags that you are interested in against each version that are not supported, (not that many). Would probably work bett

[cfaussie] Re: Any way to get a list of all cftags?

2007-08-26 Thread Andrew Scott
Mark, if I read your question right. You are looking for IsCustomFunction().. Andrew Scott Senior Coldfusion Developer Aegeon Pty. Ltd. www.aegeon.com.au Phone: +613 8676 4223 Mobile: 0404 998 273 -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behal