Strange Thing - CFOUTPUT converting quot; to

2013-04-30 Thread Robert Harrison
I have a field in a form with quoted values, but the values are quot;. When I post it to another page and output it, something is changing the quot; to a real (in the source, not the just the display). I put the following on the page to test... cfdump var=#form.text#

RE: Strange Thing - CFOUTPUT converting quot; to

2013-04-30 Thread Robert Harrison
...@austin-williams.com] Sent: Tuesday, April 30, 2013 2:10 PM To: cf-talk Subject: Strange Thing - CFOUTPUT converting quot; to I have a field in a form with quoted values, but the values are quot;. When I post it to another page and output it, something is changing the quot; to a real

RE: Strange Thing - CFOUTPUT converting quot; to

2013-04-30 Thread UXB
://www.uxbinternet.com W: http://www.ctbusinesslist.com -Original Message- From: Robert Harrison [mailto:rob...@austin-williams.com] Sent: Tuesday, April 30, 2013 2:10 PM To: cf-talk Subject: Strange Thing - CFOUTPUT converting quot; to I have a field in a form with quoted values, but the values

Best thing for testing code?

2011-08-30 Thread Eric Cobb
We are wanting to put some type of testing system in place here at work. I know there's a ton of stuff out there, and I'm really at a loss as to where to start. I'm not sure if any of the TDD frameworks are what we're after or not. Our main concern right now is setting up something to help

Re: Best thing for testing code?

2011-08-30 Thread Russ Michaels
there are several cf unit testing solutions available. http://mxunit.org/ http://www.cfcunit.org/cfcunit/ http://cfunit.sourceforge.net/ You can use these not only to test that everything is working, but also to test the data being returned is correct as you require. -- Russ Michaels

Re: Best thing for testing code?

2011-08-30 Thread sm...@ibsys.com sm...@ibsys.com
chunks of code WORK. When you've done that for most of the chunks of code, you can be pretty sure the whole thing works. So, what you're really looking for are, at the bare minimum, unit tests. You mentioned TDD, but that's a methodology for developing software where you write your test first

Weird Time Thing

2010-06-30 Thread Robert Harrison
This creates my time (SQL Insert): SET last_attempt=#CreateODBCTime(Now())# This is the query to get (after 15 minutes have passed): WHERE last_attempt #DateAdd('n',15,Now())#; But it's selecting all records regardless of the time. What the heck? Robert B. Harrison

Re: Weird Time Thing

2010-06-30 Thread John M Bliss
= before Try WHERE last_attempt #DateAdd('n',15,Now())#; On Wed, Jun 30, 2010 at 2:31 PM, Robert Harrison rob...@austin-williams.com wrote: This creates my time (SQL Insert): SET last_attempt=#CreateODBCTime(Now())# This is the query to get (after 15 minutes have passed):

Passing client file name in a form? one more thing

2008-07-31 Thread Les Irvin
I failed to mention that I do not want to upload the file to the server, but only to grab the location so I can use it as an attachment in a cfmail tag. Probably something simple I'm overlooking here... but I'm trying to pass the actual client location of a file through a

RE: Passing client file name in a form? one more thing

2008-07-31 Thread Dave Watts
How can I pass the physical client location of the file through the form? You can't. I failed to mention that I do not want to upload the file to the server, but only to grab the location so I can use it as an attachment in a cfmail tag. CFMAIL executes on the server, so the attachment

RE: One thing I've always wanted to build... breadcrumb trail...

2008-06-10 Thread William Seiter
::To: CF-Talk ::Subject: One thing I've always wanted to build... breadcrumb trail... :: :: ::Not the one that represents a folder structure or ::hierarchy, but shows the exact places visited. :: ::Home Services Contact Pricing FAQ :: ::Anyone know of a tutorial on how to do this? :: ::Just store

RE: One thing I've always wanted to build... breadcrumb trail...

2008-06-10 Thread Rick Faircloth
Thanks for the ideas and feedback, everyone...I'll check it all out! Rick -Original Message- From: William Seiter [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 10, 2008 2:48 AM To: CF-Talk Subject: RE: One thing I've always wanted to build... breadcrumb trail... I would use

Re: One thing I've always wanted to build... breadcrumb trail...

2008-06-10 Thread Matt Williams
I have a breadcrumb solution that I created for a Mach-II app. You could probably pull out relevant parts of the code and use it in Application.cfm. At one point I attempted to make it window aware so that if a link spawned a new window or tab, it would keep track of that. I don't think this part

Re: One thing I've always wanted to build... breadcrumb trail...

2008-06-10 Thread Jerry Johnson
solution? -Original Message- From: Jerry Johnson [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 10, 2008 12:02 AM To: CF-Talk Subject: Re: One thing I've always wanted to build... breadcrumb trail... maybe use the javascript history array? On Mon, Jun 9, 2008 at 11:53 PM, Rick

RE: One thing I've always wanted to build... breadcrumb trail...

2008-06-10 Thread Rick Faircloth
Thanks, Matt... sounds similar to what I was thinking about doing. Question: What do you mean by window numbers? Rick -Original Message- From: Matt Williams [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 10, 2008 9:53 AM To: CF-Talk Subject: Re: One thing I've always wanted

Re: One thing I've always wanted to build... breadcrumb trail...

2008-06-10 Thread Matt Williams
On Tue, Jun 10, 2008 at 10:51 AM, Rick Faircloth [EMAIL PROTECTED] wrote: Thanks, Matt... sounds similar to what I was thinking about doing. Question: What do you mean by window numbers? Some of our links open a new browser window or tab. If this happens and they started using links in both

RE: One thing I've always wanted to build... breadcrumb trail...

2008-06-10 Thread Jim Davis
-Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Monday, June 09, 2008 11:54 PM To: CF-Talk Subject: One thing I've always wanted to build... breadcrumb trail... Not the one that represents a folder structure or hierarchy, but shows the exact places visited

RE: One thing I've always wanted to build... breadcrumb trail...

2008-06-10 Thread Rick Faircloth
Thanks for the info, Jim...sounds great! I'll check it out! Rick -Original Message- From: Jim Davis [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 10, 2008 5:53 PM To: CF-Talk Subject: RE: One thing I've always wanted to build... breadcrumb trail... -Original Message

One thing I've always wanted to build... breadcrumb trail...

2008-06-09 Thread Rick Faircloth
Not the one that represents a folder structure or hierarchy, but shows the exact places visited. Home Services Contact Pricing FAQ Anyone know of a tutorial on how to do this? Just store the link name representing a full url for the last, say, 5 or so visited pages? Update the path

Re: One thing I've always wanted to build... breadcrumb trail...

2008-06-09 Thread Jerry Johnson
maybe use the javascript history array? On Mon, Jun 9, 2008 at 11:53 PM, Rick Faircloth [EMAIL PROTECTED] wrote: Not the one that represents a folder structure or hierarchy, but shows the exact places visited. Home Services Contact Pricing FAQ Anyone know of a tutorial on how to do

Re: One thing I've always wanted to build... breadcrumb trail...

2008-06-09 Thread Charlie Griefer
http://tutorial149.easycfm.com/ (disclaimer... written a LONG time ago. i offer no guarantees that it doesn't suck) :) i'm pretty sure Jim Davis has one as well somewhere in his site (http://depressedpress.com/) On Mon, Jun 9, 2008 at 8:53 PM, Rick Faircloth [EMAIL PROTECTED] wrote: Not the

RE: One thing I've always wanted to build... breadcrumb trail...

2008-06-09 Thread Rick Faircloth
: One thing I've always wanted to build... breadcrumb trail... maybe use the javascript history array? On Mon, Jun 9, 2008 at 11:53 PM, Rick Faircloth [EMAIL PROTECTED] wrote: Not the one that represents a folder structure or hierarchy, but shows the exact places visited. Home

Re: One thing I've always wanted to build... breadcrumb trail...

2008-06-09 Thread denstar
On Mon, Jun 9, 2008 at 10:03 PM, Charlie Griefer wrote: http://tutorial149.easycfm.com/ (disclaimer... written a LONG time ago. i offer no guarantees that it doesn't suck) :) i'm pretty sure Jim Davis has one as well somewhere in his site (http://depressedpress.com/) I don't know if he came

RE: Need Include to be first thing after BODY tag

2008-03-26 Thread Gerald Weir
Subject: Re: Need Include to be first thing after BODY tag On second thought it just might work Try this code instead: cfif thistag.executionMode eq 'Start'body script language=javascript1.1 src=/somedir type=text/javascript xxCreatePageViewTag(Housewares,Cool Kitchen Gadgets,Page 1

Re: Need Include to be first thing after BODY tag

2008-03-26 Thread Dave Ferguson
Try this on for size. You should be able to put it in your onrequestend file. It basically gets what CF generated, captures it, does a replace on the body tag with new content and outputs it. It worked in a simple test. CFSET myContent = getPageContext().getOut().getstring() CFSAVECONTENT

Need Include to be first thing after BODY tag

2008-03-25 Thread Gerald Weir
Hello, I'm working on a project to change the web analysis tags on our CF8 site. Currently we use onrequestend.cfm to tell the rendered page to include the analysis javascripts at the end of the file and then put in the /body tag. We are changing brands and the javascripts must be included

Re: Need Include to be first thing after BODY tag

2008-03-25 Thread Claude Schneegans
the javascripts must be included right after the opening body tag. Are you sure they really specify right after the opening body tag or do they just mean inside the body tag? I cannot think of any valuable technical reason the Javascript couldn't be right before the /BODY tag. --

RE: Need Include to be first thing after BODY tag

2008-03-25 Thread Gerald Weir
on the CF-Talk web page. Thanks, Jerry -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 25, 2008 4:16 PM To: CF-Talk Subject: Re: Need Include to be first thing after BODY tag the javascripts must be included right after the opening body tag

Re: Need Include to be first thing after BODY tag

2008-03-25 Thread Claude Schneegans
to be sure to count the page in the event that a user clicks away to another page before the current page is fully loaded. Ah ok, now this is a valuable reason I didn't think of. ;-) -- ___ REUSE CODE! Use custom tags; See

Re: Need Include to be first thing after BODY tag

2008-03-25 Thread Gerald Guido
Extract everything from the opening body tag for your pages and make a common include file. On Tue, Mar 25, 2008 at 5:04 PM, Gerald Weir [EMAIL PROTECTED] wrote: Hello, I'm working on a project to change the web analysis tags on our CF8 site. Currently we use onrequestend.cfm to tell the

Re: Need Include to be first thing after BODY tag

2008-03-25 Thread Jerry Johnson
list - as I don't see my own question on the CF-Talk web page. Thanks, Jerry -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 25, 2008 4:16 PM To: CF-Talk Subject: Re: Need Include to be first thing after BODY tag the javascripts must

Re: Need Include to be first thing after BODY tag

2008-03-25 Thread Greg Morphis
Unless I'm not getting something (it is late in the afternoon.. need caffeine).. Can't you use the body onload=javascript:myFunc(...); / On Tue, Mar 25, 2008 at 3:36 PM, Claude Schneegans [EMAIL PROTECTED] wrote: to be sure to count the page in the event that a user clicks away to another

Re: Need Include to be first thing after BODY tag

2008-03-25 Thread Greg Morphis
Ah.. I see.. you're wanting to do it without editing all the pages.. dunno there... On Tue, Mar 25, 2008 at 3:55 PM, Greg Morphis [EMAIL PROTECTED] wrote: Unless I'm not getting something (it is late in the afternoon.. need caffeine).. Can't you use the body onload=javascript:myFunc(...); /

RE: Need Include to be first thing after BODY tag

2008-03-25 Thread Gerald Weir
:[EMAIL PROTECTED] Sent: Tuesday, March 25, 2008 4:53 PM To: CF-Talk Subject: Re: Need Include to be first thing after BODY tag Not to help you at all, and providing info you didn't ask for, but... Best practices when counting pages is to wait for the page to load, or most of the page to load

Re: Need Include to be first thing after BODY tag

2008-03-25 Thread Casey Dougall
On Tue, Mar 25, 2008 at 5:01 PM, Gerald Weir [EMAIL PROTECTED] wrote: Jerry, I appreciate your point and it is a good one. I'm just the programmer however, it's their call I'm afraid. Yes, your question is correct, this is the javascript report the page view so in the end it must go on all.

Re: Need Include to be first thing after BODY tag

2008-03-25 Thread Jerry Johnson
to be first thing after BODY tag Not to help you at all, and providing info you didn't ask for, but... Best practices when counting pages is to wait for the page to load, or most of the page to load, before counting that page. This is especially true when counting advertising page views

Re: Need Include to be first thing after BODY tag

2008-03-25 Thread Ian Skinner
If you are using a version of ColdFusion that supports the Application.CFC and can make use of this feature in your site, you can use the Application.cfc onRequest method for this type of work. There are a lot a ramifications with this, especially if you also use templates in this site

Re: Need Include to be first thing after BODY tag

2008-03-25 Thread Gerald Guido
-Original Message- From: Jerry Johnson [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 25, 2008 4:53 PM To: CF-Talk Subject: Re: Need Include to be first thing after BODY tag Not to help you at all, and providing info you didn't ask for, but... Best practices when counting pages

Re: Need Include to be first thing after BODY tag

2008-03-25 Thread Gerald Guido
: Tuesday, March 25, 2008 4:53 PM To: CF-Talk Subject: Re: Need Include to be first thing after BODY tag Not to help you at all, and providing info you didn't ask for, but... Best practices when counting pages is to wait for the page to load, or most of the page to load, before

Re: Need Include to be first thing after BODY tag

2008-03-25 Thread Gerald Guido
On second thought it just might work Try this code instead: cfif thistag.executionMode eq 'Start'body script language=javascript1.1 src=/somedir type=text/javascript xxCreatePageViewTag(Housewares,Cool Kitchen Gadgets,Page 1); /script/cfif cfif thistag.executionMode eq

Re: Need Include to be first thing after BODY tag

2008-03-25 Thread Azadi Saryev
another reason would be for instance with google analytics / urchin tracker and tracking ajax content. you need to have the ga javascript loaded BEFORE the ajax calls you want to track, so if you are dynamically loading an external page into a container on the calling page, you need the ga js to

This evaluate thing always stumps me...

2008-01-21 Thread Les Mizzell
This evaluate thing, which doesn't work below, always stumps me.. cfloop index=myIDX list=#FORM.THISid# cfif IsDefined(evaluate(form.grp_sort_#myIDX#)) AND #evaluate(form.grp_sort_#myIDX#)# NEQ !--- Do something --- /cfif which, for myIDX = 115, gets you Variable form.grp_sort_115

RE: This evaluate thing always stumps me...

2008-01-21 Thread Dave Watts
cfif IsDefined(evaluate(form.grp_sort_#myIDX#)) AND #evaluate(form.grp_sort_#myIDX#)# NEQ Since CF 4, you don't really need to do this much work. And beside that, IsDefined automatically evaluates its argument. Here's all you need: cfif IsDefined(Form.grp_sort_#myIDX#) and

RE: This evaluate thing always stumps me...

2008-01-21 Thread Andy Matthews
thing always stumps me... This evaluate thing, which doesn't work below, always stumps me.. cfloop index=myIDX list=#FORM.THISid# cfif IsDefined(evaluate(form.grp_sort_#myIDX#)) AND #evaluate(form.grp_sort_#myIDX#)# NEQ !--- Do something --- /cfif .which, for myIDX = 115, gets you

Re: This evaluate thing always stumps me...

2008-01-21 Thread Charlie Griefer
cfif structKeyExists(form, 'grp_sort_' myIDX) and form['grp_sort_' myIDX] neq also, could you elaborate on doesn't work? On Jan 21, 2008 10:23 AM, Les Mizzell [EMAIL PROTECTED] wrote: This evaluate thing, which doesn't work below, always stumps me.. cfloop index=myIDX list=#FORM.THISid

Re: This evaluate thing always stumps me...

2008-01-21 Thread Josh Nathanson
, January 21, 2008 10:23 AM Subject: This evaluate thing always stumps me... This evaluate thing, which doesn't work below, always stumps me.. cfloop index=myIDX list=#FORM.THISid# cfif IsDefined(evaluate(form.grp_sort_#myIDX#)) AND #evaluate(form.grp_sort_#myIDX#)# NEQ !--- Do something

RE: This evaluate thing always stumps me...

2008-01-21 Thread Jonathon Stierman
You don't need to use Evaluate() to perform that isDefined check. Simply use: cfif isDefined(Form.grp_sort_#myIDX#) /cfif If you need to get the reference to that variable, use array notation on your Form struct: Form['grp_sort_#myIDX#'] Jonathon

RE: This evaluate thing always stumps me...

2008-01-21 Thread Bobby Hartsfield
Subject: This evaluate thing always stumps me... This evaluate thing, which doesn't work below, always stumps me.. cfloop index=myIDX list=#FORM.THISid# cfif IsDefined(evaluate(form.grp_sort_#myIDX#)) AND #evaluate(form.grp_sort_#myIDX#)# NEQ !--- Do something --- /cfif .which, for myIDX

Re: This evaluate thing always stumps me...

2008-01-21 Thread Brian Kotek
Or better, use StructKeyExists to avoid any potential ambiguity: http://corfield.org/blog/index.cfm/do/blog.entry/entry/isDefined_vs_structKeyExists On Jan 21, 2008 1:28 PM, Jonathon Stierman [EMAIL PROTECTED] wrote: You don't need to use Evaluate() to perform that isDefined check. Simply

RE: This evaluate thing always stumps me...

2008-01-21 Thread Dave Watts
Sorry, I meant to type this: cfif IsDefined(Form.grp_sort_#myIDX#) and Form[grp_sort_#myIDX#] neq Square brackets, not parentheses. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers

Re: This evaluate thing always stumps me...

2008-01-21 Thread Crow T. Robot
this: FORM[grp_sort_#myIDX#] or this: FORM[grp_sort_ myIDX] -Original Message- From: Les Mizzell [mailto:[EMAIL PROTECTED] Sent: Monday, January 21, 2008 12:24 PM To: CF-Talk Subject: This evaluate thing always stumps me... This evaluate thing, which doesn't work below, always

RE: This evaluate thing always stumps me...

2008-01-21 Thread Dave Watts
If you're on CF5 or previous, this will have to be 2 statements: cfif IsDefined(evaluate(form.grp_sort_#myIDX#)) cfif #evaluate(form.grp_sort_#myIDX#)# NEQ I'm pretty certain that short-circuit evaluation was introduced in CF 4.0.1. Dave Watts, CTO, Fig Leaf Software

RE: This evaluate thing always stumps me...

2008-01-21 Thread Dave Francis
To: CF-Talk Subject: This evaluate thing always stumps me... This evaluate thing, which doesn't work below, always stumps me.. cfloop index=myIDX list=#FORM.THISid# cfif IsDefined(evaluate(form.grp_sort_#myIDX#)) AND #evaluate(form.grp_sort_#myIDX#)# NEQ !--- Do something --- /cfif

Re: This evaluate thing always stumps me...

2008-01-21 Thread Sonny Savage
: This evaluate thing always stumps me... This evaluate thing, which doesn't work below, always stumps me.. cfloop index=myIDX list=#FORM.THISid# cfif IsDefined(evaluate(form.grp_sort_#myIDX#)) AND #evaluate(form.grp_sort_#myIDX#)# NEQ !--- Do something --- /cfif .which, for myIDX

Re: This evaluate thing always stumps me...

2008-01-21 Thread Les Mizzell
This one works: cfif isDefined(Form.grp_sort_#myIDX#) AND Form['grp_sort_#myIDX#'] NEQ Jezz, thanks... ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: This evaluate thing always stumps me...

2008-01-21 Thread Les Mizzell
Andy Matthews wrote: Get rid of the Evaluate statement. This: evaluate(form.grp_sort_#myIDX#) Becomes this: FORM[grp_sort_#myIDX#] or this: FORM[grp_sort_ myIDX] cfif IsDefined(FORM[grp_sort_ myIDX]) AND #FORM[grp_sort_ myIDX]# NEQ Invalid CFML construct found on line 115 at

Re: This evaluate thing always stumps me...

2008-01-21 Thread Sonny Savage
You really should use this: cfif StructKeyExists(form, grp_sort_ myIDX) AND ( Len(form[grp_sort_ myIDX]) GT 0 ) On Jan 21, 2008 1:40 PM, Les Mizzell [EMAIL PROTECTED] wrote: Andy Matthews wrote: Get rid of the Evaluate statement. This: evaluate(form.grp_sort_#myIDX#) Becomes this:

Re: This evaluate thing always stumps me...

2008-01-21 Thread Claude Schneegans
cfif IsDefined(evaluate(form.grp_sort_#myIDX#)) Iiiirk, you're having quotes inside quotes and # inside #... :-( Try this instead cfif IsDefined('evaluate(form.grp_sort_#myIDX#)') Anyway, I doubt this will work: evaluate will either return the value of form.grp_sort_#myIDX# if it is defined,

Re: This evaluate thing always stumps me...

2008-01-21 Thread Charlie Griefer
On Jan 21, 2008 11:18 AM, Sonny Savage [EMAIL PROTECTED] wrote: You really should use this: cfif StructKeyExists(form, grp_sort_ myIDX) AND ( Len(form[grp_sort_ myIDX]) GT 0 ) if you're going to validate against the len(), you really should throw a trim() in there for good measure :) --

Re: This evaluate thing always stumps me...

2008-01-21 Thread Brian Kotek
Again, these really should be using StructKeyExists: cfif StructKeyExists(form, 'grp_sort_#myIdx#') and Len(Trim(form['grp_sort_#myIdx#'])) gt 0 /cfif On Jan 21, 2008 1:48 PM, Les Mizzell [EMAIL PROTECTED] wrote: This one works: cfif isDefined(Form.grp_sort_#myIDX#) AND

Re: This evaluate thing always stumps me...

2008-01-21 Thread Sonny Savage
On a more personal style note, I generally do a cfparam on all my form variables and then loop over the form structure and trim() all the values. I then do not have to check for existence or trim when checking length. On Jan 21, 2008 2:32 PM, Charlie Griefer [EMAIL PROTECTED] wrote: On Jan 21,

is this thing on?

2007-04-04 Thread Bryan Stevenson
Not seeing any list traffic..so I thought I'd make my own ;-) 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 Notice: This

Re: is this thing on?

2007-04-04 Thread Peter Boughton
Likewise - until just now when it's kicked in. Not seeing any list traffic..so I thought I'd make my own ;-) 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]

Re: is this thing on?

2007-04-04 Thread Will Tomlinson
Not seeing any list traffic..so I thought I'd make my own ;-) You guys start goin into convultions when there's no list traffic dont'cha! :) Will ~| Upgrade to Adobe ColdFusion MX7 The most significant release in over 10

Re: is this thing on?

2007-04-04 Thread Bryan Stevenson
Not seeing any list traffic..so I thought I'd make my own ;-) You guys start goin into convultions when there's no list traffic dont'cha! :) Will Yep...as soon as I see no traffic I start thinking there is a US holiday I don't know about ;-) Bryan Stevenson B.Comm. VP Director of

Re: is this thing on?

2007-04-04 Thread Jake Pilgrim
The answer: A circle is equal to a square and a piece of pie. just in case someone was looking for something psuedo-meaningful in this thread :). ~| ColdFusion MX7 and Flex 2 Build sales marketing dashboard RIA’s

Re: Interesting thing about the Session variable

2007-01-12 Thread Will Tomlinson
OK. Well then I will just blame it on global warming. LOL Good call Bruce! I forgot to setup a dsn before runnin' some code yesterday and I blamed global warming for the error. It always makes me feel better. Will ~| Create

Interesting thing about the Session variable

2007-01-11 Thread Bruce Sorge
As I am coding this application, I stumbled upon something interesting. I scoped out a variable called Session.procedurereadonly, but in the login page, the word Session was not capalized, but in the Index.cfm page, I am referring to it with the capital S, and I got an error that the session

Re: Interesting thing about the Session variable

2007-01-11 Thread James Holmes
CF6 is Java based too. CF is not case sensitive - this is a coincidence and something else is going on in your code. On 1/12/07, Bruce Sorge [EMAIL PROTECTED] wrote: As I am coding this application, I stumbled upon something interesting. I scoped out a variable called Session.procedurereadonly,

Re: Interesting thing about the Session variable

2007-01-11 Thread Bruce Sorge
OK. Well then I will just blame it on global warming. LOL On 1/11/07, James Holmes [EMAIL PROTECTED] wrote: CF6 is Java based too. CF is not case sensitive - this is a coincidence and something else is going on in your code. On 1/12/07, Bruce Sorge [EMAIL PROTECTED] wrote: As I am coding

Cool thing about CFC's

2006-12-13 Thread Peterson, Chris
I was writing a render() function to return html, and I wanted an easy way to separate div content so that I can use xmlHTTP to refresh an individual div after doing an action with my data. So, I can invoke render() with its default config, then INSIDE of the render() function, I can invoke

Re: Cool thing about CFC's

2006-12-13 Thread Raymond Camden
FYI, render is a reserved word in BlueDragon. I ran into that when working w/ BlogCFC. On 12/13/06, Peterson, Chris [EMAIL PROTECTED] wrote: I was writing a render() function to return html, and I wanted an easy way to separate div content so that I can use xmlHTTP to refresh an individual div

RE: Cool thing about CFC's

2006-12-13 Thread Peterson, Chris
-Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 13, 2006 9:40 AM To: CF-Talk Subject: Re: Cool thing about CFC's FYI, render is a reserved word in BlueDragon. I ran into that when working w/ BlogCFC. On 12/13/06, Peterson, Chris [EMAIL PROTECTED] wrote

Re: Cool thing about CFC's

2006-12-13 Thread Christopher Jordan
That cool, Chris! It's a recursive function (a function that calls itself). I'd be interested in seeing you code. Do you mind posting it? Cheers, Chris Peterson, Chris wrote: I was writing a render() function to return html, and I wanted an easy way to separate div content so that I can use

Re: Cool thing about CFC's

2006-12-13 Thread Christopher Jordan
That's cool, Chris! It's a recursive function (a function that calls itself). I'd be interested in seeing you code. Do you mind posting it? Cheers, Chris Peterson, Chris wrote: I was writing a render() function to return html, and I wanted an easy way to separate div content so that I can use

Re: Cool thing about CFC's

2006-12-13 Thread Teddy Payne
it sent back TONs of html! =) Chris -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 13, 2006 9:40 AM To: CF-Talk Subject: Re: Cool thing about CFC's FYI, render is a reserved word in BlueDragon. I ran into that when working w/ BlogCFC

RE: Cool thing about CFC's

2006-12-13 Thread Kevin Roche
Teddy, I am part way through writing somthing like this. Want to share? Kevin -Original Message- From: Teddy Payne [mailto:[EMAIL PROTECTED] Sent: 13 December 2006 15:14 To: CF-Talk Subject: Re: Cool thing about CFC's I have been contemplating how to create one of these for a while

Re: Cool thing about CFC's

2006-12-13 Thread Jon Clausen
It's also handy for file ops as well. Here's an example of a recursive delete for CFMX6 since it doesn't support the 'recurse=true' attribute like CFMX7 (the other functions it references are in a cf6.cfc that I use): cffunction name=deleteDirectory access=public returntype=boolean

OT: Weird thing with windws time

2006-10-30 Thread Doug Brown
Now that we have had to set our clock back an hour, I noticed that my Windows XP box thinks it is a two hour difference. I am in Mountain time at 5:59am and the computer clock has went back to 4:59am I have it on the correct time zone and it was set to automatically adjust. Is anyone else

Simple thing in CF is painfully clunky in PHP

2006-10-06 Thread Andy Matthews
I just found out something about PHP that makes me thankful that I don't use it. Someone on another list asked a question about multiple checkboxed with the same name. For example: INPUT NAME=ck TYPE=CHECKBOX VALUE=example1example1BR / INPUT NAME=ck TYPE=CHECKBOX VALUE=example2example2BR / INPUT

RE: Simple thing in CF is painfully clunky in PHP

2006-10-06 Thread Kevin Aebig
different ways of doing this with PHP that make it a lot more easy... Cheers, !k -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Friday, October 06, 2006 2:07 PM To: CF-Talk Subject: Simple thing in CF is painfully clunky in PHP I just found out something about PHP

That netflix sort thing, from your Queue

2006-05-26 Thread Jeff Small
Does anyone here netflix? If you do, take a look at your queue. Let's say for instance, you have ten items in your queue, and over on the far left, there's a text field that contains your sort order for your queue. You might want to move 7 up to number 3. Now when you do that... How does it

RE: That netflix sort thing, from your Queue

2006-05-26 Thread Adkins, Randy
: That netflix sort thing, from your Queue Does anyone here netflix? If you do, take a look at your queue. Let's say for instance, you have ten items in your queue, and over on the far left, there's a text field that contains your sort order for your queue. You might want to move 7 up to number 3. Now when

Re: That netflix sort thing, from your Queue

2006-05-26 Thread Dante Orlando
On 5/26/06, Jeff Small [EMAIL PROTECTED] wrote: How does it know how to fix the rest of the orders? Now here's an even better part...you can sort all OVER the list. You can make number 3 into number 7, and number 7 into number 8, then make 2 into 10then click sort and they're all correct.

Re: That netflix sort thing, from your Queue

2006-05-26 Thread Matt Williams
Most likely they are using javascript and you should be able to find their specific javascript. Long Live View Source! ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241633 Archives:

Re: That netflix sort thing, from your Queue

2006-05-26 Thread Jeff Small
I may be wrong, but shouldn't it just be a matter of sorting an unordered list of numbers (i.e. positions in your queue), using bubble sort or some other such algorithm. Nah, it seems more complex than that. I don't know, maybe it isn't, but I still don't see how you rectify the list before

is this thing on?

2006-03-07 Thread Bryan Stevenson
I just don't know what to do when my inbox doesn't flood with CF_Talk mail first thing in the morning ;-) I take there is a list problem? 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

RE: is this thing on?

2006-03-07 Thread Munson, Jacob
Everything's fine on my end. -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 07, 2006 10:08 AM To: CF-Talk Subject: is this thing on? I just don't know what to do when my inbox doesn't flood with CF_Talk mail first thing in the morning

Re: is this thing on?

2006-03-07 Thread Cutter (CF-Talk)
Bryan, I have four messages (including yours) from this list since 11AM EST. Cutter Bryan Stevenson wrote: I just don't know what to do when my inbox doesn't flood with CF_Talk mail first thing in the morning ;-) I take there is a list problem? Bryan Stevenson B.Comm. VP Director

RE: Homesite 5.5 and external browsers (one more thing)

2006-02-10 Thread Phillip Perry
and external browsers (one more thing) Do you have integrated windows authentication set in the directory security setting of the IIS properties of the website? -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA - | 1 | | - Binary Soduko

RE: Homesite 5.5 and external browsers (one more thing)

2006-02-10 Thread Ian Skinner
To be honest I dont know anything about IIS. It was on XP Pro when i bought it. Would that hinder other browsers except IE to work? Phil Well, hinder might be a bit strong, but they would react differently. Only a browser with an IE core can provide the response to an integrated windows

RE: Homesite 5.5 and external browsers (one more thing)

2006-02-09 Thread Munson, Jacob
Are you using cgi.auth_user? -Original Message- From: Phillip Perry [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 08, 2006 9:01 PM To: CF-Talk Subject: RE: Homesite 5.5 and external browsers (one more thing) OK, now I switched the mapping to localhost and it works in IE

RE: Homesite 5.5 and external browsers (one more thing)

2006-02-09 Thread Phillip Perry
no actually its just a plain html doc with just an empty table in it and ..cfm as an extention. -Original Message- From: Munson, Jacob [mailto:[EMAIL PROTECTED] Sent: Thursday, February 09, 2006 10:15 AM To: CF-Talk Subject: RE: Homesite 5.5 and external browsers (one more thing

RE: Homesite 5.5 and external browsers (one more thing)

2006-02-09 Thread Ian Skinner
Do you have integrated windows authentication set in the directory security setting of the IIS properties of the website? -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA - | 1 | | - Binary Soduko | | | - C code. C code

RE: Homesite 5.5 and external browsers (one more thing)

2006-02-08 Thread Phillip Perry
The site is viewable if i type either address in the bar physically just not when I use HS view in external browser button. The default is IE Phil -Original Message- From: Phillip Perry [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 08, 2006 10:33 PM To: CF-Talk Subject: OT: Homesite

RE: Homesite 5.5 and external browsers (one more thing)

2006-02-08 Thread Dawson, Michael
Are there any references (CSS/Images/etc) that are, themselves, secured? -Original Message- From: Phillip Perry [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 08, 2006 9:40 PM To: CF-Talk Subject: RE: Homesite 5.5 and external browsers (one more thing) The site is viewable if i

RE: Homesite 5.5 and external browsers (one more thing)

2006-02-08 Thread Phillip Perry
No nothings secure Phil -Original Message- From: Dawson, Michael [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 08, 2006 10:44 PM To: CF-Talk Subject: RE: Homesite 5.5 and external browsers (one more thing) Are there any references (CSS/Images/etc) that are, themselves, secured

RE: Homesite 5.5 and external browsers (one more thing)

2006-02-08 Thread Phillip Perry
OK, now I switched the mapping to localhost and it works in IE but opera NS and FF all want username and password still. I haven't a clue what this could be Phil -Original Message- From: Phillip Perry [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 08, 2006 10:33 PM To: CF-Talk

SOT: Wierd IE thing with Text Field

2006-01-19 Thread jonese
We have an issue which for the life of us we can't figure out why it's happening. when a user is using IE and has javascript turned on the user is unable to scroll and view long text in a text field. Ie if you have a text field set to a size of 20 and the actual text entered is 50 chars long and

Re: is this thing on?

2005-12-29 Thread Anthony Prato
: Wednesday, December 28, 2005 7:51 PM To: CF-Talk Subject: is this thing on? I've posted a few questions in the past month, some were out there, but one was easy (i think) and I'm not sure if my mail is getting to the list. Can you see this? My question was, how do you tell

  1   2   3   4   >