CF Rules on including Application.cfm

2006-08-21 Thread Robertson-Ravo, Neil (RX)
Hi,

Does anyone know what the rules are for ColdFusion including
Application.cfm?  I mean, it cannot be as simple as you have requested a
..cfm file, I am gonna look for an Application.cfm now is it?  Does it look
into headers etc?

If anyone knows a more technical process for its inclusion, please post! I
have a problem I need to solve and it would seem CF is doing something else
when it comes to the inclusion of Application.cfm

Neil





~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250471
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CF Rules on including Application.cfm

2006-08-21 Thread Munson, Jacob
It is as simple as you stated.  If you run a .cfm file, ColdFusion looks
for an Application.cfm file in it's directory, and in the parent
application's root directory.  It will run both of those (assuming there
is a lower level directory Application.cfm file)

 -Original Message-
 From: Robertson-Ravo, Neil (RX) 
 [mailto:[EMAIL PROTECTED] 
 Sent: Monday, August 21, 2006 8:53 AM
 
 Does anyone know what the rules are for ColdFusion including
 Application.cfm?  I mean, it cannot be as simple as you have 
 requested a
 ..cfm file, I am gonna look for an Application.cfm now is 
 it?  Does it look
 into headers etc?

This transmission may contain information that is privileged, confidential 
and/or exempt from disclosure under applicable law. If you are not the intended 
recipient, you are hereby notified that any disclosure, copying, distribution, 
or use of the information contained herein (including any reliance thereon) is 
STRICTLY PROHIBITED. If you received this transmission in error, please 
immediately contact the sender and destroy the material in its entirety, 
whether in electronic or hard copy format. Thank you. A1.



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250473
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CF Rules on including Application.cfm

2006-08-21 Thread Everett, Al \(NIH/NIGMS\) [C]
Uh...not as I understand it. CF looks for an Application.cfm in the
current template's directory. If one isn't found it looks in the next
higher directory and keeps moving up the directory tree until it finds
an Application.cfm or reaches the root directory. It never runs more
than one Application.cfm unless you do something like cfinclude
template=../Application.cfm in an Application.cfm file.

Note that CFMX7 will use Application.cfc if one is found and ignore
Application.cfm.

-Original Message-
From: Munson, Jacob 
Sent: Monday, August 21, 2006 1:00 PM
To: CF-Talk
Subject: RE: CF Rules on including Application.cfm

It is as simple as you stated.  If you run a .cfm file, ColdFusion looks
for an Application.cfm file in it's directory, and in the parent
application's root directory.  It will run both of those (assuming there
is a lower level directory Application.cfm file)

 -Original Message-
 From: Robertson-Ravo, Neil (RX)
 Sent: Monday, August 21, 2006 8:53 AM
 
 Does anyone know what the rules are for ColdFusion including 
 Application.cfm?  I mean, it cannot be as simple as you have 
 requested a ..cfm file, I am gonna look for an Application.cfm now is

 it?  Does it look into headers etc?

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250474
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CF Rules on including Application.cfm

2006-08-21 Thread Eric Haskins
http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/appfra11.htm

Might help

Eric

On 8/21/06, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED]
wrote:

 Hi,

 Does anyone know what the rules are for ColdFusion including
 Application.cfm?  I mean, it cannot be as simple as you have requested a
 ..cfm file, I am gonna look for an Application.cfm now is it?  Does it
 look
 into headers etc?

 If anyone knows a more technical process for its inclusion, please post! I
 have a problem I need to solve and it would seem CF is doing something
 else
 when it comes to the inclusion of Application.cfm

 Neil
 --
 ~Eric


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250475
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CF Rules on including Application.cfm

2006-08-21 Thread Munson, Jacob
Ah, good to know.  I thought it ran both, but anything done in the local
one overrides the stuff in the root file.  Anyway, I'm not sure how
they'd do that, now that I think about it.  So that makes sense (that it
only runs the local one).

 -Original Message-
 From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED] 
 Sent: Monday, August 21, 2006 11:05 AM
 
 Uh...not as I understand it. CF looks for an Application.cfm in the
 current template's directory. If one isn't found it looks in the next
 higher directory and keeps moving up the directory tree until it finds
 an Application.cfm or reaches the root directory. It never runs more
 than one Application.cfm unless you do something like cfinclude
 template=../Application.cfm in an Application.cfm file.
 
 Note that CFMX7 will use Application.cfc if one is found and ignore
 Application.cfm.
 
 -Original Message-
 From: Munson, Jacob 
 Sent: Monday, August 21, 2006 1:00 PM
 
 It is as simple as you stated.  If you run a .cfm file, 
 ColdFusion looks
 for an Application.cfm file in it's directory, and in the parent
 application's root directory.  It will run both of those 
 (assuming there
 is a lower level directory Application.cfm file)

This transmission may contain information that is privileged, confidential 
and/or exempt from disclosure under applicable law. If you are not the intended 
recipient, you are hereby notified that any disclosure, copying, distribution, 
or use of the information contained herein (including any reliance thereon) is 
STRICTLY PROHIBITED. If you received this transmission in error, please 
immediately contact the sender and destroy the material in its entirety, 
whether in electronic or hard copy format. Thank you. A1.



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250477
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF Rules on including Application.cfm

2006-08-21 Thread Kris Jones
Al is correct. Once it finds an Application.cfm, it stops looking.
And, it will continue to traverse up the directory tree to find one,
beyond the web root all the way to the drive root. (At least that's
what they say in the book. I haven't tried it.) An Application.cfc
will take precedence. If an Application.cfc is found, no search for
Application.cfm is performed.

Cheers,
Kris

 Uh...not as I understand it. CF looks for an Application.cfm in the
 current template's directory. If one isn't found it looks in the next
 higher directory and keeps moving up the directory tree until it finds
 an Application.cfm or reaches the root directory. It never runs more
 than one Application.cfm unless you do something like cfinclude
 template=../Application.cfm in an Application.cfm file.

 Note that CFMX7 will use Application.cfc if one is found and ignore
 Application.cfm.

 It is as simple as you stated.  If you run a .cfm file, ColdFusion looks
 for an Application.cfm file in it's directory, and in the parent
 application's root directory.  It will run both of those (assuming there
 is a lower level directory Application.cfm file)

  Does anyone know what the rules are for ColdFusion including
  Application.cfm?  I mean, it cannot be as simple as you have
  requested a ..cfm file, I am gonna look for an Application.cfm now is
  it?  Does it look into headers etc?

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250483
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF Rules on including Application.cfm

