Re: List Of Custom Tags

2010-06-07 Thread Dave Watts
Is there any possible way to pull a list of all custom tags available? No, I don't think so. This would be a bit difficult for CF to accomplish, as custom tags can be invoked many different ways and can be placed in many different locations. Dave Watts, CTO, Fig Leaf Software http

Re: List Of Custom Tags

2010-06-07 Thread Jason Fisher
Especially true since any tag can be called from any location with CFMODULE. From: Dave Watts dwa...@figleaf.com Sent: Monday, June 07, 2010 4:26 PM To: cf-talk cf-talk@houseoffusion.com Subject: Re: List Of Custom Tags Is there any possible way

RE: List Of Custom Tags

2010-06-07 Thread Andrew Scott
cfdirectory action=read directory=customtagpath / -Original Message- From: Paul Alkema [mailto:paulalkemadesi...@gmail.com] Sent: Tuesday, 8 June 2010 5:54 AM To: cf-talk Subject: List Of Custom Tags Is there any possible way to pull a list of all custom tags available

RE: List Of Custom Tags

2010-06-07 Thread LRS Scout
...@gmail.com] Sent: Tuesday, 8 June 2010 5:54 AM To: cf-talk Subject: List Of Custom Tags Is there any possible way to pull a list of all custom tags available? ~| Order the Adobe Coldfusion Anthology now! http

Centralized hosting of custom tags

2010-01-14 Thread Michael Christensen
My question is simple - are there any options other than having the custom tag file on every server? ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists

RE: Centralized hosting of custom tags

2010-01-14 Thread brad
Subject: Centralized hosting of custom tags From: Michael Christensen mich...@strib.dk My question is simple - are there any options other than having the custom tag file on every server? ~| Want to reach the ColdFusion community

custom tags

2009-07-15 Thread RamaDevi Dobbala
Hi frnds, cffunction name=chkTAPrimaryAccess access=public returntype=numeric description=This checks whether user is a primary TA owner cfargument name=user_id required=no type=numeric default=#url.skey4# cfquery datasource=tatimesheet name=qGetTAAccess maxrows=2

building navigation using CF custom tags

2009-05-19 Thread mike pop
i've never used many custom tags before but I am currently tasked to take a dreamweaver HTML site using 4 navigation links and convert this into a site using a cold fusion custom tag for the navigation and content. the 4 navigation links go to different subdirectories and different files

Re: building navigation using CF custom tags

2009-05-19 Thread James Holmes
You could just use a cfinclude if a custom tag is too confusing. mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ 2009/5/19 mike pop mikepoplaw...@gmail.com: i've never used many custom tags before but I am currently tasked to take a dreamweaver HTML site

Re: building navigation using CF custom tags

2009-05-19 Thread John Drake
I agree with James - CF Includes are probably a better option. Create header, footer, and navigation templates from the existing html, and then do CFincludes on each web page to bring them in. ~| Want to reach the ColdFusion

Re: building navigation using CF custom tags

2009-05-19 Thread Gerald Guido
Create header, footer, and navigation templates from the existing html, and then do CFincludes on each web page to bring them in. Correct. G! On Tue, May 19, 2009 at 10:40 AM, John Drake thedangerman...@yahoo.comwrote: I agree with James - CF Includes are probably a better option. Create

Re: building navigation using CF custom tags

2009-05-19 Thread Gerald Guido
I have a custom tag for creating a menu items if you are interested in looking the code. This is the code for the tag (save as MenuItem.cfm) http://coz.pastebin.com/f17f1392a And this is how to use it. http://coz.pastebin.com/f17f1392a The beauty of custom tags is that you can create one piece

Re: building navigation using CF custom tags

2009-05-19 Thread Gerald Guido
for the tag (save as MenuItem.cfm) http://coz.pastebin.com/f17f1392a And this is how to use it. http://coz.pastebin.com/f17f1392a The beauty of custom tags is that you can create one piece of code for all of your menu items and if you ever need to make a global change you only have to change

