Error creating dir with period/full stop in CF8 and IIS

2007-09-10 Thread Adrian Lynch
Hey all, got a bit of a weird one here.

Running the following, CF8 on Win2K Server with IIS.

Creating a new dir with a period/full stop and an index.cfm file causes a
403 when accessing the file.

Running  the following will highlight this:












New folder


Just run it at home on CF7 with Apache and CF8 on the built in CF server on
Win XP Pro and it works.

Any ideas about why this won't work? Is it an IIS problem maybe? I'm stumped
and I'm still searching the google machine!

Adrian


~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

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


RE: "Dynamic" CSS

2007-09-10 Thread Bobby Hartsfield
I just use a .cfm as my dynamic stylesheets and use  at the top. Then you just call it the same
way you would a normal .css



You can use all the CF you want in it now. It will be up to you to decide
what is global and 'static' though for performance sake.

I would have a main.css that has all the style info that is global and
static then use the .cfm method only for those dynamic needs and use a
separate  when that dynamic info is needed If it is just a couple
classes/IDs then I would just put them all in a static style and use CF to
decide which class to call.


  

  




..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com

-Original Message-
From: Bruce Sorge [mailto:[EMAIL PROTECTED] 
Sent: Monday, September 10, 2007 1:00 PM
To: CF-Talk
Subject: "Dynamic" CSS

Good morning everyone.
I have a question. I am working on our school's websites and rather than
have 12 different style sheets, I would like to have one style sheet that
has three classes where the background-color attribute is dynamic. So how
would I go about doing this? Now I can create a css.cfm page and load the
colors into the database, making sure that the proper school ID is
associated with their respective colors, but I thought that I might be able
to use the .css page instead.


Thanks,

--
Bruce




~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

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


Re: charting solution for using with CF

2007-09-10 Thread Paul Hastings
Jim Wright wrote:
> A warning for anyone that might want to try the code I sent earlier.
> I noticed after sending it that all charts produced with cfchart on
> that server now had the "Developer Edition" watermark.  Restarting CF
> clears it up, but as soon as I run the code that connects directly to
> the webcharts class, it starts again.

you'll need to buy a license from them.

a million years ago i used a free version of kavacharts from ve.com to do 
"speedos" of air pollution data for thailand's EPA. not sure if they still have 
a free version but those things were a breeze to work with even though we had 
to 
dodge the occasional woolly mammoth back then ;-)

~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

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


Re: charting solution for using with CF

2007-09-10 Thread Jim Wright
A warning for anyone that might want to try the code I sent earlier.
I noticed after sending it that all charts produced with cfchart on
that server now had the "Developer Edition" watermark.  Restarting CF
clears it up, but as soon as I run the code that connects directly to
the webcharts class, it starts again.

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

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


RE: "Dynamic" CSS

2007-09-10 Thread Bruce Sorge
Well this is all good stuff guys. Thanks. This gives me some things to try
out.

Bruce

-Original Message-
From: Jim Davis 
Sent: Monday, September 10, 2007 7:07 PM
To: CF-Talk
Subject: RE: "Dynamic" CSS


If you're comfortable with client-script you can easily apply the color
overrides that Dan was talking about client-side.

You can store and manage them in one place however you like (and array,
object, etc) - a default scheme would be applied first and then the script
could apply any custom scheme.  Not running the script would affect the
visual presentation but not the content so the few that don't run script
wouldn't be adversely affected.

I've not tried it but I think you could probably put everything in the same
file - a CSS set and JS functions and load the same file via 

RE: "Dynamic" CSS

2007-09-10 Thread Jim Davis
> -Original Message-
> From: Andy Matthews [mailto:[EMAIL PROTECTED]
> Sent: Monday, September 10, 2007 3:08 PM
> To: CF-Talk
> Subject: RE: "Dynamic" CSS
> 
> Better to ask CF to render multiple files than have to manage multiple
> versions of each file. Think how it might look if they had 5 color
> files
> Dan. They'd have to manage each style in SIX files.

If you're comfortable with client-script you can easily apply the color
overrides that Dan was talking about client-side.

You can store and manage them in one place however you like (and array,
object, etc) - a default scheme would be applied first and then the script
could apply any custom scheme.  Not running the script would affect the
visual presentation but not the content so the few that don't run script
wouldn't be adversely affected.

I've not tried it but I think you could probably put everything in the same
file - a CSS set and JS functions and load the same file via 

Re: Error Casting an Object

2007-09-10 Thread Matt Blatchley
Figured it out. Duh

I must have copied the cfquery line from some other part of the application 
because there was a cachedwithin="" on an insert :) and as soon as I removed 
it, everything worked fine.  

Sometimes a new pair of eyes helps :)

Matt





~|
Check out the new features and enhancements in the
latest product release - download the "What's New PDF" now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

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


RE: "Dynamic" CSS

2007-09-10 Thread Eric Roberts
You could also put the style block in the application.cfm and then use
variables for the colors.