2006-08-21 Thread Claude Schneegans
 CF looks for an Application.cfm in the
current template's directory. If one isn't found it looks in the next
higher directory and keeps moving up the directory tree until it finds
an Application.cfm or reaches the root directory. It never runs more
than one Application.cfm unless you do something like cfinclude
template=../Application.cfm in an Application.cfm file.

Confirmed.

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250485
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CF Rules on including Application.cfm

2006-08-21 Thread Robertson-Ravo, Neil (RX)
Hmmm, there must be something more to this... Will have to investigate
further.






This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Claude Schneegans
To: CF-Talk
Sent: Mon Aug 21 19:17:58 2006
Subject: Re: CF Rules on including Application.cfm

 CF looks for an Application.cfm in the
current template's directory. If one isn't found it looks in the next
higher directory and keeps moving up the directory tree until it finds
an Application.cfm or reaches the root directory. It never runs more
than one Application.cfm unless you do something like cfinclude
template=../Application.cfm in an Application.cfm file.

Confirmed.

-- 

___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.




~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250493
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CF rules!!!

2001-03-17 Thread Andrew Scott

Philip,

Sorry discussing the best feautures of CF5.0 is technical, there are somve
very intersting things that are in CF5.0 and the UDF's opens up a lot of new
methods and functionality. So why can't we discuss it in here!


-Original Message-
From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]]
Sent: Saturday, 17 March 2001 5:40 AM
To: CF-Talk
Subject: RE: CF rules!!!


 CF, in this case, means Caffeine!!!  I've been up all night
 writing code and
 today almost drove off a freeway going 75mph  ack!  i'm
 crazy!  but now
 I'm wide awake!!  hold up, my fingers are twitching!  ahh!!!

 anyhow, that CF thingy in houston wednesday night with ben Forta was cool.
 he had a pretty cool accent too.  I can't wait to start using CF 5, or
 NEO!!!  what do u guys think the best thing in CF 5 is?  For me, it's the
 user defined functions!

I must say that the best thing is keeping non-technical conversations in
CF-Community where they belong...

Biggest Bonuses to CF5;
UserDefined Functions (awaiting Beta2)
Query a Query - this is f***ing BRILLIANT
CFFlush
Speed increase!

Philip Arnold
Director
Certified ColdFusion Developer
ASP Multimedia Limited
T: +44 (0)20 8680 1133

"Websites for the real world"

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CF rules!!!

2001-03-17 Thread Eric Dawson

this whole thread started with an innocent slightly OT thread with some 
youthful exzuberance (sp-it's late and partially intentional). lighten up 
list. the original post was almost 100% on topic. ie how 'bout that cf 5 eh?

So unless you know this guy well enough to know to ride him like you are, I 
think you cowboys should well...

E

From: [EMAIL PROTECTED] (Michael Dinowitz)
Reply-To: [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Subject: Re: CF rules!!!
Date: Fri, 16 Mar 2001 17:32:21 -0500

No, the term is professional. Most of us are hackers in the most classical
sense but we're also professionals who know how to spell (or use a spell
checker) and how not to piss everyone off.
I'm going to ask this for the last time. Keep it technical and professional
on this list or 


  hippocrits
 
  -Original Message-
  From: Kevin Schmidt [mailto:[EMAIL PROTECTED]]
  Sent: Friday, March 16, 2001 4:51 PM
  To: CF-Talk
  Subject: Re: CF rules!!!
 
 
  Maybe he should try [EMAIL PROTECTED]
  - Original Message -
  From: "Adrian Cooper" [EMAIL PROTECTED]
  To: "CF-Talk" [EMAIL PROTECTED]
  Sent: Friday, March 16, 2001 3:28 PM
  Subject: Re: CF rules!!!
 
 
  
   - Original Message -
   From: "Phoeun Pha" [EMAIL PROTECTED]
   Sent: Friday, March 16, 2001 9:06 PM
  
  
Peter, you are aware this is the CF talk list, where programmers can
be
programmers.  I will groom myself when I am in the CF jobs talklist 
:)
  
   Yes, but _most_ programmers on this list conduct themselves, their
  comments and
   discussions as you would expect from a professional person.
  
   Adrian Cooper.
  
  
  
  
 
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF rules!!!

2001-03-17 Thread Andrew Scott

I am with you on this, I have been in this list for a number of years. And
this time it is time to say something, you American posters have got to
lighten up a little start enjoying life a bit more.

Lets leave our business minds at the office, or if you are at the office
then lighten up and enjoy a bit of humor into the question. I am sorry to
say that I enjoyed the lead in to the question, because it stopped me in my
tracks and made be take notice of the entire question.


-Original Message-
From: Phoeun Pha [mailto:[EMAIL PROTECTED]]
Sent: Saturday, 17 March 2001 8:07 AM
To: CF-Talk
Subject: RE: CF rules!!!


Peter, you are aware this is the CF talk list, where programmers can be
programmers.  I will groom myself when I am in the CF jobs talklist :)



