Re: Extracting part of a string

2010-07-22 Thread Larry Lyons

So who died and made you list god? Last I checked Michael Dinowitz was the list 
owner.

That said I've used Claude's CF_REextract for a couple of projects, and for 
what it does, it does it very well. Its also applicable to the question the 
original poster raised.


Stop spamming every regex question (that has an extremely simple, free
native solution) on a community list with ads to buy your crap. It was
outdated 7 years ago.

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

 
 What I need is simple

Try a simple solution : CF_REextract :
http://www.cftagstore.com/tags/cfreextract.cfm 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335622
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Extracting part of a string

2010-07-22 Thread Bobby Hartsfield

Well that's two against the 4 offlist emails and 2 IMs of Thanks for saying
what I wanted to.

CS is smart enough to write a regex for returning 123 from str123str in his
sleep, yet it's always a cheap marketing ploy for a paid overkill solution.
If everyone on the list did that, cf-talk wouldn't be cf-talk, it would be
the ExpertSexChange.com

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


-Original Message-
From: Larry Lyons [mailto:larrycly...@gmail.com] 
Sent: Thursday, July 22, 2010 8:48 AM
To: cf-talk
Subject: Re: Extracting part of a string


So who died and made you list god? Last I checked Michael Dinowitz was the
list owner.

That said I've used Claude's CF_REextract for a couple of projects, and for
what it does, it does it very well. Its also applicable to the question the
original poster raised.


Stop spamming every regex question (that has an extremely simple, free
native solution) on a community list with ads to buy your crap. It was
outdated 7 years ago.

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

 
 What I need is simple

Try a simple solution : CF_REextract :
http://www.cftagstore.com/tags/cfreextract.cfm 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335623
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Extracting part of a string

2010-07-22 Thread Claude Schnéegans

 CS is smart enough to write a regex for returning 123 from str123str 
in his sleep

On the other hand, if you were so smart, you would have noticed that the 
tag does not write a regex,
but returns all strings in between TWO regex directly in a querry or a 
list that can be found in a large string or file.
The tag can also read the string from the disk, or get it from the Web 
by HTTP.
With your free solution, you only get a match for one regex.
But you still have to dig into cumbersome arrays to extract the matching 
string, this is what CF_REextract does for you,
the regex part in only accessory.
So please stop criticizing something you don't even know about.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335624
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: coverting string to a numeric value

2010-07-22 Thread Scott Brady

By converting a string to a number, do you mean converting the string value
123 to 123, or do you mean converting one hundred twenty-three to 123?

If it's the first, you've got your answer already.  If it's the second, it's
a bit more complex and something that has come up in the past. You can
search the archives or look at cflib.org, because I suspect someone's
already built a function for that.

Scott

On Mon, Jul 19, 2010 at 2:45 PM, fun and learning
funandlrnn...@gmail.comwrote:


 Hi All-

 is there a way I can convert a string to number in coldfusion. I could not
 see any related functions to do this?

 Thanks


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


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335625
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


How to dispaly flash video in coldfusion pages

2010-07-22 Thread Kamru Miah

Hello,

Could some please advise me if it's possible to play MPEG video files on 
Coldfusion 8 pages, perhaps after conversion to Shock Wave Flash (.swf) files? 
It would be nice to have the user controls like Youtube as well!

Thanks in anticipation. 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335626
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: How to dispaly flash video in coldfusion pages

2010-07-22 Thread Dave Watts

 Could some please advise me if it's possible to play MPEG video files on 
 Coldfusion 8 pages, perhaps
 after conversion to Shock Wave Flash (.swf) files? It would be nice to have 
 the user controls like Youtube as well!

You can put anything into a CF page that you can put into HTML. You'll
probably want to convert it to FLV rather than directly to SWF, but
that needn't be done in CF specifically. If you do want to do video
conversion from a CF application, you'll need to launch a conversion
program from CF, like ffmpeg via CFEXECUTE. There are various FLV
players that will give you various controls; we've been using this one
a lot lately:

http://www.longtailvideo.com/

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335627
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: How to dispaly flash video in coldfusion pages

2010-07-22 Thread Paul Alkema

Hi Kamru,
This is really more of a web development issue than a ColdFusion issue as
ColdFusion. It shouldn't matter what ColdFusion server your on. This can be
done multiple ways, you could create a player in flash or use a flash
template however I would check our flowplayer, it's a really robust flash
movie player that's built in jQuery. Very cool.

http://flowplayer.org/index.html

Paul Alkema
http://paulalkema.com
t: @PaulAlkema

-Original Message-
From: Kamru Miah [mailto:k.m...@csl.gov.uk] 
Sent: Thursday, July 22, 2010 10:58 AM
To: cf-talk
Subject: How to dispaly flash video in coldfusion pages


Hello,

Could some please advise me if it's possible to play MPEG video files on
Coldfusion 8 pages, perhaps after conversion to Shock Wave Flash (.swf)
files? It would be nice to have the user controls like Youtube as well!

Thanks in anticipation. 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335628
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Extracting part of a string

2010-07-22 Thread James Holmes

I propose an open source project to duplicate everything that
CF_REextract does, so we can spam an equivalent free solution in every
regex question on the list.

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/

On 22 July 2010 21:36,   wrote:

  CS is smart enough to write a regex for returning 123 from str123str
 in his sleep

 On the other hand, if you were so smart, you would have noticed that the
 tag does not write a regex,
 but returns all strings in between TWO regex directly in a querry or a
 list that can be found in a large string or file.
 The tag can also read the string from the disk, or get it from the Web
 by HTTP.
 With your free solution, you only get a match for one regex.
 But you still have to dig into cumbersome arrays to extract the matching
 string, this is what CF_REextract does for you,
 the regex part in only accessory.
 So please stop criticizing something you don't even know about

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335629
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Salesforce CFC?

2010-07-22 Thread Billy Cox

For the benefit of anyone else who wants to use Salesforce.CFC with the
Salesforce API v.19...

There are only a handful of changes needed, the most consequential of which
are a couple of lines in the parseQueryXML function code. Salesforce API
v.19 returns XML a bit differently than version 11.1. I have tested the
Login, QueryObject and SaveObject functions and all of their child
functions.

I would be happy to share the updated cfc if you want to email me off-list.

-Billy