Eric
-Original Message-
From: Bruce Sorge [mailto:[EMAIL PROTECTED] 
Sent: Monday, September 10, 2007 12:00 PM
To: CF-Talk
Subject: "Dynamic" CSS

Good morning everyone.
I have a question. I am working on our school's websites and rather than
have 12 different style sheets, I would like to have one style sheet that
has three classes where the background-color attribute is dynamic. So how
would I go about doing this? Now I can create a css.cfm page and load the
colors into the database, making sure that the proper school ID is
associated with their respective colors, but I thought that I might be able
to use the .css page instead.


Thanks,

-- 
Bruce




~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us

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


Error Casting an Object.

2007-09-10 Thread Matt Blatchley
I've been trying for quite some time now to figure out why I'm getting this 
error:

Error casting an object of type to an incompatible type. This usually indicates 
a programming error in Java, although it could also mean you have tried to use 
a foreign object in a different way than it was designed.

I've seen it on a number of other forums including Ben Nadel's.  I've tried the 
JavaCast function but it doesn't seem to help :(

Here's a sample:
   
   



 

 

   
   #Insert_Value1#

Based upon some dynamically generated form fields, this actually displays the 
value as text when I dump it to the screen, but when I try to insert the value 
it into the database four lines below this code, I get the above generated 
error...  any thoughts?

Matt
 



~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

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


Re: Odd database behavior: duplicate key error

2007-09-10 Thread Josh Nathanson
Thanks Jake and Barney, I'll lock it and see if that helps.

-- Josh

- Original Message - 
From: "Jake Pilgrim" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Monday, September 10, 2007 2:50 PM
Subject: Re: Odd database behavior: duplicate key error


> If this is true - wrap the code in a named lock:
>
> 
>  your SQL here
> 
>
> A named lock ensures that only one thread at a time will be allowed to run 
> the code within the cflock tag. CFTransaction will not give you this same 
> level of isolation.
>
> Jake Pilgrim
>
>>You probably have a race condition, where two people execute the code
>>at the "same time", and the order goes like this:
>>
>>A - delete
>>B - delete
>>A - insert
>>B - insert
>>
>>In this case, you'd expect the fourth statement (the second insert) to
>>throw the dupe key exception.
>>
>>cheers,
>>barneyb
>>
>>
>>
>>-- 
>>Barney Boisvert
>>[EMAIL PROTECTED]
>>http://www.barneyb.com/
>>
>>Got Gmail? I have 100 invites.
>
> 

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

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


Re: Odd database behavior: duplicate key error

2007-09-10 Thread Jake Pilgrim
If this is true - wrap the code in a named lock:


 your SQL here


A named lock ensures that only one thread at a time will be allowed to run the 
code within the cflock tag. CFTransaction will not give you this same level of 
isolation. 

Jake Pilgrim 

>You probably have a race condition, where two people execute the code
>at the "same time", and the order goes like this:
>
>A - delete
>B - delete
>A - insert
>B - insert
>
>In this case, you'd expect the fourth statement (the second insert) to
>throw the dupe key exception.
>
>cheers,
>barneyb
>
>
>
>-- 
>Barney Boisvert
>[EMAIL PROTECTED]
>http://www.barneyb.com/
>
>Got Gmail? I have 100 invites. 

~|
Check out the new features and enhancements in the
latest product release - download the "What's New PDF" now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

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


Re: Odd database behavior: duplicate key error

2007-09-10 Thread Barney Boisvert
You probably have a race condition, where two people execute the code
at the "same time", and the order goes like this:

A - delete
B - delete
A - insert
B - insert

In this case, you'd expect the fourth statement (the second insert) to
throw the dupe key exception.

cheers,
barneyb

On 9/10/07, Josh Nathanson <[EMAIL PROTECTED]> wrote:
> Hey all,
>
> In an inherited application, we have the following pseudo-code - two
> queries, one right after the other:
>
> 
> DELETE FROM table
> WHERE ID = '#myidstring#'
> 
>
> 
> INSERT INTO table
> (ID)
> VALUES
> ('#myidstring#')
> 
>
> Given this scenario, it would seem that you could never have a duplicate key
> error, since you are deleting any rows with the string in question, before
> trying to do an insert.  However, occasionally this throws a "duplicate key"
> error.
>
> Is it possible that somehow the insert occasionally runs before the delete?
> Do I need to use cftransaction to ensure the proper order of execution here?
>

-- 
Barney Boisvert
[EMAIL PROTECTED]
http://www.barneyb.com/

Got Gmail? I have 100 invites.

~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us

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


Odd database behavior: duplicate key error

2007-09-10 Thread Josh Nathanson
Hey all,

In an inherited application, we have the following pseudo-code - two 
queries, one right after the other:


DELETE FROM table
WHERE ID = '#myidstring#'



INSERT INTO table
(ID)
VALUES
('#myidstring#')


Given this scenario, it would seem that you could never have a duplicate key 
error, since you are deleting any rows with the string in question, before 
trying to do an insert.  However, occasionally this throws a "duplicate key" 
error.

Is it possible that somehow the insert occasionally runs before the delete? 
Do I need to use cftransaction to ensure the proper order of execution here?



~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

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


RE: "Dynamic" CSS

2007-09-10 Thread Andy Matthews
Better to ask CF to render multiple files than have to manage multiple
versions of each file. Think how it might look if they had 5 color files
Dan. They'd have to manage each style in SIX files. 

-Original Message-
From: Dan G. Switzer, II [mailto:[EMAIL PROTECTED] 
Sent: Monday, September 10, 2007 1:50 PM
To: CF-Talk
Subject: RE: "Dynamic" CSS

Bruce,

>I have a question. I am working on our school's websites and rather 
>than have 12 different style sheets, I would like to have one style 
>sheet that has three classes where the background-color attribute is 
>dynamic. So how would I go about doing this? Now I can create a css.cfm 
>page and load the colors into the database, making sure that the proper 
>school ID is associated with their respective colors, but I thought 
>that I might be able to use the .css page instead.

Among the many other options, another method that would not involve using
CFML to generate the CSS is this:

* Create a base CSS which has all the CSS rules you want in it.
* For each set of color variations, create a new CSS file. In this you'll
want to place CSS rules to just overwrite the colors you need overwritten.
* Load the base CSS file first
* Then right after, load the correct CSS file that overwrites the colors for
that style.

Using this method all the core CSS rules (that set position, font styling,
etc) are in one place. The additional CSS files you contain would just
contain rules to overwrite the colors.

For example:
 default.css 
h1 {
margin: 0px;
font: Arial;
border-bottom: 1px solid #cc;
}

--- style_red.css ---
h1 {
border-color: #ff;
}

--- style_green.css ---
h1 {
border-color: #00ff00;
}

--- style_blue.css ---
h1 {
border-color: #ff;
}

Now if you load the CSS files like:

--- Example 1 ---



Grey Border

--- Example 2 ---

  

Red Border

Depending on which "style_*.css" file you load, you can change just the key
aspects of the CSS to support style.

The nice thing about this method is you don't have to push another file
through the CFML engine. If you push CSS files through the CFML engine, that
means for every page request a browser is going to need at least 2 CF
threads.

You could create a script to generate static versions of the style_*.css
files if you wanted to generate those files automatically based upon data in
the database.

-Dan




~|
Check out the new features and enhancements in the
latest product release - download the "What's New PDF" now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

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


Re: RSS Feed

2007-09-10 Thread Wil Genovese
Try this place.

I use it all the type to validate my RSS.

http://feedvalidator.org


-- 
Wil Genovese

One man with courage makes a majority.
-Andrew Jackson

A fine is a tax for doing wrong. A tax is a fine for doing well. 



C Broan wrote:
> Thanks to everyone how replied to this thread.  I appreciate the advice.
>
>   One last question:
>
>   Where can I find information about how to format the RSS XML file?
>
>   Thanks again.
>
>   CWB
>
>
>
> -
> Pinpoint customers who are looking for what you sell. 
>
> 

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

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


Re: Replacing the CFDJ awards.... ?

2007-09-10 Thread Mary Jo Sminkey
>Regardless of the value of such awards (and no offense to any
>recipients or nominees) such a popularity contest is always useful in
>one way or another.

And that's my issue with itall it was was a popularity contest. Nominees 
would win on name recognition alone, had nothing whatsoever to do with the 
quality of the actual product/service. A product that has 1000 users of which 
only 500 actually think it's good enough to vote for would win over a product 
that has 100 users of which 99 think it's the greatest. The first would win 
handily...but which of these would you prefer to use? ;-) 

So hopefully if anyone does come up with such community award again, it will 
not be based strictly on a number of votes system...but an actual ranking of 
the product/service. 

--- Mary Jo


~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

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


Re: RSS Feed

2007-09-10 Thread C Broan
Thanks to everyone how replied to this thread.  I appreciate the advice.
   
  One last question:
   
  Where can I find information about how to format the RSS XML file?
   
  Thanks again.
   
  CWB


   
-
Pinpoint customers who are looking for what you sell. 

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

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


Adobe MAX and training survey, CFUNITED Express Chicago

2007-09-10 Thread Michael Smith
In this issue of ColdFusion conference and training news:

1. CFUNITED News - MAX and training survey
2. DC area Class news - Management Seminar "How to Build Websites Right, 
the First Time"

Happy coding
- Michael Smith,
   TeraTech, Inc  http://www.teratech.com/
   "Creating excellent custom software since 1989"


1. CF_Underground conference News
*
* Who is going to MAX and what training do you prefer?
Take our MAX and training survey at
http://www.cfunited.com/go/survey/

One lucky winner will be chosen at random to receive a
ticket to a TeraTech event of your choice
(including CFUNITED-08) a $1000 value

* The CFUNITED/Express Chicago (aka CF_Underground)
http://cfunitedexpress.com/go/chicago/2007/
   is 24 days away in Chicago IL 9/30/07 before MAX

   Attendees will receive a CF_beer mug at the event
   and other goodies


2. Training news

Class schedule:

ColdFusion201   Sep 11, 2007
FuseBox101  Sep 18, 2007
Fusebox103  Sep 25, 2007
Fusebox201  Oct 02, 2007
Intro to Flex 2 Oct 16, 2007
CFAdmin210  Oct 23, 2007
ColdFusion101   Nov 13, 2007
ColdFusion102   Nov 27, 2007
ColdFusion201   Dec 11, 2007
FuseBox101  Dec 18, 2007

More info and registration at
http://www.teratech.com/go/training/




*
CFUnited Express Chicago (aka CF_Underground)
http://cfunitedexpress.com/go/chicago/2007/

Date: September 30th 2007
Location: Ascend Facility Chicago

Cost: $199  (and get a $50 discount code from
your local user group manager)

Plus, If you register for CFUnited Express Chicago
you can use 50% of your registration cost towards
CFUnited 2008

This pre- Adobe MAX ColdFusion full day event is a taste of CFUnited.

Speakers: Raymond Camden, Michael Smith,
Charlie Arehart, Shlomy Gantz, Adam Howitt, and John Farrar.

* Charlie Arehart
* Raymond Camden
* Adam Howitt
* Shlomy Gantz
* Michael Smith
* John Farrar




-- 
Michael Smith, TeraTech Inc - Tools for Programmers(tm)
TeraTech voted Best Consulting Service by CFDJ readers!
CF/ASP Web, VB, Math, Access programming tools and consulting

405 E Gude Dr Ste 207, Rockville MD 20850 USA
Please check out http://www.teratech.com/ - email 
mailto:[EMAIL PROTECTED],
or call us for more information; in the USA at 1-800-447-9120,
+1-301-424-3903 International, Fax 301-762-8185  Thanks!






~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

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


RE: "Dynamic" CSS

2007-09-10 Thread Dan G. Switzer, II
Bruce,

>I have a question. I am working on our school's websites and rather than
>have 12 different style sheets, I would like to have one style sheet that
>has three classes where the background-color attribute is dynamic. So how
>would I go about doing this? Now I can create a css.cfm page and load the
>colors into the database, making sure that the proper school ID is
>associated with their respective colors, but I thought that I might be able
>to use the .css page instead.

Among the many other options, another method that would not involve using
CFML to generate the CSS is this:

* Create a base CSS which has all the CSS rules you want in it.
* For each set of color variations, create a new CSS file. In this you'll
want to place CSS rules to just overwrite the colors you need overwritten.
* Load the base CSS file first
* Then right after, load the correct CSS file that overwrites the colors for
that style.

Using this method all the core CSS rules (that set position, font styling,
etc) are in one place. The additional CSS files you contain would just
contain rules to overwrite the colors.

For example:
 default.css 
h1 {
margin: 0px;
font: Arial;
border-bottom: 1px solid #cc;
}

--- style_red.css ---
h1 {
border-color: #ff;
}

--- style_green.css ---
h1 {
border-color: #00ff00;
}

--- style_blue.css ---
h1 {
border-color: #ff;
}

Now if you load the CSS files like:

--- Example 1 ---



Grey Border

--- Example 2 ---





Red Border

Depending on which "style_*.css" file you load, you can change just the key
aspects of the CSS to support style.

The nice thing about this method is you don't have to push another file
through the CFML engine. If you push CSS files through the CFML engine, that
means for every page request a browser is going to need at least 2 CF
threads.

You could create a script to generate static versions of the style_*.css
files if you wanted to generate those files automatically based upon data in
the database.

-Dan


~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

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


Re: Replacing the CFDJ awards.... ?

2007-09-10 Thread todd sharp
>Am I missing something here?  Was there an announcement about CFDJ going
>away?
>
>Nothing on the cfdj main page.
>
>Steve

That's Steve, always late ;) 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

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


RE: Replacing the CFDJ awards.... ?

2007-09-10 Thread Michael E. Carluen
LOL, Steve.  That is probably why I never liked reading CFDJ, or any SysCon
published material for that matter. You could never "see" what you are
looking for even if its right in front of you.  A minute on any of their
site sends me running for some aspirin.




> -Original Message-
> From: DURETTE, STEVEN J (ATTASIAIT) [mailto:[EMAIL PROTECTED]
> Sent: Monday, September 10, 2007 10:41 AM
> To: CF-Talk
> Subject: RE: Replacing the CFDJ awards ?
> 
> Am I missing something here?  Was there an announcement about CFDJ going
> away?
> 
> Nothing on the cfdj main page.
> 
> Steve
> 
> 
> -Original Message-
> From: James Holmes [mailto:[EMAIL PROTECTED]
> Sent: Monday, September 10, 2007 11:47 AM
> To: CF-Talk
> Subject: Re: Replacing the CFDJ awards ?
> 
> How about a community driven award, for and by the community?
> 
> On 9/10/07, John Paul Ashenfelter <[EMAIL PROTECTED]>
> wrote:
> > Folks,
> >
> > While I'm certainly neither surprised or upset by the demise of CFDJ,
> > I always did get a lot of vicarious pleasure out of the yearly CFDJ
> > awards. Regardless of the value of such awards (and no offense to any
> > recipients or nominees) such a popularity contest is always useful in
> > one way or another.
> >
> > So who's stepping up to take over? :)
> >
> > Not me ;)
> >
> > --
> > John Paul Ashenfelter
> > CTO/Transitionpoint
> > (blog) http://www.ashenfelter.com
> > (email) [EMAIL PROTECTED]
> >
> >
> 
> 
> 
> 

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

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


Re: Replacing the CFDJ awards.... ?

2007-09-10 Thread Kris Jones
Scroll down a bit.

> Am I missing something here?  Was there an announcement about CFDJ going
> away?
>
> Nothing on the cfdj main page.

~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

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


Re: Replacing the CFDJ awards.... ?

2007-09-10 Thread Michael Dinowitz
We broke the news Saturday night and its been picked up on and reported
across the CF blogs:

http://www.blogoffusion.com/index.cfm/2007/9/8/syscon-drops-coldfusion-for-silverlight
http://www.fusionauthority.com/news/4705-sys-con-drops-coldfusion-for-silverlight.htm

http://www.forta.com/blog/index.cfm/2007/9/10/So-Long-CFDJ-Goodbye-And-Good-Riddance
http://corfield.org/blog/index.cfm/do/blog.entry/entry/Hurrah_CFDJ_is_dead
http://www.coldfusionjedi.com/index.cfm/2007/9/9/SysCon-announces-end-of-CFDJ
http://www.horwith.com/index.cfm/2007/9/9/cfdj-ends-and-a-surprise-tomorrow

http://blog.olivermerk.ca/index.cfm/2007/9/9/RIP-ColdFusion-Developers-Journal
http://blog.strikefish.com/blog/index.cfm/2007/9/9/Ba-BYe-CFDJ
http://mattwoodward.com/blog/index.cfm?event=showEntry&entryId=EB7E2E94-A490-7C40-A55F0387D40F7483
http://mattwoodward.com/blog/index.cfm?event=showEntry&entryId=EB9CBF06-DE3E-90CA-E05ADB68D95C4BC4
http://www.remotesynthesis.com/blog/index.cfm/2007/9/9/CFDJ-becomes-SLDJ--Good-for-CF-Bad-for-Silverlight
http://www.brianmeloche.com/blog/index.cfm/2007/9/9/Mixed-Feelings-on-the-End-of-CFDJ
http://www.coldfusionjedi.com/index.cfm/2007/9/9/SysCon-announces-end-of-CFDJ
http://www.phusor.com/index.cfm/2007/9/9/Show-Your-Support-for-the-ColdFusion-Community
http://rip747.wordpress.com/2007/09/09/hell-has-frozen-over-cfdj-is-dead/
http://andyjarrett.co.uk/andy/blog/index.cfm/2007/9/10/Pic-of-the-day-found-on-syscon
http://blog.strikefish.com/blog/index.cfm/2007/9/9/Ba-BYe-CFDJ
http://andyjarrett.co.uk/andy/blog/index.cfm/2007/9/10/Is-CFDJ-being-dead-a-good-thing
http://www.usefulconcept.com/index.cfm/2007/9/10/Reminder-to-Remove-CFDJ-from-your-Resources
http://www.dkferguson.com/BlogCFC/index.cfm/2007/9/10/CFDJ-out-SLDJ-in


On 9/10/07, DURETTE, STEVEN J (ATTASIAIT) <[EMAIL PROTECTED]> wrote:
>
> Am I missing something here?  Was there an announcement about CFDJ going
> away?
>
> Nothing on the cfdj main page.
>
> Steve
>
>
> -Original Message-
> From: James Holmes [mailto:[EMAIL PROTECTED]
> Sent: Monday, September 10, 2007 11:47 AM
> To: CF-Talk
> Subject: Re: Replacing the CFDJ awards ?
>
> How about a community driven award, for and by the community?
>
> On 9/10/07, John Paul Ashenfelter <[EMAIL PROTECTED]>
> wrote:
> > Folks,
> >
> > While I'm certainly neither surprised or upset by the demise of CFDJ,
> > I always did get a lot of vicarious pleasure out of the yearly CFDJ
> > awards. Regardless of the value of such awards (and no offense to any
> > recipients or nominees) such a popularity contest is always useful in
> > one way or another.
> >
> > So who's stepping up to take over? :)
> >
> > Not me ;)
> >
> > --
> > John Paul Ashenfelter
> > CTO/Transitionpoint
> > (blog) http://www.ashenfelter.com
> > (email) [EMAIL PROTECTED]
> >
> >
>
>
>
> 

~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

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


Re: "Dynamic" CSS

2007-09-10 Thread Ben Doom
I can think of several different ways to handle this.

1)  Process .css files.  Bad plan -- it eats resources processing what 
should be static files.

B)  Put the static classes in one file, and the changing ones in css 
files that are dynamically linked.