-Original Message-
From: Peter Theobald [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 16, 2001 2:30 PM
To: CF-Talk
Subject: Re: CF rules!!!


Phoeun, are you aware that just about everybody who hires Cold Fusion
programmers is on this list? Programmers are a surprisingly small community.
We are all cultivating an image and reputation here.

Sorry to be such a bummer... your typical rant caught me in a bad mood...
If you worked with me I'd be happy to play Quake, have some drinks, or play
paintball with you (whatever). But not on this list.

At 12:19 PM 3/16/01 -0600, Phoeun Pha wrote:
CF, in this case, means Caffeine!!!  I've been up all night writing code
and
today almost drove off a freeway going 75mph  ack!  i'm crazy!  but now
I'm wide awake!!  hold up, my fingers are twitching!  ahh!!!

anyhow, that CF thingy in houston wednesday night with ben Forta was cool.
he had a pretty cool accent too.  I can't wait to start using CF 5, or
NEO!!!  what do u guys think the best thing in CF 5 is?  For me, it's the
user defined functions!


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CF rules!!!

2001-03-17 Thread Eric Dawson

no this isn't a professional list for professional people. It is a peer list 
comprised of professionals. There is a huge difference in the conduct, and 
as such this list rocks. I have learned more from this list, and I am 
gratefully thankful for its contributors.

Lighten up. There's no turning back, no saving grace. Eat it. Relax. No hard 
feelings. Tough market lately eh?

Yes CFFlush is good. I think there are some obvious improvements to 5. as in 
why wasn;t it always like this improvements. But hey 4.5 is still what I 
have.

E

From: "Adrian Cooper" [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Subject: Re: CF rules!!!
Date: Fri, 16 Mar 2001 23:34:25 -


- Original Message -
From: "Jason Lotz" [EMAIL PROTECTED]
Sent: Friday, March 16, 2001 10:34 PM


  How in the world do you people complain about Phoeun and then send drivel
  like this to the list?  Stop being hypocritical or just lighten up in the
  first place.  I guarantee that the latter makes life a whole lot more
  enjoyable.  In any case, at least be consistent.

My apologies.

But I think (hope) the serious point has been made now.

This is a professional list for professional people, and should be conducted
that way.

Adrian Cooper.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CF rules!!!

2001-03-16 Thread Phoeun Pha

CF, in this case, means Caffeine!!!  I've been up all night writing code and
today almost drove off a freeway going 75mph  ack!  i'm crazy!  but now
I'm wide awake!!  hold up, my fingers are twitching!  ahh!!!

anyhow, that CF thingy in houston wednesday night with ben Forta was cool.
he had a pretty cool accent too.  I can't wait to start using CF 5, or
NEO!!!  what do u guys think the best thing in CF 5 is?  For me, it's the
user defined functions!

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF rules!!!

2001-03-16 Thread Philip Arnold - ASP

 CF, in this case, means Caffeine!!!  I've been up all night
 writing code and
 today almost drove off a freeway going 75mph  ack!  i'm
 crazy!  but now
 I'm wide awake!!  hold up, my fingers are twitching!  ahh!!!

 anyhow, that CF thingy in houston wednesday night with ben Forta was cool.
 he had a pretty cool accent too.  I can't wait to start using CF 5, or
 NEO!!!  what do u guys think the best thing in CF 5 is?  For me, it's the
 user defined functions!

I must say that the best thing is keeping non-technical conversations in
CF-Community where they belong...

Biggest Bonuses to CF5;
UserDefined Functions (awaiting Beta2)
Query a Query - this is f***ing BRILLIANT
CFFlush
Speed increase!

Philip Arnold
Director
Certified ColdFusion Developer
ASP Multimedia Limited
T: +44 (0)20 8680 1133

"Websites for the real world"

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF rules!!!

2001-03-16 Thread Phoeun Pha

come on man, we need some personality in our posts too.  at least i put
something legitimate in it :P



-Original Message-
From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 16, 2001 12:40 PM
To: CF-Talk
Subject: RE: CF rules!!!


 CF, in this case, means Caffeine!!!  I've been up all night
 writing code and
 today almost drove off a freeway going 75mph  ack!  i'm
 crazy!  but now
 I'm wide awake!!  hold up, my fingers are twitching!  ahh!!!

 anyhow, that CF thingy in houston wednesday night with ben Forta was cool.
 he had a pretty cool accent too.  I can't wait to start using CF 5, or
 NEO!!!  what do u guys think the best thing in CF 5 is?  For me, it's the
 user defined functions!

I must say that the best thing is keeping non-technical conversations in
CF-Community where they belong...

Biggest Bonuses to CF5;
UserDefined Functions (awaiting Beta2)
Query a Query - this is f***ing BRILLIANT
CFFlush
Speed increase!

Philip Arnold
Director
Certified ColdFusion Developer
ASP Multimedia Limited
T: +44 (0)20 8680 1133

"Websites for the real world"

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CF rules!!!

2001-03-16 Thread John Ellard

For me, it's the possibility of using this product to earn a living.  I 
agree - you are crazy.  Could we restrict this list to useful contributions 
rather than youthful exuberance please?

My nose is twitching

John



At 12:19 16/03/2001 -0600, you wrote:
CF, in this case, means Caffeine!!!  I've been up all night writing code and
today almost drove off a freeway going 75mph  ack!  i'm crazy!  but now
I'm wide awake!!  hold up, my fingers are twitching!  ahh!!!

anyhow, that CF thingy in houston wednesday night with ben Forta was cool.
he had a pretty cool accent too.  I can't wait to start using CF 5, or
NEO!!!  what do u guys think the best thing in CF 5 is?  For me, it's the
user defined functions!



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF rules!!!

2001-03-16 Thread Jon Gage

No, you really didn't.  It's becoming a habit that you should stop.

 -Original Message-
 From: Phoeun Pha [mailto:[EMAIL PROTECTED]]
 Sent: Friday, March 16, 2001 1:42 PM
 To: CF-Talk
 Subject: RE: CF rules!!!
 
 
 come on man, we need some personality in our posts too.  at least i put
 something legitimate in it :P
 
 
 
 -Original Message-
 From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]]
 Sent: Friday, March 16, 2001 12:40 PM
 To: CF-Talk
 Subject: RE: CF rules!!!
 
 
  CF, in this case, means Caffeine!!!  I've been up all night
  writing code and
  today almost drove off a freeway going 75mph  ack!  i'm
  crazy!  but now
  I'm wide awake!!  hold up, my fingers are twitching!  ahh!!!
 
  anyhow, that CF thingy in houston wednesday night with ben 
 Forta was cool.
  he had a pretty cool accent too.  I can't wait to start using CF 5, or
  NEO!!!  what do u guys think the best thing in CF 5 is?  For 
 me, it's the
  user defined functions!
 
 I must say that the best thing is keeping non-technical conversations in
 CF-Community where they belong...
 
 Biggest Bonuses to CF5;
 UserDefined Functions (awaiting Beta2)
 Query a Query - this is f***ing BRILLIANT
 CFFlush
 Speed increase!
 
 Philip Arnold
 Director
 Certified ColdFusion Developer
 ASP Multimedia Limited
 T: +44 (0)20 8680 1133
 
 "Websites for the real world"
 
 **
 This email and any files transmitted with it are confidential and
 intended solely for the use of the individual or entity to whom they
 are addressed. If you have received this email in error please notify
 the system manager.
 **
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF rules!!!

2001-03-16 Thread Steve Bernard