On Mon, Jul 19, 2010 at 4:39 PM, Billy Cox bi...@oldworldspices.com wrote:

 Has anyone found a way to use Salesforce.cfc (
 http://salesforcecfc.riaforge.org/) with a more recent Salesforce web
 services API? (17+) I have gotten through the bulk of a Salesforce
 integration with the CFC mostly as-is, but now I'm running into a roadblock
 because I want to access/update a Salesforce field that isn't recognized in
 API version 11.1.

 I greatly appreciate any insights on updating this CFC.


 Thanks,
 Billy Cox






~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335630
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Extracting part of a string

2010-07-22 Thread Michael Grant

+1

On Thu, Jul 22, 2010 at 11:35 AM, James Holmes james.hol...@gmail.comwrote:


 I propose an open source project to duplicate everything that
 CF_REextract does, so we can spam an equivalent free solution in every
 regex question on the list.

 --
 WSS4CF - WS-Security framework for CF
 http://wss4cf.riaforge.org/

 On 22 July 2010 21:36,   wrote:
 
   CS is smart enough to write a regex for returning 123 from str123str
  in his sleep
 
  On the other hand, if you were so smart, you would have noticed that the
  tag does not write a regex,
  but returns all strings in between TWO regex directly in a querry or a
  list that can be found in a large string or file.
  The tag can also read the string from the disk, or get it from the Web
  by HTTP.
  With your free solution, you only get a match for one regex.
  But you still have to dig into cumbersome arrays to extract the matching
  string, this is what CF_REextract does for you,
  the regex part in only accessory.
  So please stop criticizing something you don't even know about

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335631
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Adobe no longer part of the OpenCFML committee

2010-07-22 Thread Judah McAuley

I find this to be a very disappointing development. I have no insight
into the politics behind this but I can definitely say that we are a
poorer community for this choice.

http://www.adrocknaphobia.com/post.cfm/adobe-no-longer-part-of-opencfml

I looked forward to being able to write applications to a spec and
have some confidence that they would run on multiple engines. It looks
like that will continue to be a dream.

Judah

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335632
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Extracting part of a string

2010-07-22 Thread Bobby Hartsfield

Can it be named CF_FreeExtract?

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

-Original Message-
From: Michael Grant [mailto:mgr...@modus.bz] 
Sent: Thursday, July 22, 2010 11:46 AM
To: cf-talk
Subject: Re: Extracting part of a string


+1

On Thu, Jul 22, 2010 at 11:35 AM, James Holmes
james.hol...@gmail.comwrote:


 I propose an open source project to duplicate everything that
 CF_REextract does, so we can spam an equivalent free solution in every
 regex question on the list.

 --
 WSS4CF - WS-Security framework for CF
 http://wss4cf.riaforge.org/

 On 22 July 2010 21:36,   wrote:
 
   CS is smart enough to write a regex for returning 123 from str123str
  in his sleep
 
  On the other hand, if you were so smart, you would have noticed that the
  tag does not write a regex,
  but returns all strings in between TWO regex directly in a querry or a
  list that can be found in a large string or file.
  The tag can also read the string from the disk, or get it from the Web
  by HTTP.
  With your free solution, you only get a match for one regex.
  But you still have to dig into cumbersome arrays to extract the matching
  string, this is what CF_REextract does for you,
  the regex part in only accessory.
  So please stop criticizing something you don't even know about

 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335633
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Extracting part of a string

2010-07-22 Thread Jacob

Same here.. I have bought it a while back.. worth the $15 as I completely
suck with regex.



-Original Message-
From: Tony Weeg [mailto:tonyw...@gmail.com] 
Sent: Wednesday, July 21, 2010 5:12 PM
To: cf-talk
Subject: Re: Extracting part of a string


+420

Sent from my iPhone... Don't hate.

On Jul 21, 2010, at 6:39 PM, Claude Schnéegansschneeg...@internetique.com
wrote:

 
 This crap how you call it, is nevetheless the seventh most sold CF tag 
 at tagstore, with hundreds of satisfied buyers, and many positive 
 comments.
 Many developers are not as good with regex as you are, this is for sure.
 If you don't need the tag, you're free not buying it, but please stop 
 insulting me on line.
 
 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335634
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adobe no longer part of the OpenCFML committee

2010-07-22 Thread Wil Genovese

My thoughts -

quote from Adam:
It is today, as it was before. Innovation and progress in CFML is driven 
exclusively by the ColdFusion community. Adobe is merely a vessel that pours 
those ideas into ColdFusion and spread CFML advancements throughout the world. 
As a community, we never needed the OpenCFML board to guide or document 
feedback.

I would alter that to be 'Adobe is the CURRENT vessel' since from the beginning 
CFML innovation was always driven by the community going back to the days of 
Allaire and the Team Allaire members.

If the OpenBD team claims it is not organized enough to submit ideas then they 
are most likely not organized enough to release a new version of OpenBD and 
certainly not organized enough to be innovative. This is unfortunate since the 
commercial version of BlueDragon used to be innovative.

If Railo Team claims they want to wait and see what tags flush out in their 
flavor of CFML then two things are true, 1: they are implementing language 
enhancements that are not community driven and 2: Railo would rather take a 
wait and see role instead or a lead role in the OpenCFML board.

2¢
 

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. 

On Jul 22, 2010, at 10:50 AM, Judah McAuley wrote:

 
 I find this to be a very disappointing development. I have no insight
 into the politics behind this but I can definitely say that we are a
 poorer community for this choice.
 
 http://www.adrocknaphobia.com/post.cfm/adobe-no-longer-part-of-opencfml
 
 I looked forward to being able to write applications to a spec and
 have some confidence that they would run on multiple engines. It looks
 like that will continue to be a dream.
 
 Judah
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335635
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adobe no longer part of the OpenCFML committee

2010-07-22 Thread Judah McAuley

On Thu, Jul 22, 2010 at 9:14 AM, Wil Genovese jugg...@trunkful.com wrote:

 My thoughts -

 quote from Adam:
 It is today, as it was before. Innovation and progress in CFML is driven 
 exclusively by the ColdFusion community. Adobe is merely a vessel that pours 
 those ideas into ColdFusion and spread CFML advancements throughout the 
 world. As a community, we never needed the OpenCFML board to guide or 
 document feedback.

 I would alter that to be 'Adobe is the CURRENT vessel' since from the 
 beginning CFML innovation was always driven by the community going back to 
 the days of Allaire and the Team Allaire members.

ColdFusion is a trademark owned by Adobe. CFML is something that is
shared across a number of engines. I appreciate what Adobe has done so
far for CFML. I think it is a bit disingenuous to say that Adobe is
merely a vessel to put those ideas into effect. It is a, rather large,
commercial entity and it first and foremost has it's own best
interests at heart (by design, that's how companies work). To the
extent that it aligns with developer interests, that is a great thing.

 If the OpenBD team claims it is not organized enough to submit ideas then 
 they are most likely not organized enough to release a new version of OpenBD 
 and certainly not organized enough to be innovative. This is unfortunate 
 since the commercial version of BlueDragon used to be innovative.


I have no experience with OpenBD, so I can't really comment.

 If Railo Team claims they want to wait and see what tags flush out in their 
 flavor of CFML then two things are true, 1: they are implementing language 
 enhancements that are not community driven and 2: Railo would rather take a 
 wait and see role instead or a lead role in the OpenCFML board.

I do not know if you've had any experience with the Railo project
team. I can honestly say that I have never seen a more responsive
project. Community suggestions are made on the mailing list,
discussed, dropped in JIRA and implemented all the time. As in weekly.
The lead developer on the project has often times come to the mailing
list and asked for feedback on the best way to implement an idea
they'd been tossing around. They have pushed the language forward in
the past and continue to do so, with much greater transparency and
feedback than any other project I've ever seen.  Might they wait on
decisions from Adobe about implementation of certain items? That seems
prudent to me as it is in the best interests of all CFML programmers
to have a consistent language syntax and behavior, certainly for the
core language at the least.

Like I said, I don't know the politics behind the whole thing. I can't
say I really understand Adam's reasons from reading his blog post. My
concern, however, isn't the behind the scenes politics, it is my
disappointment that an effort to standardize the core language has
been tossed by the wayside. I don't really care how it gets done but I
think it is in the best interests of developers to be able to write an
app with knowledge that you can drop it into a host running Adobe
ColdFusion, Railo or OpenBD and be off and running. Ah well.

Judah

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335636
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adobe no longer part of the OpenCFML committee

2010-07-22 Thread Bryan Stevenson

Judahjust FYIthe OpenBD team is every bit as responsive as you
just described the Railo team

Cheers


Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: br...@electricedgesystems.com
web: www.electricedgesystems.com
 
Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.
Please consider the environment before printing this e-mail



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335637
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


IIS Missing CFM Pages

2010-07-22 Thread Robert Harrison

How can I make IIS 404 work for missing CFM pages? 

It works for any except CFM.



Robert B. Harrison
Director of Interactive Services
Austin  Williams
125 Kennedy Drive, Suite 100 
Hauppauge NY 11788
P : 631.231.6600 Ext. 119 
F : 631.434.7022
http://www.austin-williams.com 

Great advertising can't be either/or.  It must be .

Plug in to our blog: AW Unplugged
http://www.austin-williams.com/unplugged


 

__ Information from ESET Smart Security, version of virus signature
database 5301 (20100722) __

The message was checked by ESET Smart Security.

http://www.eset.com
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335638
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adobe no longer part of the OpenCFML committee

2010-07-22 Thread Wil Genovese

Adobe CURRENTLY owns the ColdFusion trademark. This has not always been the 
case but the trademark has always been commercially owned.

about Railo I can honestly say that I have never seen a more responsive 
project. Community suggestions are made on the mailing list, discussed, dropped 
in JIRA and implemented all the time. As in weekly.

This is most likely the problem that Sean was referring to.  Being responsive 
to the community is one thing, being overly responsive is a problem.  Just 
because one person asks for something and three more chime in with me to 
+++1 does not make the request 'community driven'.  Sean was saying 
Railo needs to wait and see what parts of their flavor of CFML become popular.  
This means too many requests are added too quickly without proper market 
research.

Adobe is responding to the community in a mature fashion. Absorbing multitudes 
of requests, flushing out those requests, talking to the community, to major 
players and companies that use ColdFusion to see if a request makes sense and 
would be useful. This method helps ensure that only the best requests get added 
into CFML and helps ensure proper and complete implementation.

To me Railo seems to be adding to their flavor of CFML as fast as the children 
say 'ooh, I want'.  This results in a fat bloated language spec (and fat 
children).

+2¢ 


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. 

On Jul 22, 2010, at 11:30 AM, Judah McAuley wrote:

 I can honestly say that I have never seen a more responsive
 project. Community suggestions are made on the mailing list,
 discussed, dropped in JIRA and implemented all the time. As in weekly.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335639
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adobe no longer part of the OpenCFML committee

2010-07-22 Thread Judah McAuley

You seem primarily interested in defending Adobe and attacking open
source projects. I find this rather unhelpful and churlish. I was not
trying to start a political discussion at all but rather pointing out
to the community that a rather promising project has met its demise. I
would like to see a standards body for CFML that pushes an evolving
language framework forward while still giving individual
implementations room to innovate. As a community of developers, we
stand the best chance of maintaining and expanding our ranks if a new
developer can come in, see a well written language spec and know that
if they jump into a project they can deploy it on a CF9 multi-instance
cluster at an enterprise site fronted by a BigIP load balancer or they
can demo it on a $10 a month Railo VPS.

I have no desire to get into any blame games and I hope that we avoid
them all together. I just want to see a promising project revived
because I think it will be to the benefit of us all.

Judah

On Thu, Jul 22, 2010 at 9:50 AM, Wil Genovese jugg...@trunkful.com wrote:

 Adobe CURRENTLY owns the ColdFusion trademark. This has not always been the 
 case but the trademark has always been commercially owned.

 about Railo I can honestly say that I have never seen a more responsive 
 project. Community suggestions are made on the mailing list, discussed, 
 dropped in JIRA and implemented all the time. As in weekly.

 This is most likely the problem that Sean was referring to.  Being responsive 
 to the community is one thing, being overly responsive is a problem.  Just 
 because one person asks for something and three more chime in with me to 
 +++1 does not make the request 'community driven'.  Sean was saying 
 Railo needs to wait and see what parts of their flavor of CFML become 
 popular.  This means too many requests are added too quickly without proper 
 market research.

 Adobe is responding to the community in a mature fashion. Absorbing 
 multitudes of requests, flushing out those requests, talking to the 
 community, to major players and companies that use ColdFusion to see if a 
 request makes sense and would be useful. This method helps ensure that only 
 the best requests get added into CFML and helps ensure proper and complete 
 implementation.

 To me Railo seems to be adding to their flavor of CFML as fast as the 
 children say 'ooh, I want'.  This results in a fat bloated language spec (and 
 fat child

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335640
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adobe no longer part of the OpenCFML committee

2010-07-22 Thread Sean Corfield

On Thu, Jul 22, 2010 at 9:50 AM, Wil Genovese jugg...@trunkful.com wrote:
 This is most likely the problem that Sean was referring to.  Being responsive 
 to the community is one thing, being overly responsive is a problem.  Just 
 because one person asks for something and three more chime in with me to 
 +++1 does not make the request 'community driven'.  Sean was saying 
 Railo needs to wait and see what parts of their flavor of CFML become 
 popular.  This means too many requests are added too quickly without proper 
 market research.

It's also important to consider the difference between the core
language - which needs to be compatible across all engines for those
engines to be useful - and the rest of the CFML stuff. So Railo can
easily implement new administrator features, networked caches and all
manner of extensions based on the needs of a few but when it comes to
the language, much more care must be taken.

A great example is for-in for arrays in cfscript. Railo has supported
var in such loops for a long time and had for-in on arrays long before
the committee considered it. The committee picked a different
implementation but since no one but Railo had implemented it, there
was no compatibility issue (insofar as code that ran on Adobe / OpenBD
behaved the same on Railo). With CF9.0.1 adding for-in array matching
the committee spec, Railo changed their for-in array implementation to
match - breaking some existing Railo code because core language
compatibility is important (and there will probably be an
Administrator setting added to allow legacy Railo code to continue to
execute as-is).

 To me Railo seems to be adding to their flavor of CFML as fast as the 
 children say 'ooh, I want'.  This results in a fat bloated language spec (and 
 fat children).

And yet the Adobe ColdFusion uses far more disk space and RAM than
OpenBD or Railo... :)
-- 
Sean A Corfield -- (904) 302-SEAN
Railo Technologies, Inc. -- http://getrailo.com/
An Architect's View -- http://corfield.org/

If you're not annoying somebody, you're not really alive.
-- Margaret A

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335641
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Salesforce CFC?

2010-07-22 Thread Brad Wood

riaforge.com should give you a way to submit a ticket and contact the 
project owner so he can include your updates into the main project.

~Brad

- Original Message - 
From: Billy Cox bi...@oldworldspices.com
To: cf-talk cf-talk@houseoffusion.com
Sent: Thursday, July 22, 2010 10:40 AM
Subject: Re: Salesforce CFC?



 For the benefit of anyone else who wants to use Salesforce.CFC with the
 Salesforce API v.19...

 There are only a handful of changes needed, the most consequential of 
 which
 are a couple of lines in the parseQueryXML function code. Salesforce API
 v.19 returns XML a bit differently than version 11.1. I have tested the
 Login, QueryObject and SaveObject functions and all of their child
 functions.

 I would be happy to share the updated cfc if you want to email me 
 off-list.
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335642
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: IIS Missing CFM Pages

2010-07-22 Thread Brad Wood

Check the Verify that file exists checkbox on the IIS mapping.

Beware, this will break things like cfimage display in browser, cfchart 
output and RDS sine those rely on the wildcard mapping to non-existent 
directories that CF still processes.

~Brad

- Original Message - 
From: Robert Harrison rob...@austin-williams.com
To: cf-talk cf-talk@houseoffusion.com
Sent: Thursday, July 22, 2010 11:46 AM
Subject: IIS Missing CFM Pages



 How can I make IIS 404 work for missing CFM pages?

 It works for any except CFM.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335643
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: IIS Missing CFM Pages

2010-07-22 Thread Dave Watts

 How can I make IIS 404 work for missing CFM pages?

 It works for any except CFM.

By default, CF requests are passed through IIS without IIS checking
for the individual pages. This is very useful behavior, as many CF
tags and specific pieces of functionality require that CF make up new
URLs on the fly, or map specific URL requests to non-existent URLs.

If you can live without those pieces of functionality, you can enable
the check if file exists option in the IIS configuration for the
specific ISAPI extension used by CF.

If you can't live without those pieces of functionality, I recommend
that you implement your own 404 handling in CF. There are various
mechanisms for this, such as the Missing Template Handler in the CF
Admin ... Server Settings ...Settings page.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335644
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Why would wsconfig hang?

2010-07-22 Thread Ian Skinner

  I went to our production server today to connect a new website to a 
ColdFusion instance and wsconfig would not cooperate with me!

Using the GUI, and clicking the 'Add' button, the interface would just 
freeze.  So we went to the command prompt to do it manually, and we 
could list the connectors just fine with wsconfig.  But when we entered 
a wsconfig add command, it again froze with no response until the 
process is killed with the task manager.

The wsconfig was running under the localadmin account that the sysop 
logged in with and should have had plenty of permissions as far as we 
could ascertain.  So what could be a problem here?

The wsconfig worked just fine all the previous thirteen times we have 
used it to connect IIS web sites to our ColdFusion instances on this 
system.

Windows 2003 running ColdFusion 9.0 if that helps anybody.



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335645
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


cfinput 'datefield' always aligns to left?

2010-07-22 Thread Jim Eisenhauer

Please help.

I cannot get the input field to center in a table cell using 'td 
align=center' or using CSS.

I haven't even been able to put something in front of the field in the same 
cell either without the field forcing itself onto a new line and aligning 
itself left. 

Here is a snippet of code...

td align=rightstrongDate Authorized/strong/td
td colspan=3 align=center
cfinput
type=datefield
name=DT_AUTH
value=#DA#
mask=mm/dd/
validate=date
disabled=#disabled#/td



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335646
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adobe no longer part of the OpenCFML committee

2010-07-22 Thread Larry Lyons

 My thoughts -
 
[SNIP]
 If the OpenBD team claims it is not organized enough to submit ideas 
 then they are most likely not organized enough to release a new 
 version of OpenBD and certainly not organized enough to be innovative. 
 This is unfortunate since the commercial version of BlueDragon used to 
 be innovative.
 

I completely disagree with you about that one. The OBD group (sounds like an 
SM party ;) is quite innovative, for instance there are several items which 
are now in CF9 that I believe had their inception in Open BlueDragon. OBD has a 
very active mailing list, and the committee and programmers involved in it are 
quite responsive to the community and also to their own innovation.

regards,
larry 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335647
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Mura Error Handling

2010-07-22 Thread Matt Quackenbush

I have searched Google, the Mura documentation site, the Mura forums, and
the Mura Programmer's Guide for instructions on how to setup error handling,
but cannot find anything other than a handful of casual references.  It
seems that there are two options:

1) Create an error handling template and provide it to the 'ErrorTemplate'
setting in the settings.ini.

2) Use an onSiteError() or onGlobalError() event handler.