Three)  Put the static classes in one file, and link to a second file 
that's a cfm page.  The CSS files don't have to be named *.css, remember.

HTH.

--BenD

Bruce Sorge wrote:
> Good morning everyone.
> I have a question. I am working on our school's websites and rather than
> have 12 different style sheets, I would like to have one style sheet that
> has three classes where the background-color attribute is dynamic. So how
> would I go about doing this? Now I can create a css.cfm page and load the
> colors into the database, making sure that the proper school ID is
> associated with their respective colors, but I thought that I might be able
> to use the .css page instead.
> 
> 
> Thanks,
> 


~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

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


RE: Replacing the CFDJ awards.... ?

2007-09-10 Thread DURETTE, STEVEN J (ATTASIAIT)
Am I missing something here?  Was there an announcement about CFDJ going
away?

Nothing on the cfdj main page.

Steve
 

-Original Message-
From: James Holmes [mailto:[EMAIL PROTECTED] 
Sent: Monday, September 10, 2007 11:47 AM
To: CF-Talk
Subject: Re: Replacing the CFDJ awards ?

How about a community driven award, for and by the community?

On 9/10/07, John Paul Ashenfelter <[EMAIL PROTECTED]>
wrote:
> Folks,
>
> While I'm certainly neither surprised or upset by the demise of CFDJ,
> I always did get a lot of vicarious pleasure out of the yearly CFDJ
> awards. Regardless of the value of such awards (and no offense to any
> recipients or nominees) such a popularity contest is always useful in
> one way or another.
>
> So who's stepping up to take over? :)
>
> Not me ;)
>
> --
> John Paul Ashenfelter
> CTO/Transitionpoint
> (blog) http://www.ashenfelter.com
> (email) [EMAIL PROTECTED]
>
> 