Your adulation of "Query a Query" requires comment. That functionality has
been asked for as far back as version 2.0, to my knowledge. Not that it
isn't a great idea, just nothing new.

Steve

-Original Message-
From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 16, 2001 1:40 PM
To: CF-Talk
Subject: RE: CF rules!!!

... snip
Biggest Bonuses to CF5;
UserDefined Functions (awaiting Beta2)
Query a Query - this is f***ing BRILLIANT
CFFlush
Speed increase!
/snip ..

Philip Arnold
Director
Certified ColdFusion Developer
ASP Multimedia Limited
T: +44 (0)20 8680 1133

"Websites for the real world"

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF rules!!!

2001-03-16 Thread Philip Arnold - ASP

 Your adulation of "Query a Query" requires comment. That functionality has
 been asked for as far back as version 2.0, to my knowledge. Not that it
 isn't a great idea, just nothing new.

OK, my testing on the Beta has increased some of my template runs (the ones
that use 2 or 3 datasources, some on different database types) has cut the
running times down from a couple of minutes to about 20 seconds...

It's not a new idea, but I love that it's there now...

Philip Arnold
Director
Certified ColdFusion Developer
ASP Multimedia Limited
T: +44 (0)20 8680 1133

"Websites for the real world"

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF rules!!!

2001-03-16 Thread John Wilker

I think that's probably what the adulation was for. It's finally being
included.

J.


John Wilker
Web Applications Consultant
Allaire Certified ColdFusion Developer

Office: 909-943-8428
www.billtracker.org http://www.billtracker.org


-Original Message-
From: Steve Bernard [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 16, 2001 11:00 AM
To: CF-Talk
Subject: RE: CF rules!!!


Your adulation of "Query a Query" requires comment. That functionality has
been asked for as far back as version 2.0, to my knowledge. Not that it
isn't a great idea, just nothing new.

Steve

-Original Message-
From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 16, 2001 1:40 PM
To: CF-Talk
Subject: RE: CF rules!!!

 snip
Biggest Bonuses to CF5;
UserDefined Functions (awaiting Beta2)
Query a Query - this is f***ing BRILLIANT
CFFlush
Speed increase!
/snip ..

Philip Arnold
Director
Certified ColdFusion Developer
ASP Multimedia Limited
T: +44 (0)20 8680 1133

"Websites for the real world"

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF rules!!!

2001-03-16 Thread Phoeun Pha

I heard from Ben, that a good use for querying a query would be to compare
data between two remote datasources with ease.  If there was no query a
query function, what would be the alternative to perform the same
comparison? I couldn't think of any other valuable uses for querying a
query, it would be great if yall could tell me some good uses for them!

by the way, la la al a ala  looh oee lalala la la :P





-Original Message-
From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 16, 2001 1:11 PM
To: CF-Talk
Subject: RE: CF rules!!!


 Your adulation of "Query a Query" requires comment. That functionality has
 been asked for as far back as version 2.0, to my knowledge. Not that it
 isn't a great idea, just nothing new.

OK, my testing on the Beta has increased some of my template runs (the ones
that use 2 or 3 datasources, some on different database types) has cut the
running times down from a couple of minutes to about 20 seconds...

It's not a new idea, but I love that it's there now...

Philip Arnold
Director
Certified ColdFusion Developer
ASP Multimedia Limited
T: +44 (0)20 8680 1133

"Websites for the real world"

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF rules!!!

2001-03-16 Thread Robert Long

One example that Mr. Forta gave at his presentation in Dallas was
something like a shopping site could query all of it's products
at the beginning of a user's session. 
Then each page there after would just query the one products
query. Thus only hitting the database one time during that user's session.

He also mentioned querying two different databases, then joining
them, then being able to query against the newly joined query. Again,
increasing database server efficiency.

Also, mentioned joining a query with a verity search or something
like that. Too much information at once. :)

Robert


-Original Message-
From: Phoeun Pha [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 16, 2001 1:23 PM
To: CF-Talk
Subject: RE: CF rules!!!


I heard from Ben, that a good use for querying a query would be to compare
data between two remote datasources with ease.  If there was no query a
query function, what would be the alternative to perform the same
comparison? I couldn't think of any other valuable uses for querying a
query, it would be great if yall could tell me some good uses for them!

by the way, la la al a ala  looh oee lalala la la :P





-Original Message-
From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 16, 2001 1:11 PM
To: CF-Talk
Subject: RE: CF rules!!!


 Your adulation of "Query a Query" requires comment. That functionality has
 been asked for as far back as version 2.0, to my knowledge. Not that it
 isn't a great idea, just nothing new.

OK, my testing on the Beta has increased some of my template runs (the ones
that use 2 or 3 datasources, some on different database types) has cut the
running times down from a couple of minutes to about 20 seconds...

It's not a new idea, but I love that it's there now...

Philip Arnold
Director
Certified ColdFusion Developer
ASP Multimedia Limited
T: +44 (0)20 8680 1133

"Websites for the real world"

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CF rules!!!

2001-03-16 Thread Peter Theobald

Phoeun, are you aware that just about everybody who hires Cold Fusion programmers is 
on this list? Programmers are a surprisingly small community. We are all cultivating 
an image and reputation here.

Sorry to be such a bummer... your typical rant caught me in a bad mood...
If you worked with me I'd be happy to play Quake, have some drinks, or play paintball 
with you (whatever). But not on this list.

At 12:19 PM 3/16/01 -0600, Phoeun Pha wrote:
CF, in this case, means Caffeine!!!  I've been up all night writing code and
today almost drove off a freeway going 75mph  ack!  i'm crazy!  but now
I'm wide awake!!  hold up, my fingers are twitching!  ahh!!!

anyhow, that CF thingy in houston wednesday night with ben Forta was cool.
he had a pretty cool accent too.  I can't wait to start using CF 5, or
NEO!!!  what do u guys think the best thing in CF 5 is?  For me, it's the
user defined functions!


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF rules!!!

2001-03-16 Thread Savan Thongvanh



real world mode now, how realistic is querying your inventory for each user?
RAM resources?



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF rules!!!

2001-03-16 Thread Phoeun Pha

Peter, you are aware this is the CF talk list, where programmers can be
programmers.  I will groom myself when I am in the CF jobs talklist :)