Option #1 seems easy enough to implement, but I would really prefer Option
#2, and, specifically, onSiteError().  It makes much more sense to me to
handle errors within a particular site if at all possible, so that you can
keep the pretty error page looking consistent with the site that threw the
exception.

So, the question is: What steps do I need to take to utilize onSiteError()
with Mura?

I am pretty certain the first two steps are:

   1. Set debuggingenabled=false.
   2. Create a pretty error page, and *un*check the Include in site
   navigation? setting.
   3. Add an onSiteError() method to /{site id}/includes/eventHandler.cfc

Beyond that, I have no clue.

What arguments get passed to the onSiteError() method?

How should I redirect to the pretty error page?  Is it as simple as
cflocation url=/my-pretty-error-page/ /?

If this has stuff has already been written up somewhere and I just have not
managed to find it, please link me to it.

Thank you in advance!


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335648
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: How to dispaly flash video in coldfusion pages

2010-07-22 Thread Rick Mason

Paul,

Sadly Flowplayer doesn't support IE-6 and IE-7.  No matter how we may feel
about those browsers that's a non-starter for us, they're too much of our
traffic.  For a commercial product to simply say to those users to select a
'sane' browser is rude as well.  But it did look nice though - sigh.


Rick Mason

On Thu, Jul 22, 2010 at 11:11 AM, Paul Alkema
paulalkemadesi...@gmail.comwrote:


 Hi Kamru,
 This is really more of a web development issue than a ColdFusion issue as
 ColdFusion. It shouldn't matter what ColdFusion server your on. This can be
 done multiple ways, you could create a player in flash or use a flash
 template however I would check our flowplayer, it's a really robust flash
 movie player that's built in jQuery. Very cool.

 http://flowplayer.org/index.html

 Paul Alkema
 http://paulalkema.com
 t: @PaulAlkema

 -Original Message-
 From: Kamru Miah [mailto:k.m...@csl.gov.uk]
 Sent: Thursday, July 22, 2010 10:58 AM
 To: cf-talk
 Subject: How to dispaly flash video in coldfusion pages


 Hello,

 Could some please advise me if it's possible to play MPEG video files on
 Coldfusion 8 pages, perhaps after conversion to Shock Wave Flash (.swf)
 files? It would be nice to have the user controls like Youtube as well!

 Thanks in anticipation.



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335649
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: How to dispaly flash video in coldfusion pages