~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

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


RE: "Dynamic" CSS

2007-09-10 Thread Andy Matthews
Just link to a css page like so:

 

Works a treat.

-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED] 
Sent: Monday, September 10, 2007 12:09 PM
To: CF-Talk
Subject: Re: "Dynamic" CSS

You could pass .css files through the CF interpreter, but then you'd lose
the benefits of static files (caching, direct serving, etc.).
The easiest solution (and the one I'd pick) is probably to just write that
one background-color attribute into the page directly with a STYLE tag.
Short of that, you could build a "builder" script that would take a single
CSS template, and then generate your 12 different sheets from that master
template.  Just rerun any time the colors change to keep it current.

cheers,
barneyb

On 9/10/07, Bruce Sorge <[EMAIL PROTECTED]> wrote:
> Good morning everyone.
> I have a question. I am working on our school's websites and rather 
> than have 12 different style sheets, I would like to have one style 
> sheet that has three classes where the background-color attribute is 
> dynamic. So how would I go about doing this? Now I can create a 
> css.cfm page and load the colors into the database, making sure that 
> the proper school ID is associated with their respective colors, but I 
> thought that I might be able to use the .css page instead.
>
>
> Thanks,
>
> --
> Bruce
--
Barney Boisvert
[EMAIL PROTECTED]
http://www.barneyb.com/

Got Gmail? I have 100 invites.



~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

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


Re: Can't Install ColdFusion 8 on Windows XP Home , Dell comp.

2007-09-10 Thread Shane Zehnder
Also, I would make sure that if you had any firewall app, etc. running I would 
switch it off while doing the install. 

~|
Check out the new features and enhancements in the
latest product release - download the "What's New PDF" now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

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


Re: "Dynamic" CSS

2007-09-10 Thread Pete Ruckelshaus
I serve .cfm files as linked stylesheets all the time.  i.e.



It might be your best/most flexible option.


On 9/10/07, Bruce Sorge <[EMAIL PROTECTED]> wrote:
>
> Good morning everyone.
> I have a question. I am working on our school's websites and rather than
> have 12 different style sheets, I would like to have one style sheet that
> has three classes where the background-color attribute is dynamic. So how
> would I go about doing this? Now I can create a css.cfm page and load the
> colors into the database, making sure that the proper school ID is
> associated with their respective colors, but I thought that I might be
> able
> to use the .css page instead.
>
>
> Thanks,
>
> --
> Bruce
>
>
> 

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

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


RE: "Dynamic" CSS

2007-09-10 Thread Jake Churchill
What I do is dynamically set an ID in the body tag.  

So, if I have the following class:

div.main {...}

I can add the color by setting

#typeA div.main {background-color:#xx;}

Repeat for each color:

#typeB div.main {background-color:#xx;}
#typeC div.main {background-color:#xx;}
#typeD div.main {background-color:#xx;}
#typeE div.main {background-color:#xx;}

_ 

Jake Churchill 
Team Leader
11204 Davenport, Ste. 100
Omaha, NE  68154 
http://www.cfwebtools.com 
402-408-3733 x103 


-Original Message-
From: Bruce Sorge [mailto:[EMAIL PROTECTED] 
Sent: Monday, September 10, 2007 12:00 PM
To: CF-Talk
Subject: "Dynamic" CSS

Good morning everyone.
I have a question. I am working on our school's websites and rather than
have 12 different style sheets, I would like to have one style sheet that
has three classes where the background-color attribute is dynamic. So how
would I go about doing this? Now I can create a css.cfm page and load the
colors into the database, making sure that the proper school ID is
associated with their respective colors, but I thought that I might be able
to use the .css page instead.


Thanks,

-- 
Bruce




~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

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


Re: &lt;cfexecute&gt; &amp; ffmpeg

2007-09-10 Thread Tom de Manincor
ORIGINAL POST

FFMPEG and CF are no match made in heaven.

My advice it to stay away from CFEXECUTE when using FFMPEG.
We used the Java Runtime library to fire off the thread and had much better 
results.

I posted the code and details on my blog for reference.

Check it out here http://tomdeman.com/machblog/index.cfm?event=showEntry&entryId=F0198A97-C29D-0239-7A35B70FA52400A5";>FFMPEG
 and CF 

~|
Check out the new features and enhancements in the
latest product release - download the "What's New PDF" now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

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


Re: "Dynamic" CSS

2007-09-10 Thread Barney Boisvert
You could pass .css files through the CF interpreter, but then you'd
lose the benefits of static files (caching, direct serving, etc.).
The easiest solution (and the one I'd pick) is probably to just write
that one background-color attribute into the page directly with a
STYLE tag.  Short of that, you could build a "builder" script that
would take a single CSS template, and then generate your 12 different
sheets from that master template.  Just rerun any time the colors
change to keep it current.

cheers,
barneyb

On 9/10/07, Bruce Sorge <[EMAIL PROTECTED]> wrote:
> Good morning everyone.
> I have a question. I am working on our school's websites and rather than
> have 12 different style sheets, I would like to have one style sheet that
> has three classes where the background-color attribute is dynamic. So how
> would I go about doing this? Now I can create a css.cfm page and load the
> colors into the database, making sure that the proper school ID is
> associated with their respective colors, but I thought that I might be able
> to use the .css page instead.
>
>
> Thanks,
>
> --
> Bruce
-- 
Barney Boisvert
[EMAIL PROTECTED]
http://www.barneyb.com/

Got Gmail? I have 100 invites.

~|
Check out the new features and enhancements in the
latest product release - download the "What's New PDF" now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

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


Re: <cfexecute> & ffmpeg

2007-09-10 Thread Tom de Manincor
test

i tried to post a solution but havent seen it show up yet 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

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


"Dynamic" CSS

2007-09-10 Thread Bruce Sorge
Good morning everyone.
I have a question. I am working on our school's websites and rather than
have 12 different style sheets, I would like to have one style sheet that
has three classes where the background-color attribute is dynamic. So how
would I go about doing this? Now I can create a css.cfm page and load the
colors into the database, making sure that the proper school ID is
associated with their respective colors, but I thought that I might be able
to use the .css page instead.


Thanks,

-- 
Bruce


~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288095
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 6.01 cfmail - css

2007-09-10 Thread Paul Ihrig
Thanks Wil!
thats what i have read as well.
kinda stinks, but o well...

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

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


Re: Odd behavior when using cfform inside a CFC

2007-09-10 Thread Brian Kotek
You could try dumping the variables scope of the CFC to see if cfform is
putting something in there. But whatever the problem is, I'm pretty sure it
must be related to the fact that the CFC is being stored in a shared scope.
Does switching to a per-request CFC allow the JavaScript to work correctly?
While I don't recommend doing it in general, you might also see if doing a
cfinclude of a template that contains the cfform tags makes a difference.

On 9/10/07, Jaime Metcher <[EMAIL PROTECTED]> wrote:
>
> Well, this really is just a wild guess, but maybe it's worth trying
> re-instantiating the CFC on every request.  CFFORM could be stashing some
> state in that CFC.
>
> Jaime Metcher
>
> > -Original Message-
> > From: Charles Sheehan-Miles [mailto:[EMAIL PROTECTED]
> > Sent: Monday, 10 September 2007 6:58 PM
> > To: CF-Talk
> > Subject: Re: Odd behavior when using cfform inside a CFC
> >
> >
> > Jaime  interesting question, and yes, the CFC in this case is
> > stored in the session scope.
> >
>
>
>
> 

~|
Check out the new features and enhancements in the
latest product release - download the "What's New PDF" now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

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


Re: Replacing the CFDJ awards.... ?

2007-09-10 Thread todd sharp
>How about a community driven award, for and by the community?

I plan on doing the CFeMmy awards again this year - and hope to have it run 
much smoother and become more relevant this time around.

http://cfsilence.com/blog/client/index.cfm/2006/12/22/2006-CFeMmys--And-The-Winners-Are
 

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

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


Re: Replacing the CFDJ awards.... ?

2007-09-10 Thread James Holmes
How about a community driven award, for and by the community?

On 9/10/07, John Paul Ashenfelter <[EMAIL PROTECTED]> wrote:
> Folks,
>
> While I'm certainly neither surprised or upset by the demise of CFDJ,
> I always did get a lot of vicarious pleasure out of the yearly CFDJ
> awards. Regardless of the value of such awards (and no offense to any
> recipients or nominees) such a popularity contest is always useful in
> one way or another.
>
> So who's stepping up to take over? :)
>
> Not me ;)
>
> --
> John Paul Ashenfelter
> CTO/Transitionpoint
> (blog) http://www.ashenfelter.com
> (email) [EMAIL PROTECTED]
>
> 

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

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


Replacing the CFDJ awards.... ?

2007-09-10 Thread John Paul Ashenfelter
Folks,

While I'm certainly neither surprised or upset by the demise of CFDJ,
I always did get a lot of vicarious pleasure out of the yearly CFDJ
awards. Regardless of the value of such awards (and no offense to any
recipients or nominees) such a popularity contest is always useful in
one way or another.

So who's stepping up to take over? :)

Not me ;)

-- 
John Paul Ashenfelter
CTO/Transitionpoint
(blog) http://www.ashenfelter.com
(email) [EMAIL PROTECTED]

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288090
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 6.01 cfmail - css

2007-09-10 Thread Wil Genovese
Most web based email such as Yahoo and Google tend to ignore the style 
section.  I've tested many web email and stand alone email clients and 
found the only way to ensure the styles work as you intend are to use 
inline style definitions. 

ie.  
-- Wil Genovese One man with courage makes a majority. -Andrew Jackson A fine is a tax for doing wrong. A tax is a fine for doing well. Paul Ihrig wrote: > ok i have a cfmail file that is ignoring the defined styled on the > included page that is mailed. > > if i hard code the background colors & fonts info with out styles it works > fine > > but if i either > > subject="Your vv.com Order Confirmation" type="html"> > > > > > > > or if i have stle linked from with in remail.cfm it still doesnt work. > any ideas? > > thanks! > -paul > > ~| ColdFusion is delivering applications solutions at at top companies around the world in government. Find out how and where now http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288089 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Re: Creating HTML Content Wrapper for Email

2007-09-10 Thread Paul Ihrig
Hey Mik.
so should any style type stuff then be hard coded into the page. like
background color, font size et?

thanks!
-paul

On 3/6/07, Mik Muller <[EMAIL PROTECTED]> wrote:
> I stand corrected.
>
> "Do not use the CSS style declaration in the HTML head tag, as you might when 
> authoring web pages. Google Mail, in particular, looks for any style in the 
> email and (helpfully) deletes it. Also, don't bother using the link element 
> to reference an external style sheet: Google Mail, Hotmail, and other email 
> software will ignore, modify, or delete these external references to a style 
> sheet."
>
> This is not true of Eudora, but what's the world percentage on that? (OT: 
> Eudora is now open source -- http://eudora.com )
>
> Mik
>
>
> At 11:59 AM 3/6/2007, Jim Wright wrote:
> >When I was creating some HTML email templates recently, I found this
> >article to be very valuable...
> >http://www.sitepoint.com/article/code-html-email-newsletters
> >
> >
>
> 

~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

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


cf 6.01 cfmail - css

2007-09-10 Thread Paul Ihrig
ok i have a cfmail file that is ignoring the defined styled on the
included page that is mailed.

if i hard code the background colors & fonts info with out styles it works fine

but if i either








or if i have stle linked from with in remail.cfm it still doesnt work.
any ideas?

thanks!
-paul

~|
Check out the new features and enhancements in the
latest product release - download the "What's New PDF" now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

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


RE: & ffmpeg

2007-09-10 Thread Russ
0 timeout means don't wait for the thread to finish, correct?  It basically
spawns the process and keeps processing the page... 

BTW ffmpeg will only do flash 7 right?  I'm looking to do flash8, but the
folks at on2 want 5K per year for the conversion engine.  That's kind of
steep if you ask me.  Does anyone know of any more reasonable options?

Russ



> -Original Message-
> From: Jochem van Dieten [mailto:[EMAIL PROTECTED]
> Sent: Monday, September 10, 2007 8:20 AM
> To: CF-Talk
> Subject: Re:  & ffmpeg
> 
> Mark Lewis wrote:
> >
> >  timeout="0">
> > 
> 
> Why the 0 timeout? Set something reasonable so the conversion has time
> to process.
> 
> Jochem
> 
> 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

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


Report Builder - Is there really no "can grow" feature?

2007-09-10 Thread Andrew Peterson
Hello,

Does Report Builder have a "can grow" / "can shrink" feature in either version 
7 or 8 that we can't find?  

We're issuing news releases as pdf files via report builder. The body of the 
report has one field - "content" that may have one page worth of text, or it 
may have more. If it has two pages worth of text, but we have set the field 
size to less than the length of one page, the 2nd page of the news release gets 
cut off because there is no "can grow" feature that we can find. If we extend 
the field size to beyond the length of the page, thereby extending it to two 
pages, the second page automatically gets printed regardless of whether there 
is no text to print or not because there's no "can shrink" feature! And 
CFDocument can't be used because it cannot render images through a firewall.

And so I ask again :-), does Report Builder have a can grow / can shrink 
feature in either version 7 or 8? 

TIA,

Andrew


~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

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


Re: & ffmpeg

2007-09-10 Thread Mark Lewis
Jochem,

You are right, but I was setting the timeout for periods up to 20minutes, 
and the process was crashing.

I seem to have found a temporary fix to this problem by running the 
 twice? Odd as it sounds, it does the trick.

If you could think of a less shoddy fix to this problem or perhaps a reason 
as to why this problem is happening I would greatly appreciate it.

Thank you all again for your help

Mark
- Original Message - 
>>
>> > timeout="0">
>> 
>
> Why the 0 timeout? Set something reasonable so the conversion has time
> to process.
>
> Jochem


~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

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


Re: charting solution for using with CF

2007-09-10 Thread Jim Wright
I got curious about whether you could output those gauge charts...and
this code works, but it outputs the "Developer Edition" watermark on
the output...even though the server is a licensed version of CF7
(the data and style were just straight from the example one in the
webcharts builder)



svr.getDefaultInstance(getPageContext().getServletContext());
myChart = svr.newImageSpec();
myChart.width = 400  ;
myChart.height= 300 ;
myChart.type = "PNG"  ;
myChart.style = "

" ;
myChart.model = "\n\nLow\nAverage\nHigh\nSample 0:\nSample 1:\nSample 2:\n";

svr.saveBytesTo(myChart,"#GetDirectoryFromPath(GetBaseTemplatePath())#testimage.png");



~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

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


Re: & ffmpeg

2007-09-10 Thread Jochem van Dieten
Mark Lewis wrote:
> 
>
> 

Why the 0 timeout? Set something reasonable so the conversion has time 
to process.

Jochem

~|
Check out the new features and enhancements in the
latest product release - download the "What's New PDF" now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

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


Re: Can't Install ColdFusion 8 on Windows XP Home , Dell comp.

2007-09-10 Thread Jochem van Dieten
John Martinez wrote:
> 
> I tried to manually start the coldfusion 8 application server and when I did 
> that i got this message 
> 
> "Windows could not start the ColdFusion 8 Application Server on Local 
> Computer, For more information, review the System Event Log.  If this is a 
> non-Microsoft service, contact the service vendor, and refer to teh 
> service-specific error code 2."

What is the error you get when you start CF interactively instead of as 
a service?

Jochem

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

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


Re: CFECLIPSE 'Error opening the editor' JavaFileEditorInput error

2007-09-10 Thread Jochem van Dieten
Robert Harrison wrote:
> Which version did you use. I too had that same issue and eventually decided
> it was the all-in-one I was downloading. 
> 
> So which is the best version to use?

Eclipse 3.3 requires CFEclipse 1.3.1.5

Jochem

~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us

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


Re: Help with Simple SQL Insert

2007-09-10 Thread Jochem van Dieten
Aaron Roberson wrote:
> Query Error: Data truncation: Out of range value adjusted for column
> 'ordernumber' at row 1
> 
> Here is the SQL statement:
> INSERT INTO orders(ordernumber, tax, shipping, total)
> VALUES(558972266568040,0.0,4.75,24.7)
> 
> In my database (MySQL 5) I have the following fields in my orders table:
> id (int 11)
> ordernumber (int 75)

Your datatype is INT, your display mask is 75. You can not store 
558972266568040 in an INT field. Use a BIGINT if that is sufficient for 
current and future needs or a DECIMAL field.

Jochem

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

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


Re: Smart Parsing of E-mail Attachments...

2007-09-10 Thread Jochem van Dieten
Dan G. Switzer, II wrote:
> One of the problems I'm facing with an application is that I need to smartly
> parse out attachments from an e-mail.
> 
> This means I need to ignore attachments that are strictly for HTML
> formatting (such as footer images or ads,) but need to find attachments that
> might be embedded as screenshots/images.

If you receive proper HTML that has a distinction between structure and 
layout the images for formatting will only be referenced from the CSS 
and the images for content will be referenced from the HTML. If you do 
not receive proper HTML there is no way to distinguish between images 
embedded for structure and images embedded for layout. But you can still 
distinguish between embedded and attached images, the one is 
multipart/related and the other multipart/mixed.


> E-mails could be coming in from a variety of different users and different
> e-mail clients. Not all the clients would be using HTML-based e-mail, but
> most do.

If the message is plain text, how would somebody embed an image into it? 
Aren't all images attachments and aren't all attachments relevant?

Jochem

~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

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


RE: Odd behavior when using cfform inside a CFC

2007-09-10 Thread Jaime Metcher
Well, this really is just a wild guess, but maybe it's worth trying
re-instantiating the CFC on every request.  CFFORM could be stashing some
state in that CFC.

Jaime Metcher

> -Original Message-
> From: Charles Sheehan-Miles [mailto:[EMAIL PROTECTED]
> Sent: Monday, 10 September 2007 6:58 PM
> To: CF-Talk
> Subject: Re: Odd behavior when using cfform inside a CFC
>
>
> Jaime  interesting question, and yes, the CFC in this case is
> stored in the session scope.
>



~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us

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


Re: Odd behavior when using cfform inside a CFC

2007-09-10 Thread Charles Sheehan-Miles
Jaime  interesting question, and yes, the CFC in this case is  
stored in the session scope.

Andrew ... for a lot of reasons, I chose to have the "view" layer  
implemented in a CFC.  The application is set up such that a user  
creates their own templates, and then uses keywords inside those  
templates which are equivalent to various widgets, etc.  For example,  
the user might put the following into their template, which is stored  
in the database:



%title%
other stuff


some header and formatting stuff

%blog_entry% 

some footer and formatting stuff


All of the above is stored in the database.  When the page is  
actually executed, the OnRequest in application CFC looks something  
like this:







#APPLICATION.PG.RENDER(TEMPLATE, REQUEST.RQ)#

So this calls a function that determines which of those templates to  
use, then renders it, calling the correct routines on the fly. So  
basically all of the content in any given user website is driven by  
the render method in the page processing CFC.  I ended up building it  
this way because the app was a nightmarish chaos of code before.

While I appreciate the suggestion to separate out the page processing  
into CFM templates, I've just spent about six months undoing that, so  
it's not really an option at this point.  That said, the "view" CFCs  
are separated out from the business logic, but yes, it's completely  
CFC driven. I don't have any CFM templates in the entire app.


>
> Also, I know that was only pseudocode, but given that "var" is a  
> reserved
> word it looks a bit dodgy.  You'd want to at least var scope that  
> result
> variable, e.g.
>
> 

 Correct here, I mistyped in my orriginal email



~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

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


Re: CFTHREAD - naming threads when you dont care (too much) about the name

2007-09-10 Thread Jochem van Dieten
Paul Vernon wrote:
> 
> 
>
> 
> The problem I'm seeing is that when lots of small events are firing, using
> cfthread is actually slower than not threading the code because along with
> the cfthread instantiation which is deep copying my arguments, CreateUUID()
> is *slow* and introduces even more lag into the request.

And if you think it is bad now, just wait until you run it under load. 
The total number of UUIDs created per second is independent of the 
number of threads or processors, but fixed at some multiple of the 
number of clock ticks per second Java has on your platform.


> Does anyone have any suggestions to reliably replace CreateUUID() for
> performance but still remain unique?

Thread names do not have to be unique, they only have to be unique for 
the request. Using something like name="t#request.threadcounter++#" 
should work just fine.

Jochem

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

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


Re: MS SQL 2005 and CFMX 7.02Ent

2007-09-10 Thread Jochem van Dieten
John Paul Ashenfelter wrote:
> On 9/7/07, Wil Genovese <[EMAIL PROTECTED]> wrote:
>> I'm thinking this got lost in yesterday's backlog.  Does anyone have any
>> clues on this?
> 
> Not directly, but 2 years ago I did do some analysis of MSSQL JDBC
> drivers as part of a project and we ended up looking at both jTurbo
> (from NewAtlanta) and JTDS (open source http://jtds.sourceforge.net/)
> in addition to MS's driver. The MS driver was awful (this was the
> 1.0beta)

1.0 final and 1.1 final still are awful. Just test them and pay some 
attention to the combination of Unicode and concurrency (the license 
does not allow me to publicly disclose our benchmark results, but it 
should be quite obvious).


> and JTDS was *really* fast.

It seems to have lost most of its lead compared to the DataDirect drivers.

Jochem

~|
Check out the new features and enhancements in the
latest product release - download the "What's New PDF" now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

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


Re: Light-duty CF intranet server?

2007-09-10 Thread Tom Chiverton
On Friday 07 Sep 2007, [EMAIL PROTECTED] wrote:
> I would be open to Linux, but I have already drunk the MS SQL Server red
> kool­aid.

So you're going to have to by a Windows license anyway. May as well stay on 
that.

-- 
Tom Chiverton
Helping to economically market plug-and-play communities
on: http://thefalken.livejournal.com



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.


~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

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


Re: How to move CFIDE in CF8?

2007-09-10 Thread Jochem van Dieten
Jim McAtee wrote:
> When I installed CF8, it placed the CFIDE folder under the source 
> directory of the default web site and created a virtual directory in IIS 
> pointing at the folder.  That's not a good location for our use, so I'd 
> like to move it.  I tried, and changed the IIS virtual directory, but the 
> CF Administrator bombs.  I put everything back the way it was and went 
> into the Administrator and see that it CF has an unchangeable logical 
> directory mapping of /CFIDE pointing at the physical location.

It isn't really unchangeable, you just have to edit neo-runtime.xml by 
hand to change it.

What I prefer to do is move /cfide/ directly under /cfusion.war/ 
(outside the IIS webroot) and add a mapping of /cfide/* to the 
FileServlet in web.xml and it works automagically for every website that 
is tied to the JRun instance with the wildcard adapter. (Use the 
FileServlet so other filetypes work too, the CfmServlet will take 
precedence when a .cfm or .cfc template is requested based on the suffix 
mapping.)

Jochem

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

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