-Original Message-
From: Peter Theobald [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 16, 2001 2:30 PM
To: CF-Talk
Subject: Re: CF rules!!!


Phoeun, are you aware that just about everybody who hires Cold Fusion
programmers is on this list? Programmers are a surprisingly small community.
We are all cultivating an image and reputation here.

Sorry to be such a bummer... your typical rant caught me in a bad mood...
If you worked with me I'd be happy to play Quake, have some drinks, or play
paintball with you (whatever). But not on this list.

At 12:19 PM 3/16/01 -0600, Phoeun Pha wrote:
CF, in this case, means Caffeine!!!  I've been up all night writing code
and
today almost drove off a freeway going 75mph  ack!  i'm crazy!  but now
I'm wide awake!!  hold up, my fingers are twitching!  ahh!!!

anyhow, that CF thingy in houston wednesday night with ben Forta was cool.
he had a pretty cool accent too.  I can't wait to start using CF 5, or
NEO!!!  what do u guys think the best thing in CF 5 is?  For me, it's the
user defined functions!


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CF rules!!!

2001-03-16 Thread Adrian Cooper


- Original Message -
From: "Phoeun Pha" [EMAIL PROTECTED]
Sent: Friday, March 16, 2001 9:06 PM


 Peter, you are aware this is the CF talk list, where programmers can be
 programmers.  I will groom myself when I am in the CF jobs talklist :)

Yes, but _most_ programmers on this list conduct themselves, their comments and
discussions as you would expect from a professional person.

Adrian Cooper.



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF rules!!!

2001-03-16 Thread ron

 Phoeun, are you aware that just about everybody who hires Cold 
 Fusion programmers is on this list? Programmers are a 
 surprisingly small community. We are all cultivating an image and 
 reputation here.
 
 Sorry to be such a bummer... your typical rant caught me in a bad mood...
 If you worked with me I'd be happy to play Quake, have some 
 drinks, or play paintball with you (whatever). But not on this list.

Kinda makes you wonder about the content on

   http://www.entelligence.com/how.html

doesn't it? ;)

-ron

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CF rules!!!

2001-03-16 Thread Larry C. Lyons

Alternatively you put the intial query into an application variable and
then run queries against that one. 

larry

Savan Thongvanh wrote:
 
 real world mode now, how realistic is querying your inventory for each user?
 RAM resources?
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF rules!!!

2001-03-16 Thread Jon Gage

Phoeun, since you've joined the list you have received numerous requests to
keep your posts CF oriented.  That's a hint, which you obviously haven't
picked up on.

Basically, STOP POSTING GARBAGE.

 -Original Message-
 From: Phoeun Pha [mailto:[EMAIL PROTECTED]]
 Sent: Friday, March 16, 2001 4:07 PM
 To: CF-Talk
 Subject: RE: CF rules!!!


 Peter, you are aware this is the CF talk list, where programmers can be
 programmers.  I will groom myself when I am in the CF jobs talklist :)



 -Original Message-
 From: Peter Theobald [mailto:[EMAIL PROTECTED]]
 Sent: Friday, March 16, 2001 2:30 PM
 To: CF-Talk
 Subject: Re: CF rules!!!


 Phoeun, are you aware that just about everybody who hires Cold Fusion
 programmers is on this list? Programmers are a surprisingly small
 community.
 We are all cultivating an image and reputation here.

 Sorry to be such a bummer... your typical rant caught me in a bad mood...
 If you worked with me I'd be happy to play Quake, have some
 drinks, or play
 paintball with you (whatever). But not on this list.

 At 12:19 PM 3/16/01 -0600, Phoeun Pha wrote:
 CF, in this case, means Caffeine!!!  I've been up all night writing code
 and
 today almost drove off a freeway going 75mph  ack!  i'm
 crazy!  but now
 I'm wide awake!!  hold up, my fingers are twitching!  ahh!!!
 
 anyhow, that CF thingy in houston wednesday night with ben Forta
 was cool.
 he had a pretty cool accent too.  I can't wait to start using CF 5, or
 NEO!!!  what do u guys think the best thing in CF 5 is?  For me, it's the
 user defined functions!
 
 


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CF rules!!!

2001-03-16 Thread Kevin Schmidt

Maybe he should try [EMAIL PROTECTED]
- Original Message -
From: "Adrian Cooper" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Friday, March 16, 2001 3:28 PM
Subject: Re: CF rules!!!



 - Original Message -
 From: "Phoeun Pha" [EMAIL PROTECTED]
 Sent: Friday, March 16, 2001 9:06 PM


  Peter, you are aware this is the CF talk list, where programmers can be
  programmers.  I will groom myself when I am in the CF jobs talklist :)

 Yes, but _most_ programmers on this list conduct themselves, their
comments and
 discussions as you would expect from a professional person.

 Adrian Cooper.




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF rules!!!

2001-03-16 Thread Phoeun Pha

As far as I know, i dont think my comment is derogative, or offensive.  It's
just plain silly, but with good intention, and i think some of you are anal
about it.  heck, i was just tyring to share my night of up all night
programming!  i am sure yall can relate!  :P  i was hoping to get some "yeah
i've been there" type of stuff

-Original Message-
From: Adrian Cooper [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 16, 2001 3:28 PM
To: CF-Talk
Subject: Re: CF rules!!!



- Original Message -
From: "Phoeun Pha" [EMAIL PROTECTED]
Sent: Friday, March 16, 2001 9:06 PM


 Peter, you are aware this is the CF talk list, where programmers can be
 programmers.  I will groom myself when I am in the CF jobs talklist :)

Yes, but _most_ programmers on this list conduct themselves, their comments
and
discussions as you would expect from a professional person.

Adrian Cooper.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF rules!!!

2001-03-16 Thread John Wilker

Wouldn't another use be to drill down through data. Along the similar line,
you could make one query at the beginning and then drill down through it as
needed and not have to keep making return trips to the DB.

Just thinking

J.


John Wilker
Web Applications Consultant
Allaire Certified ColdFusion Developer

Office: 909-943-8428
www.billtracker.org http://www.billtracker.org


-Original Message-
From: Larry C. Lyons [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 16, 2001 1:34 PM
To: CF-Talk
Subject: Re: CF rules!!!


Alternatively you put the intial query into an application variable and
then run queries against that one.

larry

Savan Thongvanh wrote:

 real world mode now, how realistic is querying your inventory for each
user?
 RAM resources?


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CF rules!!!

2001-03-16 Thread Adrian Cooper


- Original Message - 
From: "Kevin Schmidt" [EMAIL PROTECTED]
Sent: Friday, March 16, 2001 10:50 PM


 Maybe he should try [EMAIL PROTECTED]

LOL :-)