2010-07-22 Thread Michael Grant


  For a commercial product to simply say to those users to select a 'sane'
 browser is rude as well.



He's just saying what we're all thinking.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335650
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cfinput 'datefield' always aligns to left?

2010-07-22 Thread Michael Grant

Can you post the compiled source for the same snippet?


On Thu, Jul 22, 2010 at 2:02 PM, Jim Eisenhauer eisenha...@gmail.comwrote:


 Please help.

 I cannot get the input field to center in a table cell using 'td
 align=center' or using CSS.

 I haven't even been able to put something in front of the field in the same
 cell either without the field forcing itself onto a new line and aligning
 itself left.

 Here is a snippet of code...

 td align=rightstrongDate Authorized/strong/td
td colspan=3 align=center
cfinput
type=datefield
name=DT_AUTH
value=#DA#
mask=mm/dd/
validate=date
disabled=#disabled#/td



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335651
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adobe no longer part of the OpenCFML committee

2010-07-22 Thread Gerald Guido

 and certainly not organized enough to be innovative.

I guess that all depends on your definition of innovative. I have been
following the OBD mailing list and (off the top of my head) could any of
these be defined as innovative?

Porting OBD to run on Google App Engine?
Or support for Amazon Web services:  S3 (well before Adobe did), SimpleDB
and Simple Queue Service?
Or rendering dynamic CFML code?
Or a spell checker plugin?

