Re: cfscript for cfsetting

2010-01-27 Thread Scott Brady

Which would be odd, since I believe the claim for CF9 was that you can
theoretically do everything in cfscript (though writing queries blows
in it, you can still do it).

Scott

On Tue, Jan 26, 2010 at 1:17 PM, Jason Durham jdur...@cti-stl.com wrote:

 That link is for the CFML equivalents in CFScript.  If it's not there... 
 there is no equivalent. :)


-- 
-
Scott Brady
http://www.scottbrady.net

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330173
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cfscript for cfsetting

2010-01-27 Thread Raymond Camden

That's the rub theoretically everything ;) Hopefully it will
continue to grow until it hits 100%.

On Wed, Jan 27, 2010 at 5:24 AM, Scott Brady dsbr...@gmail.com wrote:

 Which would be odd, since I believe the claim for CF9 was that you can
 theoretically do everything in cfscript (though writing queries blows
 in it, you can still do it).

 Scott


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330176
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


cfscript for cfsetting

2010-01-26 Thread Carol F

I am learning to program using cfscript instead of cf tags.

What is the CFSCRIPT equivalent for the CFSETTING tag?

Does anybody know if the CF9 Live Docs are going to updated with the new
CFSCRIPT equivalents?

Thanks!


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330142
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfscript for cfsetting

2010-01-26 Thread Matt Quackenbush

The CF9 docs have had this ever since CF9 was released.

http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSe9cbe5cf462523a02805926a1237efcbfd5-7fff.html


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330143
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfscript for cfsetting

2010-01-26 Thread Carol F

sorry, I saw that page before, but I could not find cfsetting, or is it
somewhere buried there?

On Tue, Jan 26, 2010 at 10:23 AM, Matt Quackenbush quackfu...@gmail.comwrote:


 The CF9 docs have had this ever since CF9 was released.


 http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSe9cbe5cf462523a02805926a1237efcbfd5-7fff.html


 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330150
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: cfscript for cfsetting

2010-01-26 Thread Jason Durham

That link is for the CFML equivalents in CFScript.  If it's not there... there 
is no equivalent. :)

-Original Message-
From: Carol F [mailto:cfcn...@gmail.com]
Sent: Tuesday, January 26, 2010 2:04 PM
To: cf-talk
Subject: Re: cfscript for cfsetting


sorry, I saw that page before, but I could not find cfsetting, or is it
somewhere buried there?

On Tue, Jan 26, 2010 at 10:23 AM, Matt Quackenbush quackfu...@gmail.comwrote:


 The CF9 docs have had this ever since CF9 was released.


 http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSe9cbe5cf462523a02805926a1237efcbfd5-7fff.html






~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330153
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfscript for cfsetting

2010-01-26 Thread Gerald Guido

I would try doing a cfdump and see what that gets you

cfdump var=#setting()#

Next I would try to guess the order of the arguments if it does exist
or
You can write your own function for it using something like so and inject it
into your CFC or include it as a UDF. I would imagine that this would work.


cffunction name=mysetting output=false returntype=void

cfargument name=attributecollection required=false type=struct
default=#structnew()# 
cfargument name=enablecfoutputonly required=false type=string
default=false 
cfargument name=requesttimeout required=false default=60
cfargument name=showdebugoutput required=false default=false 

 cfsetting attributecollection=#arguments.attributecollection#
 enablecfoutputonly=#arguments.enablecfoutputonly# setting
requesttimeout=#arguments.requesttimeout#
showdebugoutput=#arguments.showdebugoutput#

/cffunction

And call it like so
mysetting();


HTH

G!

On Tue, Jan 26, 2010 at 3:03 PM, Carol F cfcn...@gmail.com wrote:


 sorry, I saw that page before, but I could not find cfsetting, or is it
 somewhere buried there?

 On Tue, Jan 26, 2010 at 10:23 AM, Matt Quackenbush quackfu...@gmail.com
 wrote:

 
  The CF9 docs have had this ever since CF9 was released.
 
 
 
 http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSe9cbe5cf462523a02805926a1237efcbfd5-7fff.html
 
 
 

 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330154
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfscript for cfsetting

2010-01-26 Thread Carol F

Ok thanks everyone!

On Tue, Jan 26, 2010 at 12:17 PM, Jason Durham jdur...@cti-stl.com wrote:


 That link is for the CFML equivalents in CFScript.  If it's not there...
 there is no equivalent. :)

 -Original Message-
 From: Carol F [mailto:cfcn...@gmail.com]
 Sent: Tuesday, January 26, 2010 2:04 PM
 To: cf-talk
 Subject: Re: cfscript for cfsetting


 sorry, I saw that page before, but I could not find cfsetting, or is it
 somewhere buried there?

 On Tue, Jan 26, 2010 at 10:23 AM, Matt Quackenbush quackfu...@gmail.com
 wrote:

 
  The CF9 docs have had this ever since CF9 was released.
 
 
 
 http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSe9cbe5cf462523a02805926a1237efcbfd5-7fff.html
 
 
 



 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330160
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4