Migrating Hosts -- custom tags

2009-01-06 Thread Michael K
I'm a complete CF newbie with a big (to me) technical hurdle. I know HTML fairly well, but I'm really a datacenter guy, so CF is beyond my skill set. Here's the problem: My company is moving our website to a new host and our previous host had some custom tags that aren't working on the new

Re: Migrating Hosts -- custom tags

2009-01-06 Thread Justin Scott
Michael K wrote: Here's the problem: My company is moving our website to a new host and our previous host had some custom tags that aren't working on the new host. Calls to the new hosting company's tech support don't get me very far, as they don't support custom tags, but allow them

Re: Migrating Hosts -- custom tags

2009-01-06 Thread Ian Skinner
Most likely you are just dealing with a simple Mapping issue and it should fairly easy to sort out once you know how and where ColdFusion calls custom tags and what you can do to control this. I really can't do much better then the ColdFusion documentation on Custom Tags that is available

Re: Migrating Hosts -- custom tags

2009-01-06 Thread Michael K
When you say custom tags are you referring to CFX_Tag or CF_Tag. If they are CFX_Tags then they would need to be loaded into the ColdFusion administrator by your hosting provider. If it's a CF_Tag then you can place the [tagname].cfm file into the same folder as the file calling

Re: Migrating Hosts -- custom tags

2009-01-06 Thread Ian Skinner
Michael K wrote: Looking at the code in the .cfm file, it looks like the tag begins with cf_ So you are saying that I can place these files in the same directory as the calling script and it should work? I tried a simple test and it didn't seem to help, but the problem may be more

Re: Migrating Hosts -- custom tags

2009-01-06 Thread Michael K
Either|or or both. A cf_ cfml customg tag is just that -- a cfml file and it can do anything that any other cfml code can do and some more being called as a tag. I get the impression that this simple fix didn't work because the code was written to call the tags from the server, not

Re: Migrating Hosts -- custom tags

2009-01-06 Thread Ian Skinner
for your help. That does not make sense in relation to Custom Tags. What I think you are refereing to is that ColdFusion servers and a special custom tag folder, that if you had access to the server you can put your cfml files. Files in this folder can be called by any other CFML code

Re: Nested Paired Custom Tags

2008-12-12 Thread Raymond Camden
Matt got it. Thanks for covering while this old man went to bed. ;) On Fri, Dec 12, 2008 at 12:41 AM, Matt Quackenbush quackfu...@gmail.com wrote: By moving the cfassociate/ inside of the executionMode check, you're only executing it once. If you have it outside of that check, it executes on

Re: Nested Paired Custom Tags

2008-12-12 Thread Brad Haas
That makes sense. I appreciate everyones help. By moving the cfassociate/ inside of the executionMode check, you're only executing it once. If you have it outside of that check, it executes on both executionMode=start and executionMode=end.

Nested Paired Custom Tags

2008-12-11 Thread Brad Haas
I've got a problem I've never run into before with nested custom tags. I'm using nested paired tags: cf_parent cf_child ...some text here /cf_child cf_child ...more text /cf_child /cf_parent When I dump #ThisTag# all the AssocAttribs are doubled. I belive I'm taking steps

Re: Nested Paired Custom Tags

2008-12-11 Thread Dave Watts
I've got a problem I've never run into before with nested custom tags. I'm using nested paired tags: cf_parent cf_child ...some text here /cf_child cf_child ...more text /cf_child /cf_parent When I dump #ThisTag# all the AssocAttribs are doubled. I belive I'm taking

Re: Nested Paired Custom Tags

2008-12-11 Thread Raymond Camden
/div /cfsavecontent /cfcase /cfswitch On Thu, Dec 11, 2008 at 6:09 PM, Dave Watts dwa...@figleaf.com wrote: I've got a problem I've never run into before with nested custom tags. I'm using nested paired tags: cf_parent cf_child ...some text here /cf_child cf_child

Re: Nested Paired Custom Tags

2008-12-11 Thread Brad Haas
Thanks Ray. That worked. The only problem now is I don't understand why. Anyone care to fill me in on why this little shuffle around of code prevented the double execution. Thanks again, ColdFused Remove the cfparam and move the cf_associate to the end portion of child. Here is my child.cfm:

Re: Nested Paired Custom Tags

2008-12-11 Thread Matt Quackenbush
By moving the cfassociate/ inside of the executionMode check, you're only executing it once. If you have it outside of that check, it executes on both executionMode=start and executionMode=end. ~| Adobe® ColdFusion® 8 software

Re: custom tags slow?

2008-11-13 Thread Brian Dumbledore
Ah! cfflush won't work.. thanks. I am trying to gather some points against using custom tags with a body when not really needed. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get

Re: custom tags slow?

2008-11-13 Thread Brian Dumbledore
Good idea.. Thanks ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive:

custom tags slow?

2008-11-12 Thread Brian Dumbledore
I put my header and footer html in a custom tag (header - executionmode eq start, footer - executionmode not start). And I have rest of my cf stuff within the tag body. Is this recommended? My concern is, having huge body will somehow slow down the tag/page ? Is it better to have two udfs?

Re: custom tags slow?

2008-11-12 Thread Barney Boisvert
There is slight overhead for invoking a custom tag, but it's similar to invoking a UDF, and small enough to safely ignore. Certainly nothing to worry about until you have load testing data that says you should, and even then there's a LONG list of other things to optimize first. cheers, barneyb

Re: custom tags slow?

2008-11-12 Thread Brian Dumbledore
Thanks. I just thought if the tag has a body too, then it somehow has to 'keep track' of the body hence it will be slow. But glad to know that isn't the case. ~| Adobe® ColdFusion® 8 software 8 is the most important and

Re: custom tags slow?

2008-11-12 Thread Casey Dougall
On Wed, Nov 12, 2008 at 4:52 PM, Brian Dumbledore [EMAIL PROTECTED] wrote: I put my header and footer html in a custom tag (header - executionmode eq start, footer - executionmode not start). And I have rest of my cf stuff within the tag body. Is this recommended? My concern is, having huge

RE: custom tags slow?