G?

On Thu, Jul 22, 2010 at 2:07 PM, Larry Lyons larrycly...@gmail.com wrote:


  My thoughts -
 
 [SNIP]
  If the OpenBD team claims it is not organized enough to submit ideas
  then they are most likely not organized enough to release a new
  version of OpenBD and certainly not organized enough to be innovative.
  This is unfortunate since the commercial version of BlueDragon used to
  be innovative.
 


-- 
Gerald Guido
http://www.myinternetisbroken.com

Wait. We can't stop here. This is bat country.
-- HST


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335652
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Salesforce CFC?

2010-07-22 Thread Billy Cox

Hey Brad. I have tried more than once to contact Tom de Manincor through the
riaforge.com site, and the contact mechanism seemed to be broken. I tried
commenting on his blog as well, but it didn't get any indication that he
ever got my comments/questions.

btw, I saw you at the Great Mall last night. You looked busy though so I
didn't scream and wave.


-Billy

On Thu, Jul 22, 2010 at 12:08 PM, Brad Wood b...@bradwood.com wrote:


 riaforge.com should give you a way to submit a ticket and contact the
 project owner so he can include your updates into the main project.

 ~Brad

 - Original Message -
 From: Billy Cox bi...@oldworldspices.com
 To: cf-talk cf-talk@houseoffusion.com
 Sent: Thursday, July 22, 2010 10:40 AM
 Subject: Re: Salesforce CFC?


 
  For the benefit of anyone else who wants to use Salesforce.CFC with the
  Salesforce API v.19...
 
  There are only a handful of changes needed, the most consequential of
  which
  are a couple of lines in the parseQueryXML function code. Salesforce API
  v.19 returns XML a bit differently than version 11.1. I have tested the
  Login, QueryObject and SaveObject functions and all of their child
  functions.
 
  I would be happy to share the updated cfc if you want to email me
  off-list.
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335653
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adobe no longer part of the OpenCFML committee

2010-07-22 Thread Adam Haskell

