RE: Fusebox - is there a trick to following the flow?

2007-07-26 Thread Eric Roberts
You might want to start by flow charting the site (physically speaking). This will give you a map of what the page flow is. Eric -Original Message- From: Mike Kear [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 25, 2007 7:29 AM To: CF-Talk Subject: Fusebox - is there a trick

Re: Fusebox - is there a trick to following the flow?

2007-07-26 Thread Sean Corfield
On 7/25/07, Mike Kear [EMAIL PROTECTED] wrote: Is it a simple/trivial thing to convert to fusebox 5+ ? Well, in *theory* it's just a matter of installing the FB51 core files under your webroot (or elsewhere and add a /fusebox5 mapping) and then you just change your application's index.cfm to

Fusebox - is there a trick to following the flow?

2007-07-25 Thread Mike Kear
I have inherited a fusebox4.0 app to maintain that has dozens of circuits that are reused all over the place. I know that's how fusebox is supposed to work, and it makes sense to reuse the fuses, but wow it takes AGES to follow the flow of the program. And i end up with dozens of files open,

RE: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Loathe
To: CF-Talk Subject: Fusebox - is there a trick to following the flow? I have inherited a fusebox4.0 app to maintain that has dozens of circuits that are reused all over the place. I know that's how fusebox is supposed to work, and it makes sense to reuse the fuses, but wow it takes AGES to follow

Re: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Michael Dinowitz
If you have debug access I have an enhanced debug template that shows the full flow of an application. It includes standard templates, components, custom tags and includes in a full tree view. ~| Get involved in the latest

Re: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Mike Kear
Thanks Michael, that sounds interesting. I'd like to have a look at that. I'm new to fusebox, and I have to say I'm yet to be convinced it's better than the way I do my own sites. But i inherited it, and it's not going to be rebuilt any time soon, so I have to roll my sleeves up and learn

RE: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Loathe
Michael, is this available somewhere? I'd really like to check it out. -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 25, 2007 9:13 AM To: CF-Talk Subject: Re: Fusebox - is there a trick to following the flow? If you have debug access I have

Re: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Tom Chiverton
On Wednesday 25 Jul 2007, [EMAIL PROTECTED] wrote: Michael, is this available somewhere? I'd really like to check it out. Turn on the relevant debug option in the CF admin. -- Tom Chiverton This email is sent for and on behalf of

RE: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Loathe
He said it's a custom template. Like you set in the administrator. -Original Message- From: Tom Chiverton [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 25, 2007 10:10 AM To: CF-Talk Subject: Re: Fusebox - is there a trick to following the flow? On Wednesday 25 Jul 2007, [EMAIL

Re: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Phillip M. Vector
It wasn't that steep when I tried learning it, but then again, I learned on FB3. :) The idea is that you only open up 1 circuit.xml file at a time. trace down the error that's causing a fuseaction to go kaput and then move onto the next. It shoulds like you are opening all the pages that have

Re: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Mike Kear
-Original Message- From: Mike Kear [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 25, 2007 8:29 AM To: CF-Talk Subject: Fusebox - is there a trick to following the flow? I have inherited a fusebox4.0 app to maintain that has dozens of circuits that are reused all over the place. I know

RE: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Sandra Clark
To: CF-Talk Subject: Fusebox - is there a trick to following the flow? I have inherited a fusebox4.0 app to maintain that has dozens of circuits that are reused all over the place. I know that's how fusebox is supposed to work, and it makes sense to reuse the fuses, but wow it takes AGES to follow

Re: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Mike Kear
Thanks for your suggestion Phillip. Actually what I am currently tasked with is duplicate part of the functionality of one circuit in a new circuit. At first sight, all i have to do is copy that circuit to a new folder, tweak the circuit.xml.cfm files a bit and change the dsp files to show the

RE: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Loathe
: Wednesday, July 25, 2007 10:52 AM To: CF-Talk Subject: Re: Fusebox - is there a trick to following the flow? Thanks for your suggestion Phillip. Actually what I am currently tasked with is duplicate part of the functionality of one circuit in a new circuit. At first sight, all i have to do is copy

RE: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Sandra Clark
and Accessibility Team Fusebox -Original Message- From: Mike Kear [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 25, 2007 10:56 AM To: CF-Talk Subject: Re: Fusebox - is there a trick to following the flow? Sandra, thank you!That looks extremely helpful. What does parameter name=mode value

Re: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Mike Kear
Thanks Sean. Your advice is very welcome. It's a Fusebox 4.0.2 app. The circuits folder has 28,000 files in it! Took 45 minutes just to unzip onto my dev PC. Is it a simple/trivial thing to convert to fusebox 5+ ?It's not going to be something i'm going to be paid to do, so it needs to

Re: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Greg Luce
, 2007 10:56 AM To: CF-Talk Subject: Re: Fusebox - is there a trick to following the flow? Sandra, thank you!That looks extremely helpful. What does parameter name=mode value=development / do? Does it force a reload of the XML files every page view? If so, that's what i've been looking

Re: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Sean Corfield
On 7/25/07, Mike Kear [EMAIL PROTECTED] wrote: What does parameter name=mode value=development / do? Does it force a reload of the XML files every page view? Yup. It'll makes things run slowly (since the framework is reloading on every request) but it will enable you to test the changes you

Neat trick for cleaning formfields

2007-03-06 Thread Will Tomlinson
I noticed I forgot to put my trim()'s in my form inputs for an admin area, and dreaded coding them all in. Cause there's lotsa forms. So I did this up and it seems to work well: !--- Output dirty fields --- cfloop list=#FORM.fieldnames# index=thisfield cfoutput#FORM[thisfield]#/cfoutputbr

Re: Neat trick for cleaning formfields

2007-03-06 Thread Mik Muller
You might also want to prepare any text for SQL inserting if that's the final destination for the form data. I have a UDF that does that for me. I'm sure it's not the best method, but it prevents data from having ' or even which can mess up input type=text form fields later. It was written a

RE: Neat trick for cleaning formfields

2007-03-06 Thread Dawson, Michael
trick for cleaning formfields You might also want to prepare any text for SQL inserting if that's the final destination for the form data. I have a UDF that does that for me. I'm sure it's not the best method, but it prevents data from having ' or even which can mess up input type=text form fields

RE: Neat trick for cleaning formfields

2007-03-06 Thread Mik Muller
type=text value=#htmlEditFormat(query.column)# M!ke -Original Message- From: Mik Muller [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 06, 2007 9:53 AM To: CF-Talk Subject: Re: Neat trick for cleaning formfields You might also want to prepare any text for SQL inserting if that's the final

RE: Neat trick for cleaning formfields

2007-03-06 Thread Ben Nadel
. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Mik Muller [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 06, 2007 11:12 AM To: CF-Talk Subject: RE: Neat trick for cleaning formfields Well

Re: Neat trick for cleaning formfields

2007-03-06 Thread Tom Chiverton
On Tuesday 06 Mar 2007, Mik Muller wrote: function formIn(string) { if (len(trim(string))) return trim(replace(replace(string,'',quot;,all),','',all)); else return ; } Just a small note, but it is normally better to give a list of allowed content, and kill everything else, such as:

A neat valueList() trick....

2007-03-05 Thread Will Tomlinson
I like using valuelist(), but it messes up the display because it crunches the list items together, no spaces after the comma. So I tried this and it worked. Had no idea... cfset voicingList = ValueList(getVoicings.voicingname, , ) Just thought I'd post it in case anyone else ran into the

Re: A neat valueList() trick....

2007-03-05 Thread Matt Quackenbush
Just a cautionary word: that works wonderfully for straight output, but if you were to do say a listFind() on the altered list, CF wouldn't find the item you were searching for unless you prepended it with a space (e.g. listFind(myList, ' myString') ). But for output, it certainly is a whole lot

What's the trick to using SCRIPTSRC in a CFFORM tag?

2006-02-02 Thread Mike Kear
I've been trying every combination/permutatoin i can think of to using the SCRIPTSRC attribute in a CFFORM tag. (format=xml if it makes any difference). I'm using it in a shared hosting environment, and have tinkered a bit with the style sheet and the XSL file so the presentation of the forms

What's the trick to using SRIPTSRC in a CFFORM tag?

2006-02-02 Thread Mike Kear
I've tried every combination and permutation i can think of to using SCRIPTSRC in a CFFORM tag, but it's defeating me.(It's format=xml if that makes a difference) I'm in a shared hosting environment and I have tinkered a bit with the css file and the xsl flie so the form styles match up with

RE: Trick to View Parsed Query (was CF7 lots of new Ambiguous column name issues)

2005-08-11 Thread Dave.Phillips
If you'd like to provide the parsed query, you can do so in one of two ways: 1) copy the parsed query from your debug info or 2) comment out the CFQUERY tags and replace them with CFOUTPUT tags. Actually, just a trick to display parsed query. If you insert a cfabort just above your /CFQUERY tag

lil flash form trick

2005-03-08 Thread dave
I have had a few ppl ask me about formating say a phone # field in a flash form like (303)222-2345 and not let any letters in. And I couldn't remember but I had seen someone from MM do it and I just remembered, so for those who care (its pretty damn slick though) and yes Micha I know you can do

Re: lil flash form trick

2005-03-08 Thread Bryan Stevenson
Ahhh...if only all phone numbers around the world followed that format ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com

Re: lil flash form trick

2005-03-08 Thread dave
type=text label=Sweden Telephone mask=99-999-999, 99 width=200 / /cfformgroup /cfform From: Bryan Stevenson [EMAIL PROTECTED] Sent: Tuesday, March 08, 2005 11:53 AM To: CF-Talk cf-talk@houseoffusion.com Subject: Re: lil flash form trick Ahhh

Re: lil flash form trick

2005-03-08 Thread Bryan Stevenson
Dave...you seem very excited about masks...are they new to you? Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com

Re: lil flash form trick

2005-03-08 Thread dave
: lil flash form trick Dave...you seem very excited about masks...are they new to you? Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com

Re: lil flash form trick

2005-03-08 Thread Bryan Stevenson
Nope...my day is fine...just sounded like masks where the next sliced bread ;-) I always do server-side validationbut I can see the benefit of mask support on the client-side (as I really don't like JS based validation). .and what I was getting at earlier is that even though you can

Re: lil flash form trick

2005-03-08 Thread dave
know its there yet. And yeah, america IS the center of the universe ;) haha From: Bryan Stevenson [EMAIL PROTECTED] Sent: Tuesday, March 08, 2005 5:26 PM To: CF-Talk cf-talk@houseoffusion.com Subject: Re: lil flash form trick Nope...my day is fine...just

Re: lil flash form trick

2005-03-08 Thread Ray Champagne
Aren't the masks just using a pre-built js to check the fields? Ray At 05:26 PM 3/8/2005, you wrote: Nope...my day is fine...just sounded like masks where the next sliced bread ;-) I always do server-side validationbut I can see the benefit of mask support on the client-side (as I really

Re: lil flash form trick

2005-03-08 Thread dave
, March 08, 2005 5:26 PM To: CF-Talk cf-talk@houseoffusion.com Subject: Re: lil flash form trick Nope...my day is fine...just sounded like masks where the next sliced bread ;-) I always do server-side validationbut I can see the benefit of mask support on the client-side (as I really don't like

Re: lil flash form trick

2005-03-08 Thread Bryan Stevenson
Well in Flash I'm not sure if that would be JS or not...but ya...nothin fancy...just easier than writing your own validation code .and I should clarify...I don't like writing JS based validation ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems

Re: lil flash form trick

2005-03-08 Thread dave
Subject: Re: lil flash form trick Aren't the masks just using a pre-built js to check the fields? Ray At 05:26 PM 3/8/2005, you wrote: Nope...my day is fine...just sounded like masks where the next sliced bread ;-) I always do server-side validationbut I can see the benefit of mask support

Re: lil flash form trick

2005-03-08 Thread dave
me either! From: Bryan Stevenson [EMAIL PROTECTED] Sent: Tuesday, March 08, 2005 5:41 PM To: CF-Talk cf-talk@houseoffusion.com Subject: Re: lil flash form trick Well in Flash I'm not sure if that would be JS or not...but ya...nothin fancy...just easier

Re: lil flash form trick

2005-03-08 Thread Ray Champagne
ahhh...that's better. Now I am in 100% agreement. :) Ray At 05:40 PM 3/8/2005, you wrote: Well in Flash I'm not sure if that would be JS or not...but ya...nothin fancy...just easier than writing your own validation code .and I should clarify...I don't like writing JS based validation

Re: lil flash form trick

2005-03-08 Thread Bryan Stevenson
hehe...glad you're in agreement Ray ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com

Re: lil flash form trick

2005-03-08 Thread Mike Kear
Quite so Bryan! For those who don't know I'm in Australia, and I tried to buy a product on line from a HP subsidiary a few years ago - a large, reasonably well managed international company - and I was required to enter my 5 digit zip code (we only have 4 digits here, and anyway, it validated

Re: lil flash form trick

2005-03-08 Thread dave
: Tuesday, March 08, 2005 7:28 PM To: CF-Talk cf-talk@houseoffusion.com Subject: Re: lil flash form trick Quite so Bryan! For those who don't know I'm in Australia, and I tried to buy a product on line from a HP subsidiary a few years ago - a large, reasonably well managed international company - and I

Re: lil flash form trick

2005-03-08 Thread Bryan Stevenson
I feel your pain Mike...I'm a Canadian..and can't count how many times my postal code doesn't validate as a zip code...grr Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL

RE: Is there a trick...

2003-04-02 Thread Barney Boisvert
AudienceCentral (formerly PIER System, Inc.) [EMAIL PROTECTED] voice : 360.756.8080 x12 fax : 360.647.5351 www.audiencecentral.com -Original Message- From: Kwang Suh [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 8:19 PM To: CF-Talk Subject: Re: Is there a trick... I'm talking CFMX

Re: RE: Is there a trick...

2003-04-02 Thread ksuh
Of course. All I'm saying is that it's perfectly possible for MM to fix (or perhaps neuter) MX so that race conditions don't happen :) - Original Message - From: Barney Boisvert [EMAIL PROTECTED] Date: Wednesday, April 2, 2003 10:47 am Subject: RE: Is there a trick... But that only

RE: RE: Is there a trick...

2003-04-02 Thread Barney Boisvert
: 360.647.5351 www.audiencecentral.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 02, 2003 9:56 AM To: CF-Talk Subject: Re: RE: Is there a trick... Of course. All I'm saying is that it's perfectly possible for MM to fix (or perhaps

RE: RE: Is there a trick...

2003-04-02 Thread Erika L. Walker-Arnold
| Subject: RE: RE: Is there a trick... | | | Or just skip an app server and use static content. ;) | | I'm going to end my part in the discussion by saying IMHO, | locking a nasty | thing to deal with, but very necessary when dealing with | shared scopes. | CFLOCK seems to be the most prevelant

Re: Is there a trick...

2003-04-02 Thread Christian Cantrell
And some information I posted on my weblog a while back regarding locking: http://markme.com/cantrell/weblog/index.cfm?m=2d=6y=2003 Christian On Wednesday, April 2, 2003, at 02:09 PM, Erika L. Walker-Arnold wrote: An article for you all to enjoy ;)

Is there a trick...

2003-04-01 Thread Che Vilnonis
Is there a trick...to getting Request variables to work with pages that have frames? Something like this works in pages without frames. What gives? cflock SCOPE=Application THROWONTIMEOUT=NO TIMEOUT=10 TYPE=Exclusive cfscript Application.BGColor=FF

RE: Is there a trick...

2003-04-01 Thread John Quarto-vonTivadar
, April 01, 2003 5:02 PM To: CF-Talk Subject: Is there a trick... Is there a trick...to getting Request variables to work with pages that have frames? Something like this works in pages without frames. What gives? cflock SCOPE=Application THROWONTIMEOUT=NO TIMEOUT=10 TYPE=Exclusive cfscript

RE: Is there a trick...

2003-04-01 Thread Raymond Camden
Vilnonis [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 4:02 PM To: CF-Talk Subject: Is there a trick... Is there a trick...to getting Request variables to work with pages that have frames? Something like this works in pages without frames. What gives? cflock SCOPE=Application

Re: Is there a trick...

2003-04-01 Thread S . Isaac Dealey
Is there a trick...to getting Request variables to work with pages that have frames? Something like this works in pages without frames. What gives? cflock SCOPE=Application THROWONTIMEOUT=NO TIMEOUT=10 TYPE=Exclusive cfscript Application.BGColor=FF

Re: Is there a trick...

2003-04-01 Thread E. Keith Dodd
PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 5:01 PM Subject: Is there a trick... Is there a trick...to getting Request variables to work with pages that have frames? Something like this works in pages without frames. What gives? cflock SCOPE=Application THROWONTIMEOUT

Re: Is there a trick...

2003-04-01 Thread Calvin Ward
Isaac, What's the benefit that CFMX offers in the Application scope? Calvin cf_snipalot / You'll be needlessly accessing the application scope anyway. The application scope should really only be used for data which might change periodically based on time of day, administrative interraction

RE: Is there a trick...

2003-04-01 Thread Matthew Walker
. -Original Message- From: E. Keith Dodd [mailto:[EMAIL PROTECTED] Sent: Wednesday, 2 April 2003 10:42 a.m. To: CF-Talk Subject: Re: Is there a trick... If you do the duplicate from application to request in the application.cfm file, the request variables should be available to all

RE: Is there a trick...

2003-04-01 Thread Matthew Walker
: Wednesday, 2 April 2003 10:47 a.m. To: CF-Talk Subject: Re: Is there a trick... Isaac, What's the benefit that CFMX offers in the Application scope? Calvin cf_snipalot / You'll be needlessly accessing the application scope anyway. The application scope should really only

RE: Is there a trick...

2003-04-01 Thread Barney Boisvert
www.audiencecentral.com -Original Message- From: Matthew Walker [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 3:00 PM To: CF-Talk Subject: RE: Is there a trick... Automatic locking. Previously you needed to write cflock timeout=1 throwontimeout=No type=READONLY scope=APPLICATION

Re: Is there a trick...

2003-04-01 Thread S . Isaac Dealey
Isaac, What's the benefit that CFMX offers in the Application scope? Calvin There were issues involving using unlocked shared scope variables prior to CFMX asside from race conditions (data corruption in memory). In MX locking only needs to be done on shared scope variables for the purpose

RE: Is there a trick...

2003-04-01 Thread Matthew Walker
it explicitly. -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Wednesday, 2 April 2003 11:17 a.m. To: CF-Talk Subject: RE: Is there a trick... Are you sure about this? It is my understanding that the session scope was protected automatically

RE: Is there a trick...

2003-04-01 Thread Barney Boisvert
Engineer AudienceCentral (formerly PIER System, Inc.) [EMAIL PROTECTED] voice : 360.756.8080 x12 fax : 360.647.5351 www.audiencecentral.com -Original Message- From: Matthew Walker [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 3:27 PM To: CF-Talk Subject: RE: Is there a trick

RE: Is there a trick...

2003-04-01 Thread Dave Watts
Are you sure about this? It is my understanding that the session scope was protected automatically, but that the application (and server) scope still had to be locked. You can avoid having to do read locks with CFLOCK on a scope if you ensure that they are never written after initially

RE: Is there a trick...

2003-04-01 Thread Matthew Walker
I interpret that paragraph as The app server won't dump core if you don't lock your shared access, but your variable might get hosed. So, if you don't mind your variables possibly getting wasted, then yes, I'll agree that locking is optional. The docs are talking about race conditions,

RE: Is there a trick...

2003-04-01 Thread S . Isaac Dealey
. But CFMX does it automatically, so you don't have to do it explicitly. -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Wednesday, 2 April 2003 11:17 a.m. To: CF-Talk Subject: RE: Is there a trick... Are you sure about this? It is my understanding

RE: Is there a trick...

2003-04-01 Thread S . Isaac Dealey
01, 2003 3:27 PM To: CF-Talk Subject: RE: Is there a trick... Pretty sure. The docs: While the ColdFusion Server is thread-safe and does not try to modify a variable simultaneously, it does not ensure the correct order of access to information. If multiple pages, or multiple invocations

RE: Is there a trick...

2003-04-01 Thread Matthew Walker
Yes CFMX docs. I'm talking about CFMX, don't know what anybody else is talking about, or even if they really exist. -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: Wednesday, 2 April 2003 12:15 p.m. To: CF-Talk Subject: RE: Is there a trick... Is that from

RE: Is there a trick...

2003-04-01 Thread Barney Boisvert
: Tuesday, April 01, 2003 4:21 PM To: CF-Talk Subject: RE: Is there a trick... I'm guessing that they actually mean if your variables get hozed as a result of not locking it's happening because of a race condition of your own making. Rather than data in the shared scopes may be randomly corrupted

RE: Is there a trick...

2003-04-01 Thread S . Isaac Dealey
: RE: Is there a trick... Is that from the MX doc's or the CF5 docs? ... I think he was referring to CF5 if I'm reading correctly... session scope was protected automatically? ... What I've heard from others is that the session scope was actually the most volatile of the shared scopes

RE: Is there a trick...

2003-04-01 Thread S . Isaac Dealey
: 360.756.8080 x12 fax : 360.647.5351 www.audiencecentral.com -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 4:21 PM To: CF-Talk Subject: RE: Is there a trick... I'm guessing that they actually mean if your variables get hozed as a result

Re: Is there a trick...

2003-04-01 Thread Kwang Suh
I'm talking CFMX, and this example illustrates my point exactly. The server CAN'T do the job of CFLOCK for situations exactly like this, so you (the Sure it can. Simply make the server single threaded. Heck, lots of people went the lazy route and ticked on singled threaded sessions in pre

A nice little trick

2003-02-14 Thread HOwens
I'm working on improving the functionality of my shopping cart. One thing I've always hated about it (and I find this problem in other shopping carts) is the continue shopping did take the user back to the exact same previous page after adding an item to the cart ... continue shopping links

MX and URL trick for search engines

2002-07-30 Thread MW
We use the trick of replacing the ampersands and question marks in a URL with slashes in order to have our website indexed by search engines. Instead of having the URL appear as: MySite.cfm?VarName=Value it appears as MyPage.cfm/VarName/Value This works extremely well in CF5 on IIS5 (patched

Re: MX and URL trick for search engines

2002-07-30 Thread Sean A Corfield
On Tuesday, July 30, 2002, at 08:08 , MW wrote: MyPage.cfm/VarName/Value We are now configuring CFMX on a development server, and all of a sudden it is broken. In CFMX, CGI.PATH_INFO should contain /VarName/Value - I believe this is slightly different behavior to CF5? If you're not annoying

Re: MX and URL trick for search engines

2002-07-30 Thread Martin Orth
PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, July 30, 2002 5:08 PM Subject: MX and URL trick for search engines We use the trick of replacing the ampersands and question marks in a URL with slashes in order to have our website indexed by search engines. Instead of having the URL

Re: MX and URL trick for search engines

2002-07-30 Thread Bryan F. Hogan
See cfdev.com's products -Original Message- From: MW [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Date: Tuesday, July 30, 2002 11:15 AM Subject: MX and URL trick for search engines We use the trick of replacing the ampersands and question marks in a URL with slashes in order to have

RE: MX and URL trick for search engines

2002-07-30 Thread MW
IIS gives a 404 error, and fails to hand off the page to CFMX for processing. It isn't a CFMX error for an unrecognized variable. Therefore, I don't think there is any code we can put in our CFM pages to solve this. A lot of people use this trick, especially on apache with 'mod_rewrite

RE: Is this SQL trick possible

2001-11-15 Thread Tammy Hong
Couldn't you grab the value of the field with the onBlur event using JS? I think that is very plausible. -Original Message- From: Robert Everland [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 15, 2001 9:58 AM To: CF-Talk Subject: Is this SQL trick possible Is there anyway

Is this SQL trick possible

2001-11-15 Thread Robert Everland
Is there anyway I can get the value of a field that I update without having to do a query first. Robert Everland III Dixon Ticonderoga ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the

RE: Is this SQL trick possible

2001-11-15 Thread Craig Dudley
2001 15:58 To: CF-Talk Subject: Is this SQL trick possible Is there anyway I can get the value of a field that I update without having to do a query first. Robert Everland III Dixon Ticonderoga ~~ Get the mailserver that powers this list

RE: Is this SQL trick possible

2001-11-15 Thread Gantz, Shlomy
you can update and then create a trigger to select the record that was updated. Shlomy -Original Message- From: Craig Dudley [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 15, 2001 11:07 AM To: CF-Talk Subject: RE: Is this SQL trick possible erm, can't you do the update

Re: Is this SQL trick possible

2001-11-15 Thread Alex
yes. update tableA set fieldA = 1 since YOU are updateing the table you already know what the value will be. Of course, you could clarify your question. On Thu, 15 Nov 2001, Robert Everland wrote: Is there anyway I can get the value of a field that I update without having to do a

CF Studio Trick

2001-07-30 Thread jperlmutter
I was at the 2001 cf odyssey event this past weekend. When one speaker was showing us some javascript I thought he typed 'scriptj' in studio, and bang the entire script header/footer tag and more appeared. I just tried this at work and it didn't work. Am I doing something wrong? Thanks Jan

RE: CF Studio Trick

2001-07-30 Thread Philip Arnold - ASP
I was at the 2001 cf odyssey event this past weekend. When one speaker was showing us some javascript I thought he typed 'scriptj' in studio, and bang the entire script header/footer tag and more appeared. I just tried this at work and it didn't work. Am I doing something wrong? You have to

Re: CF Studio Trick

2001-07-30 Thread Stephen Hait
Check out Code Templates - Options, Settings. Under Editor, click on Code Templates to see a list of default templates. On my systems, the following code is associated with scriptj and typing scriptj followed by alt+j pops this text into a document at the cursor. SCRIPT LANGUAGE=JavaScript

RE: CF Studio Trick

2001-07-30 Thread Ken Wilson
:[EMAIL PROTECTED]] Sent: Monday, July 30, 2001 10:29 AM To: CF-Talk Subject: CF Studio Trick I was at the 2001 cf odyssey event this past weekend. When one speaker was showing us some javascript I thought he typed 'scriptj' in studio, and bang the entire script header/footer tag and more appeared

RE: CF Studio Trick

2001-07-30 Thread Lomvardias, Christopher
After you type scriptj, you have to then hit CTL-J together. Chris -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, July 30, 2001 10:29 AM To: CF-Talk Subject: CF Studio Trick I was at the 2001 cf odyssey event this past weekend. When one speaker

Re: CF Studio Trick

2001-07-30 Thread Critter
Hello jperlmutter, hey, i was there too (the bald guy with piercings) :) what version of studio are you using? I am running the beta. scriptj then Ctrl-J worked for me -- Critter, MMCP Certified ColdFusion Developer Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion

Re: CF Studio Trick

2001-07-30 Thread Jeffry Houser
Maybe he had it set up as a snippet? You can assign them to hot-keys, although I thought that was the number of keys you pressed at once, not in a specific order. At 10:28 AM 07/30/2001 -0400, you wrote: I was at the 2001 cf odyssey event this past weekend. When one speaker was showing us

RE: CF Studio Trick - CORRECT

2001-07-30 Thread jperlmutter
/30/2001 10:48:05 AM Please respond to [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] cc:(bcc: Jan E Perlmutter/BISYS_BPS) Subject: RE: CF Studio Trick You'll want to setup a Code Template and keyword for it first. F8 -- EDITOR -- CODE TEMPLATES Works great and can save lots of time

RE: Help Search in CF Studio - Coffee did the trick

2001-07-18 Thread Russel Madere
Never mind all! After a cup of Army style coffee (hot as lava and black as night) I was able to find a solution in the Allaire forums (I hope). The developer will test it when he is able. Here is what was suggested paraphrased by me: 1 - Close ColdFusion Studio 2 - Delete the collections

Re: Help Search in CF Studio - Coffee did the trick

2001-07-18 Thread Saro
Studio - Coffee did the trick Never mind all! After a cup of Army style coffee (hot as lava and black as night) I was able to find a solution in the Allaire forums (I hope). The developer will test it when he is able. Here is what was suggested paraphrased by me: 1 - Close ColdFusion

RE: Intranet Apps (cool trick for us to check out)

2000-03-31 Thread Eron Cohen
.captureEvents(Event.MOUSEDOWN); } document.onmousedown=click; // --/SCRIPT -Original Message- From: Shawn [mailto:[EMAIL PROTECTED]] Sent: Friday, September 10, 1999 1:59 PM To: [EMAIL PROTECTED] Subject: RE: Intranet Apps (cool trick for us to check out) Its not the front page click onto one of their l