2008-11-12 Thread Gaulin, Mark
Hi CF does have a bit more work to do when you use open/close custom tags for exactly the reason you suspect. (It has to buffer the content between the tags, but it was going to buffer it anyway, just in a different place.) There are also some limitations (like not being able to use cfflush

Custom Tags

2008-07-25 Thread Steve LaBadie
I have a CustomTag called iPoll.cfm. Not sure if I should choose the Register Java CFX or Register C++ CFX. Does it matter? Steve LaBadie, Web Manager East Stroudsburg University 200 Prospect St. East Stroudsburg, Pa 18301 570-422-3999 [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]

RE: Custom Tags

2008-07-25 Thread Dave Watts
I have a CustomTag called iPoll.cfm. Not sure if I should choose the Register Java CFX or Register C++ CFX. Does it matter? You don't register CFML custom tags. You either put them in a specified custom tags directory, or reference them within your code using the CFMODULE tag, or specify a tag

Re: Custom Tags

2008-07-25 Thread Ian Skinner
Steve LaBadie wrote: I have a CustomTag called iPoll.cfm. Not sure if I should choose the Register Java CFX or Register C++ CFX. Does it matter? Yes it matters and you choose . drum role please neither. Java CFX are for Custom Tags written in ahem Java and C++ CFX are for Custom Tags

RE: Custom Tags

2008-07-25 Thread Steve LaBadie
Tags Steve LaBadie wrote: I have a CustomTag called iPoll.cfm. Not sure if I should choose the Register Java CFX or Register C++ CFX. Does it matter? Yes it matters and you choose . drum role please neither. Java CFX are for Custom Tags written in ahem Java and C++ CFX are for Custom

Custom Tags Ignoring CSS

2007-12-30 Thread Brian R. Polackoff
If anyone is working on a Sunday like I am, I am having a problem with custom tags that are ignoring CSS positioning. Below is an example of what is going on. When the screen is resized in IE, works fine is FF, the INFO Center content does not change position as the window is enlarged

RE: Custom Tags Ignoring CSS

2007-12-30 Thread Adrian Lynch
Message- From: Brian R. Polackoff Sent: 30 December 2007 21:18 To: CF-Talk Subject: Custom Tags Ignoring CSS If anyone is working on a Sunday like I am, I am having a problem with custom tags that are ignoring CSS positioning. Below is an example of what is going on. When the screen is resized

RE: Custom Tags Ignoring CSS

2007-12-30 Thread William Seiter
a book that changed your life? Go to: www.winninginthemargins.com Enter passkey: goldengrove Web Developer http://William.Seiter.com -Original Message- From: Brian R. Polackoff [mailto:[EMAIL PROTECTED] Sent: Sunday, December 30, 2007 1:18 PM To: CF-Talk Subject: Custom Tags Ignoring CSS

Re: custom tags and UNC or map network drives

2007-09-27 Thread Jochem van Dieten
Miguel Gonzalez wrote: Miguel_Gonzalez_Castaños wrote: We have a Windows Server 2003 running Coldfusion MX. When I try to create a custom tag using UNC paths or map network drives it simply doesn't work. Apparently only admits local drives. I have checked and the Application Server is

custom tags and UNC or map network drives

2007-09-26 Thread Miguel_Gonzalez_Casta
Hi, We have a Windows Server 2003 running Coldfusion MX. When I try to create a custom tag using UNC paths or map network drives it simply doesn't work. Apparently only admits local drives. Is there any way to work around this? We have the content of the IIS site hosted in a NAS and would

Re: custom tags and UNC or map network drives

2007-09-26 Thread Jochem van Dieten
Miguel_Gonzalez_Castaños wrote: We have a Windows Server 2003 running Coldfusion MX. When I try to create a custom tag using UNC paths or map network drives it simply doesn't work. Apparently only admits local drives. Is there any way to work around this? We have the content of the IIS

Re: custom tags and UNC or map network drives

2007-09-26 Thread Miguel Gonzalez
Miguel_Gonzalez_Castaños wrote: We have a Windows Server 2003 running Coldfusion MX. When I try to create a custom tag using UNC paths or map network drives it simply doesn't work. Apparently only admits local drives. Is there any way to work around this? We have the content of the IIS

RE: custom tags and UNC or map network drives

2007-09-26 Thread Dawson, Michael
-Original Message- From: Miguel Gonzalez [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 26, 2007 3:56 PM To: CF-Talk Subject: Re: custom tags and UNC or map network drives Miguel_Gonzalez_Castaños wrote: We have a Windows Server 2003 running Coldfusion MX. When I try to create

Re: custom tags and UNC or map network drives

2007-09-26 Thread Ian Skinner
Make sure that the domain account that CF is running under has the desired permissions to the network resource you want to map to. ~| Get the answers you are looking for on the ColdFusion Labs Forum direct from active

Re: Custom tags per application in CF 8

2007-08-20 Thread Raymond Camden
Looks like James beat me to it, but I'll add a few more links as well. http://www.coldfusionjedi.com/index.cfm/2007/7/31/ColdFusion-8-Ajax-Security-Features http://www.coldfusionjedi.com/index.cfm/2007/8/7/More-on-VerifyClient--ColdFusion-8-Ajax-Security-Feature On 8/19/07, James Holmes [EMAIL

Re: Custom tags per application in CF 8

2007-08-20 Thread Andrew Grosset
Thank you, Andrew. http://livedocs.adobe.com/coldfusion/8/htmldocs/ajaxdata_11.html#1156357 http://livedocs.adobe.com/coldfusion/8/htmldocs/AppEvents_02.html#1197782 -- mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/

Re: Custom tags per application in CF 8

2007-08-19 Thread Andrew Grosset
Raymond, could you tell me where I can find more info on the new ways to secure Ajax in CF 8, I currently use CF 7, many thanks, Andrew. cfapplication is NOT the recommended way to work with applications now - Application.cfc is. Therefore they added the feature there. There are other examples

Re: Custom tags per application in CF 8

2007-08-19 Thread James Holmes
http://livedocs.adobe.com/coldfusion/8/htmldocs/ajaxdata_11.html#1156357 http://livedocs.adobe.com/coldfusion/8/htmldocs/AppEvents_02.html#1197782 On 8/20/07, Andrew Grosset [EMAIL PROTECTED] wrote: Raymond, could you tell me where I can find more info on the new ways to secure Ajax in CF 8,

Re: Custom tags per application in CF 8

2007-08-18 Thread James Holmes
. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks. ~| ColdFusion 8 - Build next generation apps today, with easy PDF

Re: Custom tags per application in CF 8

2007-08-18 Thread Raymond Camden
at, instead of having them hard-coded I've seen that. But one could still do it using cfset this.mappings or in CFAPPLIACTION if it was availaible. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm

Re: Custom tags per application in CF 8

2007-08-18 Thread J.J. Merrick
. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks. ~| Download the latest ColdFusion 8

Re: Custom tags per application in CF 8

2007-08-17 Thread Sam Farmer
to this statement. IMO there should be some new parameter in the CFapplication tag, but I see nothing. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks

Re: Custom tags per application in CF 8

2007-08-17 Thread Claude Schneegans
CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks. ~| ColdFusion 8 - Build next generation apps today, with easy PDF and Ajax

Custom tags per application in CF 8

2007-08-17 Thread Claude Schneegans
there should be some new parameter in the CFapplication tag, but I see nothing. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks

Re: Custom tags per application in CF 8

2007-08-17 Thread Jochem van Dieten
Claude Schneegans wrote: I wrote a blog posting on how to do it (its real easy but you do have to use Application.cfc) Ok, I found it. Some weird place. Personnally I would just have added an attribute CustomTagPath in the CFapplication tag, Would you be able to do the following then:

Re: Custom tags per application in CF 8

2007-08-17 Thread Claude Schneegans
Would you be able to do the following then: Sure, the CFAPPLICATION tag can be called from any where, many times, but frankly I don't see the advantage. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please

RE: Custom tags per application in CF 8

2007-08-17 Thread Peterson, Chris
[mailto:[EMAIL PROTECTED] Sent: Friday, August 17, 2007 4:18 PM To: CF-Talk Subject: Re: Custom tags per application in CF 8 Would you be able to do the following then: Sure, the CFAPPLICATION tag can be called from any where, many times, but frankly I don't see the advantage

Re: Custom tags per application in CF 8

2007-08-17 Thread Raymond Camden
in the CFapplication tag, but, why make it simple? -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks

Re: Custom tags per application in CF 8

2007-08-17 Thread Claude Schneegans
. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks. ~| ColdFusion is delivering applications

CFUNITED news: Only 6 days left, Custom Tags, UDFs and CFCs, MiniMax7

2007-06-21 Thread Michael Smith
- Flex 2.0 and ColdFusion Functional and Load Testing 203 * Got Fusebox? t-shirt. * Fusebox YouTube video competition ends 6/22/07 * Interview with Shlomy Gantz on Custom Tags, UDFs and CFCs * Interview with Sponsor Jason Egan from CFDynamics I just wanted to let you guys know that you continue

Re: REPOST Re: FedEx Shipping custom tags

2007-05-29 Thread brendan puderbach
i bought the admin tools pro tag and it's crap. In fact thier included example applications don;t run properly and produce a pile of errors. I can sort of et thier examples to run but i'm not gonna waste anymore time digginthrough thier 1000s of lines of code to try to sort out a problem that

Bluedragon and nested custom tags?

2007-03-29 Thread Terry Schmitt
Hi All, I am trying to install avBlog, which looks pretty neat and full featured. I'm running into some issues that I believe are caused by a custom tag nested within itself: The error is: The file for the custom tag wcontentPane could not be located 114: vb:wcontentpane id=lhtab5

Re: upgrade: custom tags and verity trouble

2007-02-08 Thread Tom Chiverton
On Wednesday 07 Feb 2007, Carol Chandler wrote: We upgraded from MX 6.1 to 7 last night, running Linux (Fedoracore 6) and Apache 2.2. Most things went pretty smoothly, but our java CFX's aren't being found. How do you infer that from an error about an XML config file ? Message: The main

upgrade: custom tags and verity trouble

2007-02-07 Thread Carol Chandler
We upgraded from MX 6.1 to 7 last night, running Linux (Fedoracore 6) and Apache 2.2. Most things went pretty smoothly, but our java CFX's aren't being found. The tags are listed in the administrator as being registered Java CFX tags (I deleted and re-registered one, but it didn't help) and

unit test custom tags?

2006-12-05 Thread Johnny Le
Hi, Is there a way to do unit test custom tags? Johnny Open-Source CfTagLib http://code.google.com/p/cfttaglib/ ~| Create robust enterprise, web RIAs. Upgrade integrate Adobe Coldfusion MX7 with Flex 2 http

Re: memory issue with session scope in custom tags?

2006-12-04 Thread Daniel Roberts
Here's another coding tip from months ago. Its like they are trying to say something useful but then don't know how. I figured out what they are trying to say but the people who would benefit from this advice could not possibly get something useful out it. Really makes me wonder about them. ---

Re: memory issue with session scope in custom tags?

2006-12-04 Thread Daniel Roberts
But one thing that hasn't been touched on here is that the thread title is about session vars inside of a custom tag. I generally agree. However after re-reading the coding tips a few time I don't think this has anything to do with custom tags. I think they are calling cflock a custom tag instead

Re: memory issue with session scope in custom tags?

2006-12-04 Thread Raymond Camden
I _can_ think of one good tip about custom tags and session scope - don't use em together. If you want to really encapsulate your logic, you should pass in any session data to the tag, not directly access the session scope within the tag. (Sorry if that was mentioned on the thread already

RE: memory issue with session scope in custom tags?

2006-12-04 Thread Dave Watts
I just got the following advice in a HostMySite CF newsletter. Is there an issue with session scopes in custom tags? I've received other coding tips from them that make no sense or is just plain bad advice but not sure what to make of this. Coding Tip Discover methods used

Re: memory issue with session scope in custom tags?

2006-12-03 Thread Jochem van Dieten
Daniel Roberts wrote: I just got the following advice in a HostMySite CF newsletter. Is there an issue with session scopes in custom tags? No. Coding Tip Discover methods used by HostMySite's CFMX gurus to address your common coding and performance issues. Stop by the Developers

Re: memory issue with session scope in custom tags?

2006-12-03 Thread Doug Brown
, 2006 4:05 AM Subject: Re: memory issue with session scope in custom tags? Daniel Roberts wrote: I just got the following advice in a HostMySite CF newsletter. Is there an issue with session scopes in custom tags? No. Coding Tip Discover methods used by HostMySite's CFMX

Re: memory issue with session scope in custom tags?

2006-12-03 Thread James Holmes
No, because a session lock works only for the session in question, not the whole server. On 12/3/06, Doug Brown [EMAIL PROTECTED] wrote: Well, I would imagine that they are saying this for good reasons. Most of us as developers do not see the impact of exclusive locks, or at least not enough

Re: memory issue with session scope in custom tags?

2006-12-03 Thread Doug Brown
lock. Doug B. - Original Message - From: James Holmes [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Sunday, December 03, 2006 8:04 AM Subject: Re: memory issue with session scope in custom tags? No, because a session lock works only for the session in question

Re: memory issue with session scope in custom tags?

2006-12-03 Thread Matt Robertson
be no use of session vars inside of custom tags. All vars should be passed in as parameters and referenced via the attributes scope. -- [EMAIL PROTECTED] Janitor, MSB Web Systems mysecretbase.com ~| Introducing the Fusion Authority

Re: memory issue with session scope in custom tags?

2006-12-03 Thread Doug Brown
that there should be no use of session vars inside of custom tags. All vars should be passed in as parameters and referenced via the attributes scope. -- [EMAIL PROTECTED] Janitor, MSB Web Systems mysecretbase.com ~| Introducing

memory issue with session scope in custom tags?

2006-12-02 Thread Daniel Roberts
I just got the following advice in a HostMySite CF newsletter. Is there an issue with session scopes in custom tags? I've received other coding tips from them that make no sense or is just plain bad advice but not sure what to make of this. Coding Tip Discover methods used by HostMySite's

Re: memory issue with session scope in custom tags?

2006-12-02 Thread Andrew Grosset
InterestingI hope someone comes up with an answer. Andrew. I just got the following advice in a HostMySite CF newsletter. Is there an issue with session scopes in custom tags? I've received other coding tips from them that make no sense or is just plain bad advice but not sure what to make

Re: memory issue with session scope in custom tags?

2006-12-02 Thread Nicholas M Tunney
I posted a reply on their forum. Andrew Grosset wrote: InterestingI hope someone comes up with an answer. Andrew. I just got the following advice in a HostMySite CF newsletter. Is there an issue with session scopes in custom tags? I've received other coding tips from them

common funcs in custom tags / auto-execute on cfimport?

2006-10-31 Thread Peter Boughton
I have a custom tag package for form controls, which I'm defining like so: cfimport prefix=form taglib=/common/customtags/form/ Most of the custom tags in the package share a common function, which I simply store in the Request scope. Usually this is fine because each page starts form:main

Re: common funcs in custom tags / auto-execute on cfimport?

2006-10-31 Thread Pete Ruckelshaus
How about just putting the fuinction call inside of a cfif block in your main custom tag and check for the existence of the value in the request scope? Pete ~| Introducing the Fusion Authority Quarterly Update. 80 pages of

Re: common funcs in custom tags / auto-execute on cfimport?

2006-10-31 Thread Nick Tong - TalkWebSolutions.co.uk
How about defining/checking for the function in a prefuse action? On 31/10/06, Peter Boughton [EMAIL PROTECTED] wrote: That isn't my problem. Okay, I'll explain things using a simple example... Two custom tags, tagA and tagB. Either could be used first on different pages. Both tags use

Re: common funcs in custom tags / auto-execute on cfimport?

2006-10-31 Thread Peter Boughton
That could work for this instance, but I'd like to have the package indepedant of framework - ie: I want it to work with FB, but not rely on it. How about defining/checking for the function in a prefuse action? On 31/10/06, Peter Boughton [EMAIL PROTECTED] wrote:

Re: common funcs in custom tags / auto-execute on cfimport?

2006-10-31 Thread Barney Boisvert
[EMAIL PROTECTED] wrote: I have a custom tag package for form controls, which I'm defining like so: cfimport prefix=form taglib=/common/customtags/form/ Most of the custom tags in the package share a common function, which I simply store in the Request scope. Usually this is fine because each

RE: common funcs in custom tags / auto-execute on cfimport?

2006-10-31 Thread Snake
Why don't you just cfinclude the function/edf into both tags, Snake -Original Message- From: Nick Tong - TalkWebSolutions.co.uk [mailto:[EMAIL PROTECTED] Sent: 31 October 2006 16:33 To: CF-Talk Subject: Re: common funcs in custom tags / auto-execute on cfimport? How about defining

Re: common funcs in custom tags / auto-execute on cfimport?

2006-10-31 Thread Peter Boughton
Sorry, I don't appear to be awake today - I was thinking that I would have to fully specify the full path to an init file, and thus would need to require a mapping/fixed path. But I don't need to do that at all. I just keep the _init with the rest of the tags and it works fine. Every tag in

Re: common funcs in custom tags / auto-execute on cfimport?

2006-10-31 Thread Peter Boughton
That isn't my problem. Okay, I'll explain things using a simple example... Two custom tags, tagA and tagB. Either could be used first on different pages. Both tags use a function Func1. If I define Func1 in tagA, it doesn't exist when tagB is called first. If I define Func1 in tagB

RE: Paired Custom Tags

2006-09-27 Thread Jennifer Dodson
This is exactly what I needed. I just didn't get that part of it. Thanks for the help. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 26, 2006 5:22 PM To: CF-Talk Subject: RE: Paired Custom Tags I have created a tag with a start and stop which

Paired Custom Tags

2006-09-26 Thread Jennifer Dodson
Can anyone point me at a good resource for learning about writing a Paired custom tag? I'm having a little trouble with the one I started on yesterday. Basically what we're trying to do is overload the cfmail tag so that we can make it work differently on different servers. I have created a tag

RE: Paired Custom Tags

2006-09-26 Thread Dave Watts
I have created a tag with a start and stop which I think is pretty good. When you call it it does generate an email like you'd expect, but the content of the mail tag also displays on the screen which is a little less than ideal. In the end execution mode section of your custom tag, after

Re: Paired Custom Tags

2006-09-26 Thread Carl L
If you're going to be overloading/replacing cfmail, also bear in mind that you need to wrap the whole thing in a cfoutput tag, or else you end up without any of the inner variable display tags being processed. (speaking from experience)

RE: Paired Custom Tags

2006-09-26 Thread Ben Nadel
To: CF-Talk Subject: Re: Paired Custom Tags If you're going to be overloading/replacing cfmail, also bear in mind that you need to wrap the whole thing in a cfoutput tag, or else you end up without any of the inner variable display tags being processed. (speaking from experience

Re: Paired Custom Tags

2006-09-26 Thread Adam Churvis
I wrote an exhaustive explanation of how paired custom tags work in Advanced Macromedia ColdFusion MX 7 Application Development (Ben's book). It goes over just about everything you'll need to know about advanced use of paired custom tags. Respectfully, Adam Phillip Churvis Certified Advanced

send console command from a custom tags

2006-07-31 Thread Gabriel Bulfon
Hi, I am looking for a solution to send DOS (console) command directly from coldfusion tags. I appreciate any help. -gabriel ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion

RE: send console command from a custom tags

2006-07-31 Thread Ben Forta
cfexecute -Original Message- From: Gabriel Bulfon [mailto:[EMAIL PROTECTED] Sent: Monday, July 31, 2006 4:48 PM To: CF-Talk Subject: send console command from a custom tags Hi, I am looking for a solution to send DOS (console) command directly from coldfusion tags. I appreciate any

RE: send console command from a custom tags

2006-07-31 Thread loathe
cfexecute? -Original Message- From: Gabriel Bulfon [mailto:[EMAIL PROTECTED] Sent: Monday, July 31, 2006 4:48 PM To: CF-Talk Subject: send console command from a custom tags Hi, I am looking for a solution to send DOS (console) command directly from coldfusion tags. I

Re: send console command from a custom tags

2006-07-31 Thread Denny Valliant
cfexecute is your friend! http://www.techfeed.net/cfQuickDocs/?cfexecute :D On 7/31/06, Gabriel Bulfon [EMAIL PROTECTED] wrote: Hi, I am looking for a solution to send DOS (console) command directly from coldfusion tags. I appreciate any help. -gabriel

Fusebox 4 installation and custom tags

2006-07-04 Thread Terry Troxel
Ok, go easy on me as I am clueless in trying to Get Fusebox 4 running on a cf5 box. I downloaded the Core files from fusebox.org and I get all these Custom tag missing errors. I have searched their Site and cannot find any step by step installation Instructions or any mention of all that is needed

<    1   2   3   4   5   6   7   >