On Thu, Jul 22, 2010 at 12:14 PM, Wil Genovese jugg...@trunkful.com wrote:


 If the OpenBD team claims it is not organized enough to submit ideas then
 they are most likely not organized enough to release a new version of OpenBD
 and certainly not organized enough to be innovative. This is unfortunate
 since the commercial version of BlueDragon used to be innovative.


Could I see a link where this is claimed, by an OpenBD person and not
purported by someone else? I'd just like to understand where this is coming
from since to date we have had timely releases and are delivering point
releases every few months (we shoot for 6ish months per release). I'm open
to criticism and would be more than interested in your, or other's, feedback
but blindly saying OpenBD is not organized is libelous.


Adam


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335654
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adobe no longer part of the OpenCFML committee

2010-07-22 Thread Adam Haskell

I don't think it is that disappointing honestly. I do think we need to
continue, as engine developers, to have a dialogue with each other.There
doesn't need to be this ceremonious board to do it. We have a discussion
group for conventional wisdom and things that need vetted could go there. We
also have phones and email where we can collaborate, it is on the engine
developers to be nice and courteous. If we're thinking about adding a tag or
a feature we need to step up and reach out to the other engine makers and
talk to them and get some feedback. That's easy for me to say being in the
completely open source camp (even for us we could improve on this though) I
understand if Adobe is working on something they don't want to get out too
far they'd rather not talk to other engines. If an engine is looking at
adding cfjavascript but not going to follow the conventional syntax OpenBD
established a little phone call is a good idea. Same thing when OpenBD looks
to implement CF9 features we should be following what has been set forth.

Adam


On Thu, Jul 22, 2010 at 11:50 AM, Judah McAuley ju...@wiredotter.comwrote:


 I find this to be a very disappointing development. I have no insight
 into the politics behind this but I can definitely say that we are a
 poorer community for this choice.

 http://www.adrocknaphobia.com/post.cfm/adobe-no-longer-part-of-opencfml

 I looked forward to being able to write applications to a spec and
 have some confidence that they would run on multiple engines. It looks
 like that will continue to be a dream.

 Judah



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335655
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


COM Objects and Variant Data Types

2010-07-22 Thread Casey Kennedy

We're using a 3rd party COM object to talk with our accounting system. The 
problem is that one of the input parameters is a Variant. When we pass an empty 
string, nothing happens, when we pass a 2 dimensional array, it says that java 
can't convert it to a string...

Any ideas? 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335656
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adobe no longer part of the OpenCFML committee

2010-07-22 Thread Gerald Guido

Or support for Amazon Web services:  S3 (well before Adobe did),

My bad. Before I get a public tongue lashing...  I got Railo mixed up with
OBD with the S3 support.

G!


On Thu, Jul 22, 2010 at 3:04 PM, Gerald Guido gerald.gu...@gmail.comwrote:

  and certainly not organized enough to be innovative.

 I guess that all depends on your definition of innovative. I have been
 following the OBD mailing list and (off the top of my head) could any of
 these be defined as innovative?

 Porting OBD to run on Google App Engine?
 Or support for Amazon Web services:  S3 (well before Adobe did), SimpleDB
 and Simple Queue Service?
 Or rendering dynamic CFML code?
 Or a spell checker plugin?

 G?




 --
 Gerald Guido
 http://www.myinternetisbroken.com

 Wait. We can't stop here. This is bat country.
 -- HST




-- 
Gerald Guido
http://www.myinternetisbroken.com

Wait. We can't stop here. This is bat country.
-- HST


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335657
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adobe no longer part of the OpenCFML committee

2010-07-22 Thread Judah McAuley

Sean made a distinction about core language functionality versus
add-ons and I think that I should have made that distinction more
strongly myself. His example of the for-in loop for arrays is a good
one. I'm writing a lot of code today looping over arrays of objects.
I'm using the for(i=1; i = ArrayLen(myArray); i++) syntax because i
know it works everywhere. I would much rather use a for-in loop but
due to the changes that Adobe made in 9.0.1, Railo and Adobe are
temporarily incompatible. Railo has made changes to match
compatibility but it will be a bit before it makes its way to the
stable release. And I have no idea if OpenBD supports that syntax at
all.

Another example would be transactions. I wanted to write a transaction
in cfscript today. I know that CF9 supports it. I don't know if Railo
or OpenBD does or if they do, whether there are any major differences.

If a developer comes in, downloads the current release of Adobe
Coldfusion, Railo or OpenBD and then finds some random tutorials and
examples of CFML on the web, I think that all the core language
features should just work. There will be thinks like cfldap, S3
integration and such that won't and I'm ok with that. But I do think
that a core, coordinated, language is not only key to helping existing
developers be more productive, it is also key to attracting and
retaining new developers.

Cheers,
Judah

On Thu, Jul 22, 2010 at 12:17 PM, Adam Haskell a.hask...@gmail.com wrote:

 I don't think it is that disappointing honestly. I do think we need to
 continue, as engine developers, to have a dialogue with each other.There
 doesn't need to be this ceremonious board to do it. We have a discussion
 group for conventional wisdom and things that need vetted could go there. We
 also have phones and email where we can collaborate, it is on the engine
 developers to be nice and courteous. If we're thinking about adding a tag or
 a feature we need to step up and reach out to the other engine makers and
 talk to them and get some feedback. That's easy for me to say being in the
 completely open source camp (even for us we could improve on this though) I
 understand if Adobe is working on something they don't want to get out too
 far they'd rather not talk to other engines. If an engine is looking at
 adding cfjavascript but not going to follow the conventional syntax OpenBD
 established a little phone call is a good idea. Same thing when OpenBD looks
 to implement CF9 features we should be following what has been set forth.

 Adam


 On Thu, Jul 22, 2010 at 11:50 AM, Judah McAuley ju...@wiredotter.comwrote:


 I find this to be a very disappointing development. I have no insight
 into the politics behind this but I can definitely say that we are a
 poorer community for this choice.

 http://www.adrocknaphobia.com/post.cfm/adobe-no-longer-part-of-opencfml

 I looked forward to being able to write applications to a spec and
 have some confidence that they would run on multiple engines. It looks
 like that will continue to be a dream.

 Judah



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335658
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: coverting string to a numeric value

2010-07-22 Thread Jeff Gladnick

I think you want the val() function

so val (123) would return 123

