RE: Quick question on custom tags

2002-06-02 Thread Raymond Camden
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 30, 2002 1:17 PM To: CF-Talk Subject: RE: Quick question on custom tags Actually, you can.. cfmodule template=whatever blah blah /cfmodule Works well. On Thu, 30 May 2002, Rob Baxter wrote: One problem

RE: Quick question on custom tags

2002-05-31 Thread Philip Arnold - ASP
Are there any internal implemenation details which make cfmodule faster than the cf_ syntax, or was this what you were refering to? Just curious... CFMODULE naturally runs faster than CF_, it's to do with the way it's calling the custom tag There are general issues with using CF_ and the

Re: Quick question on custom tags

2002-05-30 Thread Paul Giesenhagen
cfmodule template=../customtags/formurl2attributes.cfm attribute=... /cfmodule Hope that helps! Paul Giesenhagen QuillDesign - Original Message - From: Brian Eckerman [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, May 30, 2002 10:05 AM Subject: Quick question

Re: Quick question on custom tags

2002-05-30 Thread todd
Unless it's in the global custom tags directory, no. The only other way is to call it via CFMODULE tag. On Thu, 30 May 2002, Brian Eckerman wrote: Is it possible to call a custom tag that resides in a folder other than the current folder. I am using cf_cf_formurl2attributes but I would

Re: Quick question on custom tags

2002-05-30 Thread Kreig Zimmerman
- Original Message - From: Brian Eckerman To: CF-Talk Sent: Thursday, May 30, 2002 11:05 AM Subject: Quick question on custom tags Is it possible to call a custom tag that resides in a folder other than the current folder. I am using cf_cf_formurl2attributes but I

RE: Quick question on custom tags

2002-05-30 Thread Joshua Tipton
Put it in your custom tags directory on your server or use cfmodule. -Original Message- From: Brian Eckerman [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 30, 2002 11:05 AM To: CF-Talk Subject: Quick question on custom tags Is it possible to call a custom tag that resides in a folder

RE: Quick question on custom tags

2002-05-30 Thread Philip Arnold - ASP
Is it possible to call a custom tag that resides in a folder other than the current folder. I am using cf_cf_formurl2attributes but I would like to have one copy residing in a commonfiles folder at root. This would take something like ../cf_cf_formurl2attributes right? It doesn't seem

RE: Quick question on custom tags

2002-05-30 Thread Tony_Petruzzi
cfmodule template= Anthony Petruzzi Webmaster 954-321-4703 [EMAIL PROTECTED] http://www.sheriff.org -Original Message- From: Brian Eckerman [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 30, 2002 11:05 AM To: CF-Talk Subject: Quick question on custom tags Is it possible to call a

RE: Quick question on custom tags

2002-05-30 Thread Eric J Hoffman
Use cfmodule to call it.Regards, Eric J. Hoffman Director of Internet Development DataStream Connexion, LLC (formerly Small Dog Design) -Original Message- From: Brian Eckerman [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 30, 2002 10:05 AM To: CF-Talk Subject: Quick question on custom

RE: Quick question on custom tags

2002-05-30 Thread Christine Lawson
:12 AM To: CF-Talk Subject: RE: Quick question on custom tags cfmodule template= Anthony Petruzzi Webmaster 954-321-4703 [EMAIL PROTECTED] http://www.sheriff.org -Original Message- From: Brian Eckerman [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 30, 2002 11:05 AM To: CF-Talk Subject

Re: Quick question on custom tags

2002-05-30 Thread Stephen Moretti
Brian, I am using cf_cf_formurl2attributes but I would like to have one copy residing in a commonfiles folder at root. This would take something like ../cf_cf_formurl2attributes right? It doesn't seem to work. If you've only got one copy of the tag in your custom tags directory,

RE: Quick question on custom tags

2002-05-30 Thread Rob Baxter
of the server logs). /rob -Original Message- From: Eric J Hoffman [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 30, 2002 11:14 AM To: CF-Talk Subject: RE: Quick question on custom tags Use cfmodule to call it.Regards, Eric J. Hoffman Director of Internet Development DataStream Connexion, LLC

Re: Quick question on custom tags

2002-05-30 Thread Stephen Moretti
If you have more than one copy then cfmodule name=commonfiles.formurl2attributes will do the trick... Whoops... meant to say... where commonfiles is the directory under CustomTags where the file formurl2attributes.cfm lives. You can have multiple levels of directories by adding them with

RE: Quick question on custom tags

2002-05-30 Thread Pascal Peters
Tel: +32 2 639 68 70 Fax: +32 2 639 68 99 Email: [EMAIL PROTECTED] Web: www.lrt.be -Original Message- From: Rob Baxter [mailto:[EMAIL PROTECTED]] Sent: donderdag 30 mei 2002 17:47 To: CF-Talk Subject: RE: Quick question on custom tags One problem with cfmodule is that you cannot take

RE: Quick question on custom tags

2002-05-30 Thread Rob Baxter
Subject: RE: Quick question on custom tags This is not true. You can perfectly use the ThisTag scope with cfmodule. In fact, I do it all the time. You have to be carefull with nesting cfmodules. Pascal Peters Certified ColdFusion Advanced Developer Macromedia Certified Instructor LR Technologies

Re: Quick question on custom tags

2002-05-30 Thread Paul Giesenhagen
PROTECTED]] Sent: Thursday, May 30, 2002 11:14 AM To: CF-Talk Subject: RE: Quick question on custom tags Use cfmodule to call it.Regards, Eric J. Hoffman Director of Internet Development DataStream Connexion, LLC (formerly Small Dog Design) -Original Message- From: Brian Eckerman

RE: Quick question on custom tags

2002-05-30 Thread Dave Watts
you're right, I just poorly phrased my answer. What I meant was that you lose the ability to take action between the start and end execution modes. Because I don't think when you call cfmodule there is an end execution mode. That's not correct either, though. You have an end execution

RE: Quick question on custom tags

2002-05-30 Thread Rob Baxter
Giesenhagen [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 30, 2002 12:27 PM To: CF-Talk Subject: Re: Quick question on custom tags Rob, You are incorrect, you can use the start stop ... cfmodule template = ../modules/custom_tag.cfmBlah Blah /cfmodule works just fine with the execution modes. Paul

RE: Quick question on custom tags

2002-05-30 Thread Dave Watts
What happens if in my custom tag I call another cfmodule /cfmodule? Will the parser barf? The only situation where you might have a problem is when you convert something like this to CFMODULE: cf_foo cf_bar /cf_foo Of course, if you do this: cfmodule template=foo.cfm cfmodule

RE: Quick question on custom tags

2002-05-30 Thread Philip Arnold - ASP
Ah, thanks guys. I wasn't aware you could have /cfmodule tag. Good to know. One question, and maybe this is what Pascal meant in his original reply. What happens if in my custom tag I call another cfmodule /cfmodule? Will the parser barf? Nah, it works happily - in fact, CFMODULE is

RE: Quick question on custom tags

2002-05-30 Thread todd
: Quick question on custom tags Use cfmodule to call it.Regards, Eric J. Hoffman Director of Internet Development DataStream Connexion, LLC (formerly Small Dog Design) -Original Message- From: Brian Eckerman [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 30, 2002 10:05 AM

RE: Quick question on custom tags

2002-05-30 Thread todd
. /rob -Original Message- From: Pascal Peters [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 30, 2002 11:57 AM To: CF-Talk Subject: RE: Quick question on custom tags This is not true. You can perfectly use the ThisTag scope with cfmodule. In fact, I do it all the time. You have

RE: Quick question on custom tags

2002-05-30 Thread Rob Baxter
To: CF-Talk Subject: RE: Quick question on custom tags Nah, it works happily - in fact, CFMODULE is faster than CF_ so it should work better for you Philip Arnold Technical Director Certified ColdFusion Developer ASP Multimedia Limited Switchboard: +44 (0)20 8680 8099 Fax: +44 (0)20 8686 7911

RE: Quick question on custom tags

2002-05-30 Thread todd
question on custom tags Nah, it works happily - in fact, CFMODULE is faster than CF_ so it should work better for you Philip Arnold Technical Director Certified ColdFusion Developer ASP Multimedia Limited Switchboard: +44 (0)20 8680 8099 Fax: +44 (0)20 8686 7911 www.aspmedia.co.uk