Adrian Cooper.



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF rules!!!

2001-03-16 Thread Phoeun Pha

hippocrits

-Original Message-
From: Kevin Schmidt [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 16, 2001 4:51 PM
To: CF-Talk
Subject: Re: CF rules!!!


Maybe he should try [EMAIL PROTECTED]
- Original Message -
From: "Adrian Cooper" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Friday, March 16, 2001 3:28 PM
Subject: Re: CF rules!!!



 - Original Message -
 From: "Phoeun Pha" [EMAIL PROTECTED]
 Sent: Friday, March 16, 2001 9:06 PM


  Peter, you are aware this is the CF talk list, where programmers can be
  programmers.  I will groom myself when I am in the CF jobs talklist :)

 Yes, but _most_ programmers on this list conduct themselves, their
comments and
 discussions as you would expect from a professional person.

 Adrian Cooper.




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CF rules!!!

2001-03-16 Thread Adrian Cooper


- Original Message -
From: "Phoeun Pha" [EMAIL PROTECTED]
Sent: Friday, March 16, 2001 9:46 PM


 As far as I know, i dont think my comment is derogative, or offensive.  It's
 just plain silly, but with good intention, and i think some of you are anal

Try off-topic, totally irrelevant and often pointed - like your infamous "Mel
haisch diska" post for example.

 about it.  heck, i was just tyring to share my night of up all night
 programming!  i am sure yall can relate!

I am sure most here can relate - but only you seem to have the need to tell
everyone about it.

I suggest you think about all these comments carefully before you post such
garbage again - that is if you want any hope at all of ever being taken remotely
seriously on this list, or as a CF programmer.

Adrian Cooper.



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CF rules!!!

2001-03-16 Thread Michael Dinowitz

No, the term is professional. Most of us are hackers in the most classical
sense but we're also professionals who know how to spell (or use a spell
checker) and how not to piss everyone off.
I'm going to ask this for the last time. Keep it technical and professional
on this list or 


 hippocrits

 -Original Message-
 From: Kevin Schmidt [mailto:[EMAIL PROTECTED]]
 Sent: Friday, March 16, 2001 4:51 PM
 To: CF-Talk
 Subject: Re: CF rules!!!


 Maybe he should try [EMAIL PROTECTED]
 - Original Message -
 From: "Adrian Cooper" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Friday, March 16, 2001 3:28 PM
 Subject: Re: CF rules!!!


 
  - Original Message -
  From: "Phoeun Pha" [EMAIL PROTECTED]
  Sent: Friday, March 16, 2001 9:06 PM
 
 
   Peter, you are aware this is the CF talk list, where programmers can
be
   programmers.  I will groom myself when I am in the CF jobs talklist :)
 
  Yes, but _most_ programmers on this list conduct themselves, their
 comments and
  discussions as you would expect from a professional person.
 
  Adrian Cooper.
 
 
 
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CF rules!!!

2001-03-16 Thread Jason Lotz

How in the world do you people complain about Phoeun and then send drivel
like this to the list?  Stop being hypocritical or just lighten up in the
first place.  I guarantee that the latter makes life a whole lot more
enjoyable.  In any case, at least be consistent.


- Original Message -
From: "Adrian Cooper" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Friday, March 16, 2001 3:04 PM
Subject: Re: CF rules!!!



 - Original Message -
 From: "Kevin Schmidt" [EMAIL PROTECTED]
 Sent: Friday, March 16, 2001 10:50 PM


  Maybe he should try [EMAIL PROTECTED]

 LOL :-)

 Adrian Cooper.





~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF rules!!!

2001-03-16 Thread Phoeun Pha

yeah, but what if data in the DB changed during that instance