val(jeff) would return 0 (all non numerics return 0)

 Hi All-
 
 is there a way I can convert a string to number in coldfusion. I could 
 not see any related functions to do this?
 
 Thanks 


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335659
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adobe no longer part of the OpenCFML committee

2010-07-22 Thread denstar

There doesn't need to be a big ceremonious board, but there does need
to be an official language spec, IMHO.

randomness
Maybe the cfdictionary project could be fleshed out... we could have a
nice list of what works like what with what... a single point of
reference type of deal...

Eh.  It's a personal goal at least, but I have oodles of those.  :)

:Den

-- 
Grief is only the memory of widowed affections.
James Martineau

On Thu, Jul 22, 2010 at 1:17 PM, Adam Haskell wrote:

 I don't think it is that disappointing honestly. I do think we need to
 continue, as engine developers, to have a dialogue with each other.There
 doesn't need to be this ceremonious board to do it. We have a discussion
 group for conventional wisdom and things that need vetted could go there. We
 also have phones and email where we can collaborate, it is on the engine
 developers to be nice and courteous. If we're thinking about adding a tag or
 a feature we need to step up and reach out to the other engine makers and
 talk to them and get some feedback. That's easy for me to say being in the
 completely open source camp (even for us we could improve on this though) I
 understand if Adobe is working on something they don't want to get out too
 far they'd rather not talk to other engines. If an engine is looking at
 adding cfjavascript but not going to follow the conventional syntax OpenBD
 established a little phone call is a good idea. Same thing when OpenBD looks
 to implement CF9 features we should be following what has been set forth.

 Adam


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335660
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adobe no longer part of the OpenCFML committee

2010-07-22 Thread denstar

Er, cfmldictionary?  ;-)

:den

-- 
Religion is no more possible without prayer than poetry without
language, or music without atmosphere.
James Martineau

On Thu, Jul 22, 2010 at 1:39 PM, denstar wrote:
 There doesn't need to be a big ceremonious board, but there does need
 to be an official language spec, IMHO.

 randomness
 Maybe the cfdictionary project could be fleshed out... we could have a
 nice list of what works like what with what... a single point of
 reference type of deal...

 Eh.  It's a personal goal at least, but I have oodles of those.  :)

 :D

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335661
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: How to dispaly flash video in coldfusion pages

2010-07-22 Thread Maureen

I'm with Dave on Longtail.  I've used it in a variety of sites running
on all kinds of tech..CF, PHP, Ruby..etc..with no problems.  It's also
easy to skin and very affordable.
http://www.longtailvideo.com/

On Thu, Jul 22, 2010 at 11:48 AM, Rick Mason rhma...@gmail.com wrote:

 Paul,

 Sadly Flowplayer doesn't support IE-6 and IE-7.  No matter how we may feel
 about those browsers that's a non-starter for us, they're too much of our
 traffic.  For a commercial product to simply say to those users to select a
 'sane' browser is rude as well.  But it did look nice though - si

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335662
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adobe no longer part of the OpenCFML committee

2010-07-22 Thread Maureen

Link?

On Thu, Jul 22, 2010 at 12:40 PM, denstar valliants...@gmail.com wrote:

 Er, cfmldictionary?  ;-

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335663
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adobe no longer part of the OpenCFML committee

2010-07-22 Thread denstar

http://github.com/denuno/cfml.dictionary

It's just a java project right now, but the plan is to leverage it to
power a CFML application similar to quickdocs, etc., but with
different engines in mind, blah blah blah.

CFEclipse was the motivation for this...  I'm in the process of
switching the way dictionaries are handled to a more flexible and
collaborative type of deal.  Pull updates from a URL, add/update/share
dictionaries easily, etc..

It's a shame that a squatter appears to hold cfml dot org, it would be
really nifty to have dictionaries.cfml.org, etc..

The CFML application/website is a bit of a pipe dream at this point,
but I'm actively working on the actual java library for interacting
with CFML dictionaries, which is more pressing for me ATM.

I really need to just bite the bullet and get a VPS somewhere,
otherwise the CFML applications will continue to be dreams.  Maybe
I'll try cfmldeveloper.com for now.  :)

Yes, I can do it all-- I'm special like that.  HOOAH! =)p

Should be done by about 2018.

:Den

-- 
A specter is haunting Europe - the specter of communism.
Karl Marx

On Thu, Jul 22, 2010 at 2:22 PM, Maureen wrote:

 Link?

 On Thu, Jul 22, 2010 at 12:40 PM, denstar wrote:

 Er, cfmldictionary?  ;

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335664
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adobe no longer part of the OpenCFML committee

2010-07-22 Thread denstar

Oh yeah, and it will allow editing of tags online.  That part will
probably come before anything else, and materialize pretty soon, as
I'm s tired of wanking with the dictionaries by hand, so to
speak.

Yeah, I know last sentence sounds funny if you're across the pond.
Byte me.  :)

-- 
Anyone who knows anything of history knows that great social changes
are impossible without feminine upheaval. Social progress can be
measured exactly by the social position of the fair sex, the ugly ones
included.
Karl Marx

On Thu, Jul 22, 2010 at 2:46 PM, denstar valliants...@gmail.com wrote:
 http://github.com/denuno/cfml.dictionary

 It's just a java project right now, but the plan is to leverage it to
 power a CFML application similar to quickdocs, etc., but with
 different engines in mind, blah blah blah.

 CFEclipse was the motivation for this...  I'm in the process of
 switching the way dictionaries are handled to a more flexible and
 collaborative type of deal.  Pull updates from a URL, add/update/share
 dictionaries easily, etc..

 It's a shame that a squatter appears to hold cfml dot org, it would be
 really nifty to have dictionaries.cfml.org, etc..

 The CFML application/website is a bit of a pipe dream at this point,
 but I'm actively working on the actual java library for interacting
 with CFML dictionaries, which is more pressing for me ATM.

 I really need to just bite the bullet and get a VPS somewhere,
 otherwise the CFML applications will continue to be dreams.  Maybe
 I'll try cfmldeveloper.com for now.  :)

 Yes, I can do it all-- I'm special like that.  HOOAH! =)p

 Should be done by about 2018.



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335665
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: How to dispaly flash video in coldfusion pages

2010-07-22 Thread Jason Fisher

+1 for Longtail.  Yes, it's commercially licensed, but it's not 
expensive and the feature set continues to grow.  We use it on both CF 
and .NET sites, because it just runs anywhere that uses JavaScript; it's 
not platform-dependent.


On 7/22/2010 4:02 PM, Maureen wrote:
 I'm with Dave on Longtail.  I've used it in a variety of sites running
 on all kinds of tech..CF, PHP, Ruby..etc..with no problems.  It's also
 easy to skin and very affordable.
 http://www.longtailvideo.com/

 On Thu, Jul 22, 2010 at 11:48 AM, Rick Masonrhma...@gmail.com  wrote:

 Paul,

 Sadly Flowplayer doesn't support IE-6 and IE-7.  No matter how we may feel
 about those browsers that's a non-starter for us, they're too much of our
 traffic.  For a commercial product to simply say to those users to select a
 'sane' browser is rude as well.  But it did look nice though - si
  
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335666
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adobe no longer part of the OpenCFML committee

2010-07-22 Thread Sean Corfield

On Thu, Jul 22, 2010 at 12:29 PM, Judah McAuley ju...@wiredotter.com wrote:
 I'm using the for(i=1; i = ArrayLen(myArray); i++) syntax because i
 know it works everywhere. I would much rather use a for-in loop but
 due to the changes that Adobe made in 9.0.1, Railo and Adobe are
 temporarily incompatible. Railo has made changes to match
 compatibility but it will be a bit before it makes its way to the
 stable release.

True, it was adjusted to match the OpenCFML spec / ACF9.0.1 in
3.1.2.016 (we're at 3.1.2.018 now) and will be part of the stable 3.2
release 'soon'.

 Another example would be transactions. I wanted to write a transaction
 in cfscript today. I know that CF9 supports it. I don't know if Railo
 or OpenBD does or if they do, whether there are any major differences.

According to JIRA, Railo added cfscript transaction support in 3.1.2.014:

https://jira.jboss.org/browse/RAILO-749

but nested transactions are not yet supported:

https://jira.jboss.org/browse/RAILO-689
-- 
Sean A Corfield -- (904) 302-SEAN
Railo Technologies, Inc. -- http://getrailo.com/
An Architect's View -- http://corfield.org/

If you're not annoying somebody, you're not really alive.
-- Margaret Atwood

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335667
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adobe no longer part of the OpenCFML committee

2010-07-22 Thread Sean Corfield

On Thu, Jul 22, 2010 at 12:20 PM, Gerald Guido gerald.gu...@gmail.com wrote:
Or support for Amazon Web services:  S3 (well before Adobe did),

 My bad. Before I get a public tongue lashing...  I got Railo mixed up with
 OBD with the S3 support.

Yup, Railo introduced the concept of resources quite a long time ago
(in Railo 2.0, back in 2007) that allows standard file tags to work
with ram, S3, ZIP files, FTP sites and even database tables.
-- 
Sean A Corfield -- (904) 302-SEAN
Railo Technologies, Inc. -- http://getrailo.com/
An Architect's View -- http://corfield.org/

If you're not annoying somebody, you're not really alive.
-- Margaret Atwo

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335668
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Extracting part of a string

2010-07-22 Thread James Holmes

Love it.

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 23 July 2010 00:02, Bobby Hartsfield bo...@acoderslife.com wrote:

 Can it be named CF_FreeExtract?

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335669
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: How to dispaly flash video in coldfusion pages

2010-07-22 Thread Maureen

There is also an open source version for non-commercial sites.

On Thu, Jul 22, 2010 at 2:02 PM, Jason Fisher ja...@wanax.com wrote:

 +1 for Longtail.  Yes, it's commercially licensed, but it's not
 expensive and the feature set continues to grow.  We use it on both CF
 and .NET sites, because it just runs anywhere that uses JavaScript; it's
 not platform-dependen

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335670
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF9.0.1 Update and IIS7

2010-07-22 Thread Aaron Neff

Hi Matt,

I understand you've resolved the issue. I would just like to add my notes here, 
from a similar experience, in case it helps anyone. I did the following steps 
(w/ IIS6 Compatibility Options re-installed, and after 1st click of wsconfig's 
Remove button threw the Error deleting IIS application extensions error):

1. Clicked Remove button a 2nd time (this removed the (IIS):All entry from 
wsconfig tool)
2. Used wsconfig tool to config(add)-then-unconfig(remove) any site which still 
contained handler mappings not removed in step #1 (to resolve the Error 
deleting IIS application extensions error)
3. Re-uninstalled the IIS6 Compatibility Options
4. wsconfig tool could then successfully config IIS for 9.0.1

Step #2 resolved the issue.

I verified by:
5. Uninstalled CF
6. Re-installed IIS6 Compat Options
7. Installed CF9 (selecting option in install wizard to config all IIS sites)
8. wsconfig tool could then successfully unconfig IIS (no more Error deleting 
IIS application extensions error)
9. ..continued on w/ re-uninstalling the IIS6 Compatibility Options, installing 
9.0.1 updater, then using wsconfig tool to successfully config IIS for 9.0.1

That's from memory.. but I do know step #2 helped.

Thanks!,
-Aaron Neff

OK, that is what I thought, and that is what I did.  However, when I attempt
to remove the site via the wsconfig console, I receive the error message
mentioned in the docs:

Error deleting IIS application extensions
.jsp,.jws,.cfm,.cfml,.cfc,.cfr,.cfswf,.hbmxml from web site Any (X)

So, I cannot delete the damn site from wsconfig, nor can I re-configure it
in wsconfig, because it is still showing as already being configured.

There _has_ to be a way for me to get this fixed, right? 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335671
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cfinput 'datefield' always aligns to left?

2010-07-22 Thread Azadi Saryev

 are you using cf8 or cf9?
iirc, the css classes you need to override are version-specific...

Azadi

On 22/07/2010 14:02, Jim Eisenhauer wrote:
 Please help.

 I cannot get the input field to center in a table cell using 'td 
 align=center' or using CSS.

 I haven't even been able to put something in front of the field in the same 
 cell either without the field forcing itself onto a new line and aligning 
 itself left. 

 Here is a snippet of code...

 td align=rightstrongDate Authorized/strong/td
   td colspan=3 align=center
   cfinput
   type=datefield
   name=DT_AUTH
   value=#DA#
   mask=mm/dd/
   validate=date
   disabled=#disabled#/td



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335672
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm