Re: Auction site question

2003-08-03 Thread Michael Dinowitz
I've written some patent pending auction code and have implemented this in a few ways. The basic way is: 1. take a bid and store it 2. Is it a new bid? yes, then the winning bid is now the minimum needed for the item. no, then look at the previous bid. Does the new bid beat the proxy (i.e.

Re: CFC Addressing

2003-08-03 Thread Sean A Corfield
On Saturday, Aug 2, 2003, at 05:59 US/Pacific, Jason Blum wrote: Does anyone happen to know whether one's calling template and one's CFCs can reside in separate security sandboxes? For instance, could an ISP put all client sites in one default security sandbox with few

Re: Powered by CFMX

2003-08-03 Thread Sean A Corfield
On Saturday, Aug 2, 2003, at 19:39 US/Pacific, Mike Kear wrote: In days gone by, there was a Powered by ColdFusion logo we all used, to advertise to the non-enlightened that this was a site built on great technology. Is there an equivalent for CFMX that we can freely use on our CF sites?

RE: Powered by CFMX

2003-08-03 Thread Raymond Camden
There is one on cflib.org, steal it from there. === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc (www.mindseye.com) Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia) Email: [EMAIL

New LiveDocs system!

2003-08-03 Thread Sean A Corfield
Just in case folks haven't seen the announcement on my blog, we re-launched LiveDocs on Friday... Sean A Corfield -- http://www.corfield.org/blog/ If you're not annoying somebody, you're not really alive. -- Margaret Atwood ~|

Re: New LiveDocs system!

2003-08-03 Thread Calvin Ward
I love having the LiveDocs available, but can we do something with these pages: http://livedocs.macromedia.com/coldfusion/6/CFML_Reference/functions-pt1.htm http://livedocs.macromedia.com/coldfusion/6/CFML_Reference/Tags-pt1.htm When you're rushing up there to find something, these dead ends

RE: UTC Timezone Offset

2003-08-03 Thread Tony Weeg
salisbury :) playing golf this lovely eastern sho' mornin tony -Original Message- From: Michael T. Tangorre [mailto:[EMAIL PROTECTED] Sent: Saturday, August 02, 2003 9:50 PM To: CF-Talk Subject: RE: UTC Timezone Offset Tony, Where abouts in MD are you? I'm in Silver Spring You

RE: Auction site question

2003-08-03 Thread Jack Poe
Thanks! I have something VERY similar to that - sometimes it's just easier to see someone elses' thinking so you know you aren't going crazy :) -Jack -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Saturday, August 02, 2003 11:23 PM To: CF-Talk Subject: Re:

Re: New LiveDocs system!

2003-08-03 Thread Sean A Corfield
On Sunday, Aug 3, 2003, at 04:54 US/Pacific, Calvin Ward wrote: I love having the LiveDocs available, but can we do something with these pages: http://livedocs.macromedia.com/coldfusion/6/CFML_Reference/functions- pt1.htm

Re: New LiveDocs system!

2003-08-03 Thread Calvin Ward
Excellent news! I have one other suggestion, can we have some manner of retaining book chapter navigation without having to use up/left/right, or the browser back button? Thanks for the great stuffs! - Calvin - Original Message - From: Sean A Corfield [EMAIL PROTECTED] To: CF-Talk

Re: New LiveDocs system!

2003-08-03 Thread Sean A Corfield
On Sunday, Aug 3, 2003, at 09:28 US/Pacific, Calvin Ward wrote: I have one other suggestion, can we have some manner of retaining book chapter navigation without having to use up/left/right, or the browser back button? You mean like this? Contents CFML Reference ColdFusion Functions

Re: New LiveDocs system!

2003-08-03 Thread Calvin Ward
Breadcrumbs would be great! Just something allowing us to move quickly through things. without wondering where up one level or Next or Previous are going to take us... Kind of like I'm feeling lucky Google search right now... :P - Calvin - Original Message - From: Sean A Corfield

RE: UTC Timezone Offset

2003-08-03 Thread Bryan F. Hogan
Ok fine, 4 is correct, so since it is returning to me just the number 4 I'm assuming that I should append a + sign to it? If I was in a timezone that was positive CFML would return the number and the - sign correct? All I want to do is have a time formatted like 2003-08-03T11:15:35+10:00 How do

Announcement: onTap Open Source ColdFusion Framework

2003-08-03 Thread S . Isaac Dealey
Some of you may find this a bit familiar. http://www.turnkey.to/ontap I realize much of the look and feel of the documentation is the same as the previous open source project I published some months back ( Tapestry API or TAPI http://www.turnkey.to/tapi ). No surprise to me, the previous open

Debugging

2003-08-03 Thread Haggerty, Mike
Hi, I am working on an RIA using CFMX, and using CF to generate some XML pages. I am running into a problem with the debug portion of the CF page, obviously Flash doesn't like all those comments appearing at the bottom of each page. Is there a way in CFMX is programmatically control the

Re: Debugging

2003-08-03 Thread Dave Carabetta
Is there a way in CFMX is programmatically control the display of debug information in the application? I know you couldn't do this in CF5, but can you, for example, set a tag to remove all debug content from the page? You can use cfsetting's showdebugoutput attribute, and set it to no:

RE: CFC Addressing

2003-08-03 Thread Blum, Jason (SAA)
Hi Sean, Thank you - I see what you mean. Actually the same is true even within a single instance between multiple security sandboxes. It's such a shame because ISP's would benefit so enormously from the ability to not allow clients to query a database (i.e. restricting it in their sandbox) -

An ISP's Dream: Extensions in one sandbox, client code in another

2003-08-03 Thread Blum, Jason (SAA)
This question was tacked on to another discussion, but thought I might solicit more feedback by starting its own thread? From an ISP's perspective, would it not be a God-send to put all clients in one big, heavily restricted sandbox (no datasources, etc.) and all datasource-accessing CFC's and

Re: An ISP's Dream: Extensions in one sandbox, client code in another

2003-08-03 Thread Jochem van Dieten
Blum, Jason (SAA) wrote: From an ISP's perspective, would it not be a God-send to put all clients in one big, heavily restricted sandbox (no datasources, etc.) and all datasource-accessing CFC's and other extensions in another sandbox to which only the ISP administrator has posting rights?

Debugging

2003-08-03 Thread Mike Mertsock
I've been using cfsetting showdebugoutput=false a lot in the past week or two, on CFMX/updater 3, and it works exactly as expected. I don't remember either how this behaved pre-MX. Mike Mertsock Alfred University Web Team FYI though, I believe this *did* work pre-MX. I use it in CF 4.5 with no

Checkboxes in CGI

2003-08-03 Thread Jim McAtee
When a form passes multiple, same-name checkboxes to a CGI script (Perl, C, whatever), what is the raw format of those form field values? I'm trying knock together a cf app that works with an existing form handling script (in Perl, I believe) on another server. The way it works is cftemplate1

Re: Debugging

2003-08-03 Thread Jim McAtee
Hi, I am working on an RIA using CFMX, and using CF to generate some XML pages. I am running into a problem with the debug portion of the CF page, obviously Flash doesn't like all those comments appearing at the bottom of each page. Is there a way in CFMX is programmatically control the

RE: An ISP's Dream: Extensions in one sandbox, client code in another

2003-08-03 Thread Blum, Jason (SAA)
Hi Jochem, Yes, the CFEXECUTE was a bad example. Suppose instead you hosted all a University's various colleges' websites on one server. None of them had particularly good developers and instead of teaching them all SQL and relational database theory, you just gave them backend logins to a CMS

RE: Checkboxes in CGI

2003-08-03 Thread Dave Watts
When a form passes multiple, same-name checkboxes to a CGI script (Perl, C, whatever), what is the raw format of those form field values? Assuming that the form was submitted via HTTP POST using the standard MIME type (application/x-www-urlencoded), they'd be strung together like this:

RE: consistancy

2003-08-03 Thread Dave Watts
Why is the naming not consistent? For instance... Inside a cfcomponent tag you can have functions (cffunction) yet when you publish this as a web service you use http://someUrl/someDir/componentName.cfc?method=methodName in the url. Why not call method function or function method in

RE: Search engine safe urls

2003-08-03 Thread Dave Watts
I've looked high and low and I can't find an answer that works so I'm going to ask here. In the release notes for the updater it says as one of the features fixed: Search engine safe URLs of the form *.cfm/* did not work properly, so a URL such as http:/server/test.cfm/alpha/beta would

RE: Browser Login Feature

2003-08-03 Thread Dave Watts
Has anyone had any luck implimenting this? I copied this code directly from the Developing ColdFusionMX Applications with CFML book that Macromedia includes with CFMX into an Application.cfm template: cfapplication name=Test clientmanagement=yes/ cflogin cfif IsDefined( cflogin )

SQL Join Problem (Easy ?)

2003-08-03 Thread webmaster
This I bet is easy, but I am not seeing it... Here is the query: cfquery name=inv_list_1 datasource=#heinz.dsn# Select inventory.service_id, inventory.service_name,

Sandbox permissions denied!!!

2003-08-03 Thread Stéphane_Bisson
Hi, I decided to put a sandbox for my site and now I cannot do anything... I'm stock... When I want to Enable the CF Tag cfregistry that I disable... I disable it because I'm not using it, but I know now that cfapplication tag is using it... that's why I wanted to put it back... it gives me

New LiveDocs system!

2003-08-03 Thread Stephane Bisson
Sean, I really like the LiveDocs but I just think it's missing something important for ColdFusion MX... CFCs.. how come there is nothing talking about that!... may be I'm blind... but I check many times... CFCs are not describe at all... and also I'm questionning about Comments... should I

New LiveDocs system!

2003-08-03 Thread Stephane Bisson
Sean, I really like the LiveDocs but I just think it's missing something important for ColdFusion MX... CFCs.. how come there is nothing talking about that!... may be I'm blind... but I check many times... CFCs are not describe at all... and also I'm questionning about Comments... should I