-Original Message-
From: John Wilker [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 16, 2001 4:01 PM
To: CF-Talk
Subject: RE: CF rules!!!


Wouldn't another use be to drill down through data. Along the similar line,
you could make one query at the beginning and then drill down through it as
needed and not have to keep making return trips to the DB.

Just thinking

J.


John Wilker
Web Applications Consultant
Allaire Certified ColdFusion Developer

Office: 909-943-8428
www.billtracker.org http://www.billtracker.org


-Original Message-
From: Larry C. Lyons [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 16, 2001 1:34 PM
To: CF-Talk
Subject: Re: CF rules!!!


Alternatively you put the intial query into an application variable and
then run queries against that one.

larry

Savan Thongvanh wrote:

 real world mode now, how realistic is querying your inventory for each
user?
 RAM resources?


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CF rules!!! - Kill this thread

2001-03-16 Thread Jon Hall

and it hypocrites

jon
- Original Message -
From: "Phoeun Pha" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Friday, March 16, 2001 5:14 PM
Subject: RE: CF rules!!!


 hippocrits

 -Original Message-
 From: Kevin Schmidt [mailto:[EMAIL PROTECTED]]
 Sent: Friday, March 16, 2001 4:51 PM
 To: CF-Talk
 Subject: Re: CF rules!!!


 Maybe he should try [EMAIL PROTECTED]
 - Original Message -
 From: "Adrian Cooper" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Friday, March 16, 2001 3:28 PM
 Subject: Re: CF rules!!!


 
  - Original Message -
  From: "Phoeun Pha" [EMAIL PROTECTED]
  Sent: Friday, March 16, 2001 9:06 PM
 
 
   Peter, you are aware this is the CF talk list, where programmers can
be
   programmers.  I will groom myself when I am in the CF jobs talklist :)
 
  Yes, but _most_ programmers on this list conduct themselves, their
 comments and
  discussions as you would expect from a professional person.
 
  Adrian Cooper.
 
 
 
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CF rules!!!

2001-03-16 Thread Eric Dawson

it's too late for me! rats.


From: "Adrian Cooper" [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Subject: Re: CF rules!!!
Date: Fri, 16 Mar 2001 21:28:01 -


- Original Message -
From: "Phoeun Pha" [EMAIL PROTECTED]
Sent: Friday, March 16, 2001 9:06 PM


  Peter, you are aware this is the CF talk list, where programmers can be
  programmers.  I will groom myself when I am in the CF jobs talklist :)

Yes, but _most_ programmers on this list conduct themselves, their comments 
and
discussions as you would expect from a professional person.

Adrian Cooper.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF rules!!!

2001-03-16 Thread Eric Dawson

sorry for OT guys but ...

Hey Phoeun Pha,
almost drove off a freeway going 75mph
What kind of car were you driving?

You can reply, off list if you like ...

Eric

From: "Jon Gage" [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Subject: RE: CF rules!!!
Date: Fri, 16 Mar 2001 16:48:56 -0500

Phoeun, since you've joined the list you have received numerous requests to
keep your posts CF oriented.  That's a hint, which you obviously haven't
picked up on.

Basically, STOP POSTING GARBAGE.

  -Original Message-
  From: Phoeun Pha [mailto:[EMAIL PROTECTED]]
  Sent: Friday, March 16, 2001 4:07 PM
  To: CF-Talk
  Subject: RE: CF rules!!!
 
 
  Peter, you are aware this is the CF talk list, where programmers can be
  programmers.  I will groom myself when I am in the CF jobs talklist :)
 
 
 
  -Original Message-
  From: Peter Theobald [mailto:[EMAIL PROTECTED]]
  Sent: Friday, March 16, 2001 2:30 PM
  To: CF-Talk
  Subject: Re: CF rules!!!
 
 
  Phoeun, are you aware that just about everybody who hires Cold Fusion
  programmers is on this list? Programmers are a surprisingly small
  community.
  We are all cultivating an image and reputation here.
 
  Sorry to be such a bummer... your typical rant caught me in a bad mood...
  If you worked with me I'd be happy to play Quake, have some
  drinks, or play
  paintball with you (whatever). But not on this list. 
  At 12:19 PM 3/16/01 -0600, Phoeun Pha wrote:
  CF, in this case, means Caffeine!!!  I've been up all night writing code
  and
  today almost drove off a freeway going 75mph  ack!  i'm
  crazy!  but now
  I'm wide awake!!  hold up, my fingers are twitching!  ahh!!!
  
  anyhow, that CF thingy in houston wednesday night with ben Forta
  was cool.
  he had a pretty cool accent too.  I can't wait to start using CF 5, or
  NEO!!!  what do u guys think the best thing in CF 5 is?  For me, it's 
the
  user defined functions!
  
  
 
 
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF rules!!!

2001-03-16 Thread John Wilker

Good point. You probably wouldn't want to use that method for anything like
product availability or anything I suppose. Another use would be to populate
select boxes... Like what TwoSelectsRelated.cfm does, but without having to
get crazy creating arrays and such.

You could query all of the data from the first item and all of the data for
the second. Then when the first is selected query against that recordset to
populate the second... Eh, I don't know, guess we'll all have lots of
examples once we all play with it more :-)

J.

John Wilker
Web Applications Consultant
Allaire Certified ColdFusion Developer

Office: 909-943-8428
www.billtracker.org http://www.billtracker.org


-Original Message-
From: Phoeun Pha [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 16, 2001 2:29 PM
To: CF-Talk
Subject: RE: CF rules!!!


yeah, but what if data in the DB changed during that instance

-Original Message-
From: John Wilker [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 16, 2001 4:01 PM
To: CF-Talk
Subject: RE: CF rules!!!


Wouldn't another use be to drill down through data. Along the similar line,
you could make one query at the beginning and then drill down through it as
needed and not have to keep making return trips to the DB.

Just thinking

J.


John Wilker
Web Applications Consultant
Allaire Certified ColdFusion Developer

Office: 909-943-8428
www.billtracker.org http://www.billtracker.org


-Original Message-
From: Larry C. Lyons [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 16, 2001 1:34 PM
To: CF-Talk
Subject: Re: CF rules!!!


Alternatively you put the intial query into an application variable and
then run queries against that one.

larry

Savan Thongvanh wrote:

 real world mode now, how realistic is querying your inventory for each
user?
 RAM resources?


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CF rules!!!

2001-03-16 Thread Jason Lotz

I think what he was getting at is the fact that he gets ripped into for a OT
post but then has 40 people making fun of him in an equally unprofessional
way.  It's kind of hard to disagree, don't you think?


- Original Message -
From: "Michael Dinowitz" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Friday, March 16, 2001 3:32 PM
Subject: Re: CF rules!!!


 No, the term is professional. Most of us are hackers in the most classical
 sense but we're also professionals who know how to spell (or use a spell
 checker) and how not to piss everyone off.
 I'm going to ask this for the last time. Keep it technical and
professional
 on this list or 


  hippocrits
 
  -Original Message-
  From: Kevin Schmidt [mailto:[EMAIL PROTECTED]]
  Sent: Friday, March 16, 2001 4:51 PM
  To: CF-Talk
  Subject: Re: CF rules!!!
 
 
  Maybe he should try [EMAIL PROTECTED]
  - Original Message -
  From: "Adrian Cooper" [EMAIL PROTECTED]
  To: "CF-Talk" [EMAIL PROTECTED]
  Sent: Friday, March 16, 2001 3:28 PM
  Subject: Re: CF rules!!!
 
 
  
   - Original Message -
   From: "Phoeun Pha" [EMAIL PROTECTED]
   Sent: Friday, March 16, 2001 9:06 PM
  
  
Peter, you are aware this is the CF talk list, where programmers can
 be
programmers.  I will groom myself when I am in the CF jobs talklist
:)
  
   Yes, but _most_ programmers on this list conduct themselves, their
  comments and
   discussions as you would expect from a professional person.
  
   Adrian Cooper.
  
  
  
  
 


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CF rules!!!

2001-03-16 Thread Steve Aylor

cf-community ... yesterday!

Steve

- Original Message -
From: "Phoeun Pha" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Friday, March 16, 2001 1:46 PM
Subject: RE: CF rules!!!


 As far as I know, i dont think my comment is derogative, or offensive.
It's
 just plain silly, but with good intention, and i think some of you are
anal
 about it.  heck, i was just tyring to share my night of up all night
 programming!  i am sure yall can relate!  :P  i was hoping to get some
"yeah
 i've been there" type of stuff

 -Original Message-
 From: Adrian Cooper [mailto:[EMAIL PROTECTED]]
 Sent: Friday, March 16, 2001 3:28 PM
 To: CF-Talk
 Subject: Re: CF rules!!!



 - Original Message -
 From: "Phoeun Pha" [EMAIL PROTECTED]
 Sent: Friday, March 16, 2001 9:06 PM


  Peter, you are aware this is the CF talk list, where programmers can be
  programmers.  I will groom myself when I am in the CF jobs talklist :)

 Yes, but _most_ programmers on this list conduct themselves, their
comments
 and
 discussions as you would expect from a professional person.

 Adrian Cooper.

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF rules!!!

2001-03-16 Thread Terry Bader

then you wouldn't want to query a query

come on man,  you asked a question and ppl are giving examples of the
uses...

now quit being a bug...  
personally, i really hate putting ppl into my ignore list


Terry Bader
IT/Web Specialist
EDO Corp - Combat Systems
(757) 424-1004 ext 361 - Work
[EMAIL PROTECTED]   


(757)581-5981 - Mobile
[EMAIL PROTECTED]
icq: 5202487   aim: lv2bounce
http://www.cs.odu.edu/~bader






 -Original Message-
 From: Phoeun Pha [mailto:[EMAIL PROTECTED]]
 Sent: Friday, March 16, 2001 5:29 PM
 To: CF-Talk
 Subject: RE: CF rules!!!
 
 
 yeah, but what if data in the DB changed during that instance
 
 -Original Message-
 From: John Wilker [mailto:[EMAIL PROTECTED]]
 Sent: Friday, March 16, 2001 4:01 PM
 To: CF-Talk
 Subject: RE: CF rules!!!
 
 
 Wouldn't another use be to drill down through data. Along the 
 similar line,
 you could make one query at the beginning and then drill down 
 through it as
 needed and not have to keep making return trips to the DB.
 
 Just thinking
 
 J.
 
 
 John Wilker
 Web Applications Consultant
 Allaire Certified ColdFusion Developer
 
 Office: 909-943-8428
 www.billtracker.org http://www.billtracker.org
 
 
 -Original Message-
 From: Larry C. Lyons [mailto:[EMAIL PROTECTED]]
 Sent: Friday, March 16, 2001 1:34 PM
 To: CF-Talk
 Subject: Re: CF rules!!!
 
 
 Alternatively you put the intial query into an application 
 variable and
 then run queries against that one.
 
 larry
 
 Savan Thongvanh wrote:
 
  real world mode now, how realistic is querying your 
 inventory for each
 user?
  RAM resources?
 
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CF rules!!!

2001-03-16 Thread Adrian Cooper


- Original Message -
From: "Jason Lotz" [EMAIL PROTECTED]
Sent: Friday, March 16, 2001 10:34 PM


 How in the world do you people complain about Phoeun and then send drivel
 like this to the list?  Stop being hypocritical or just lighten up in the
 first place.  I guarantee that the latter makes life a whole lot more
 enjoyable.  In any case, at least be consistent.

My apologies.

But I think (hope) the serious point has been made now.

This is a professional list for professional people, and should be conducted
that way.

Adrian Cooper.





~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF rules!!!

2001-03-16 Thread Phoeun Pha

[EMAIL PROTECTED]??

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 16, 2001 4:32 PM
To: CF-Talk
Subject: Re: CF rules!!!


No, the term is professional. Most of us are hackers in the most classical
sense but we're also professionals who know how to spell (or use a spell
checker) and how not to piss everyone off.
I'm going to ask this for the last time. Keep it technical and professional
on this list or 


 hippocrits

 -Original Message-
 From: Kevin Schmidt [mailto:[EMAIL PROTECTED]]
 Sent: Friday, March 16, 2001 4:51 PM
 To: CF-Talk
 Subject: Re: CF rules!!!


 Maybe he should try [EMAIL PROTECTED]
 - Original Message -
 From: "Adrian Cooper" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Friday, March 16, 2001 3:28 PM
 Subject: Re: CF rules!!!


 
  - Original Message -
  From: "Phoeun Pha" [EMAIL PROTECTED]
  Sent: Friday, March 16, 2001 9:06 PM
 
 
   Peter, you are aware this is the CF talk list, where programmers can
be
   programmers.  I will groom myself when I am in the CF jobs talklist :)
 
  Yes, but _most_ programmers on this list conduct themselves, their
 comments and
  discussions as you would expect from a professional person.
 
  Adrian Cooper.
 
 
 
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Query a query (was CF RULES)... Garbage

2001-03-16 Thread Scott Cavanaugh

For the people actually talking about CF on this thread can we change the
name... I am sick of reading the garbage.

Scott Cavanaugh
Software Developer
Online Operations
Salem Communications Corporation


-Original Message-
From: Adrian Cooper [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 16, 2001 3:34 PM
To: CF-Talk
Subject: Re: CF rules!!!



- Original Message -
From: "Jason Lotz" [EMAIL PROTECTED]
Sent: Friday, March 16, 2001 10:34 PM


 How in the world do you people complain about Phoeun and then send drivel
 like this to the list?  Stop being hypocritical or just lighten up in the
 first place.  I guarantee that the latter makes life a whole lot more
 enjoyable.  In any case, at least be consistent.

My apologies.

But I think (hope) the serious point has been made now.

This is a professional list for professional people, and should be conducted
that way.

Adrian Cooper.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF rules!!!

2001-03-16 Thread Jay Jennings

Sheesh! He didn't do anything all that horrible. Nothing that getting
through puberty won't fix. :)

Stop picking on the kid. And loosen your tie.

 jay

 - - - - -
Get your free email account: [EMAIL PROTECTED]
Sign up at http://www.alakazam.com



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF rules-move to CF Community List??

2001-03-16 Thread Angel Stewart

Actually Phoen...I'm quite the tolerant individual..but I do believe your
comments and personality would fit a lot better with the CF-Community list.

You should try joining that..its for all the off topic posts and banter
between the CF Programmers, most of whom are also on this list..

I mean...if you think about it reasonably..the fact that there IS a
CF-Community list, means that the list creators saw the need for the
community to give little rants..joke around etc...so they made a list for
that. Which tends to lead one to think that the CF-Talk list would be for
more on topic, 'serious' programming questions etc. etc.

You can subscribe to the CF Community list over at houseoffusion I'm sure.

-Gel
www.carigamer.com


-Original Message-
From: Phoeun Pha [mailto:[EMAIL PROTECTED]]

Peter, you are aware this is the CF talk list, where programmers can be
programmers.  I will groom myself when I am in the CF jobs talklist :)



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists