RE: Anchors and CFLOCATION

2005-05-03 Thread Pascal Peters
Use firefox and liveHttpHeaders to track them. -Original Message- From: Burns, John D [mailto:[EMAIL PROTECTED] Sent: 02 May 2005 22:45 To: CF-Talk Subject: RE: Anchors and CFLOCATION I haven't traced the headers yet. That was the next step I was going to follow. What would you

RE: Little OT but know one else to ask...

2005-05-03 Thread RADEMAKERS Tanguy
oops - wrong thread! /t -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, May 02, 2005 11:19 PM To: CF-Talk Subject: RE: Little OT but know one else to ask... Thanks, but I'm not sure that this pertains to my question. I was asking about the

CF Error weirdness

2005-05-03 Thread Michael Bramwell
This is a strange and frustrating problem, I have successfully implemented cferror on our linux staging server, the problem is that the exact same code seems to be getting completely ignored on the clients linux staging server. What I am wondering is if there are any settings within cfide admin

RE: CF Error weirdness

2005-05-03 Thread RADEMAKERS Tanguy
Mike, Do they perchance have a site wide eror handler defined in the Settings section? /t -Original Message- From: Michael Bramwell [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 03, 2005 11:25 AM To: CF-Talk Subject: CF Error weirdness This is a strange and frustrating problem, I have

RE: OOP development tools

2005-05-03 Thread Calvin Ward
I agree, make sure you express that one here: http://www.macromedia.com/go/wish/ I would think your best bet is to put it under Dreamweaver. Thanks, Calvin -Original Message- From: Russ [mailto:[EMAIL PROTECTED] Sent: Monday, May 02, 2005 7:57 PM To: CF-Talk Subject: RE: OOP

RE: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread Calvin Ward
I did see the promo badge for CFMX 7 during release time, but what was disappointing was that CFMX 7 didn't get the full FMA for the week of release, or even the day of release. AFAIK, nothing else was released or 'new' at the same time. The full ads I rotated through were for things that had ads

cfeclipse and cfmx7

2005-05-03 Thread Phillip P Rutherford II
any chance there will be an update that handles v7.0 tag insights, etc.. ? -- -=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ Triangle Area ColdFusion User Group ]-= -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://tacfug.org ]-= ~| Find

RE: cfeclipse and cfmx7

2005-05-03 Thread Calvin Ward
That'd be nice! I've noticed that the cfeclipse group has been quiet lately... - Calvin -Original Message- From: Phillip P Rutherford II [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 03, 2005 8:04 AM To: CF-Talk Subject: cfeclipse and cfmx7 any chance there will be an update that

SOT: DW error msgs

2005-05-03 Thread Cutter (CF-Talk)
Can anyone tell me why I'm suddenly getting errors in DW anytime I try to paste something? While executine onLoad in PaseFireworksHTML.htm, the following JavaScript error(s) occurred: In file PasteFireworksHTML; ReferenceError: initialize is not defined I get that error twice every time I try

level 1, level 2

2005-05-03 Thread Daniel Kessler
I have a directory on my site which is basically a site in itself. There, I am building a template. In this template is a header with images and links. The problem is that the path to those images and links changes depending on whether the file the header is in is down one level or two or

Re: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread Adrocknaphobia
Well put. A rotating banner on MM's site is probably the least effective marketing they could have for CF. Does everyone already forget the grueling world tour they sent Ben on before the release of 7. I don't think I've ever seen a tour like that for any other MM product before. The sky isn't

Re: New Development Libraries

2005-05-03 Thread Adrocknaphobia
Not to leave you hanging Jim, but I plan to find some time to read everything you've got on DP. Don't let the silence discourage you. (I've assimilated many of your coding practices you've shared in the past few years into my baseline). Did you post the announcement to cf-dev? -Adam On 5/2/05,

RE: level 1, level 2

2005-05-03 Thread Pascal Peters
/images/ ?? or define a variable with the path to images. Pascal -Original Message- From: Daniel Kessler [mailto:[EMAIL PROTECTED] Sent: 03 May 2005 14:57 To: CF-Talk Subject: level 1, level 2 I have a directory on my site which is basically a site in itself. There, I am

Options to use instead of mappings?

2005-05-03 Thread Rick Root
I have pretty much consistently used mappings in my applications to include things from the document root, regardless of where the file being accessed is located. I often do it for UDFs and template files. Ie, cfinclude template=/rickroot/udf.cfm or cfinclude template=/rickroot/above.cfm

Re: level 1, level 2

2005-05-03 Thread Jeff Small
Use Dreamweaver Templates? They'll automatically resolve any paths and you only need to create one master template. Then just save it wherever you want, and let Dreamweaver take care of all the hassle of keeping up with whatever directories something resides in. We have several sites built the

RE: level 1, level 2

2005-05-03 Thread daniel kessler
Wouldn't /images/ refer to the images directory on the root level? This is a directory within and the whole site is there. In what way would I define a variable for a path to the images. It would seem to me that the variable would have to change just like the header. Can you give me a small

Re: level 1, level 2

2005-05-03 Thread daniel kessler
Does this work well with cfincluded files too? Use Dreamweaver Templates? They'll automatically resolve any paths and you only need to create one master template. Then just save it wherever you want, and let Dreamweaver take care of all the hassle of keeping up with whatever directories

Re: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread Alex Sherwood
Sean Corfield wrote: On 5/2/05, Alex Sherwood [EMAIL PROTECTED] wrote: When CFMX7 was launched, I queried as to why the only marketing on MM's site was a small picture and some text in the center Products column. I just spoke with the web producer responsible for managing

RE: level 1, level 2

2005-05-03 Thread Pascal Peters
In the application.cfm, you can set a variable that holds the absolute path to the image folder (or the path starting from the root). Then use that variable when you need the path to an image. I usually create a structure that holds parameters that depend on the server. Something like:

Re: level 1, level 2

2005-05-03 Thread Jeff Small
Does this work well with cfincluded files too? Heck yeah. It's tight. Check this out... http://www.macromedia.com/devnet/mx/dreamweaver/templates.html We're finding it's slowly replacing a LOT of overhead work that's just completely needless now. What were convoluted workarounds are now just

Re: level 1, level 2

2005-05-03 Thread Jeff Small
Does this work well with cfincluded files too? In particular, check this specific article out. http://www.macromedia.com/devnet/mx/dreamweaver/articles/ssi_templates.html It uses navigational includes as the basis of the tutorial...to quote: Wouldn't it be nice if you had several includes,

Re: SOT: DW error msgs

2005-05-03 Thread S . Isaac Dealey
Dreamweaver allows you to create functionality by providing xml and html documents you can modify which include DOM methods to accomplish the various tasks... The structure of the menus for instance is in an XML file and then each menu item has an associated html document containing the method to

cfform problems with IE on Mac

2005-05-03 Thread Matt Abdou
We're developing an application that uses flash-format cfforms. It looks great on IE on Windows, Firefox on Windows and Safari on Mac, but not IE on Mac. For some reason with IE on the Mac (Panther 10.9) the server generates the swf and sends the source to IE exactly the same as Firefox and

Re: Combining verity results with database query

2005-05-03 Thread George Abraham
It's that last combination that is not working for me. I try to refer to the results from the verity resultset joined on the results from the database (based on a PrimaryID) and I get an error that the SQL is bad. Has anybody ever done this? Here is the SQL code: SELECT dbResults.*, vr.Score FROM

Re: New Development Libraries

2005-05-03 Thread S . Isaac Dealey
On 5/2/05, Jim Davis [EMAIL PROTECTED] wrote: Thank you for making these libraries available! I hope to download your libraries, look at the example apps and try out your libraries very soon. Your licensing looks like I can use your libraries in commercial applications (i.e.; no GPL

Re: cfeclipse and cfmx7

2005-05-03 Thread Sean Corfield
On 5/3/05, Calvin Ward [EMAIL PROTECTED] wrote: I've noticed that the cfeclipse group has been quiet lately... That's because they all have day jobs too... There's been a lot of work on the dictionary machinery (which is what drives tag insight) in preparation for supporting more features and

RE: New Development Libraries

2005-05-03 Thread Jim Davis
-Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 03, 2005 9:59 AM To: CF-Talk Subject: Re: New Development Libraries For reference, the Lesser GPL (L-GPL) is not limited to non-commercial projects. You can sell products using the L-GPL all day

Re: cfeclipse and cfmx7

2005-05-03 Thread Mark Drew
I concur with Sean Basically all the team members have had some other projects apart from day jobs I have been doing a freelance project that has been sapping my time.. somewhere in between I try to fit my so-called-life There is work being done and worry you not, we shall come out with some

Re: Combining verity results with database query

2005-05-03 Thread George Abraham
I toyed around with this code for some time. It is almost as if it does not see that second table (or resultset) which is being joined. For example, if this is the code: SELECT PrimaryID, Score FROM dbResults dbr INNER JOIN verityResults vr ON vr.key = dbr.PrimaryID ORDER BY vr.Score then

RE: Combining verity results with database query

2005-05-03 Thread Pascal Peters
Did you try SELECT dbr.PrimaryID AS PrimaryID, vr.Score AS Score ... Pascal -Original Message- From: George Abraham [mailto:[EMAIL PROTECTED] Sent: 03 May 2005 16:34 To: CF-Talk Subject: Re: Combining verity results with database query I toyed around with this code for some time.

Re: Combining verity results with database query

2005-05-03 Thread George Abraham
Yep, tried that too. Another thing I just noticed is that it does not like the dot notation as in dbr.PrimaryID or whatever. It gives this error: ERROR Query Manipulation Error Code = 0 Invalid SQL SQL = SELECT dbr.* FROM dbResults dbr INNER JOIN verityResults vr ON vr.key=dbr.PrimaryID Data

RE: cfeclipse and cfmx7

2005-05-03 Thread Calvin Ward
Definitely not worried, just commenting :) -Original Message- From: Mark Drew [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 03, 2005 10:23 AM To: CF-Talk Subject: Re: cfeclipse and cfmx7 I concur with Sean Basically all the team members have had some other projects apart from day jobs I

RE: Combining verity results with database query

2005-05-03 Thread Pascal Peters
And did you try it without table aliases and with the join in the where clause: SELECT dbResults.primaryID AS primaryID, verityResults.score AS score FROM dbResults, verityResults WHERE dbResults.primaryID = verityResults.key ORDER BY verityResults.score DESC This has definitely worked for me in

Re: Options to use instead of mappings?

2005-05-03 Thread Douglas Knudsen
relative paths? Where you have to have an absolute path, you could have a var storing teh root pat, say appliction.rootdir. DK On 5/3/05, Rick Root [EMAIL PROTECTED] wrote: I have pretty much consistently used mappings in my applications to include things from the document root, regardless

Re: Combining verity results with database query

2005-05-03 Thread George Abraham
Well, My workaround for the time being is to use the very excellent queryMerge UDF from cflib.org. Leads to some overhead, but what the hey! George On 5/3/05, George Abraham [EMAIL PROTECTED] wrote: Yep, tried that too. Another thing I just noticed is that it does not like the dot notation as

Ingres stored-proc/query column rename in CFMX7

2005-05-03 Thread Peter Boughton
Hi, I've got a problem with the following function, which seems to have been caused by upgrading to CFMX7 - it is now only returning an empty query with a single COL_NAMES column, rather than a proper set of data. The theQuery variable is the result of an Ingres stored procedure. The purpose of

Re: Combining verity results with database query

2005-05-03 Thread George Abraham
My God, that actually works!! Swwwet! But what the hell does that mean is happening with the query translation in the cfquery? Ah well, I'll use this now. Thanks Pascal. George On 5/3/05, Pascal Peters [EMAIL PROTECTED] wrote: And did you try it without table aliases and with the

detecting back button for page refresh

2005-05-03 Thread Protoculture
Hi All. I would like to detect that the user has clicked the back button. I need to do this in order to get the last value entered in the form. ( currently using session variables to recall the last item searched for ). However as you can guess, by pressing the back button you do not get the

HL7 cfc or cfx

2005-05-03 Thread David Brown
Does anyone know of an open source HL7 reader(parser) and sender. Either written in cfc or cfx that would run on cfmx 7.0? David ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start

Aggregating Errors

2005-05-03 Thread Ian Skinner
Can anybody give me pointers on a simple method to use cftry/cfcatch and cferror functionality to aggregate multiple errors into a single error display? This is for a user validation type function. I have several error blocks such as these. cfif not len(trim(form.service_Code)) AND not

Re: Options to use instead of mappings?

2005-05-03 Thread Rick Root
Douglas Knudsen wrote: relative paths? Where you have to have an absolute path, you could have a var storing teh root pat, say appliction.rootdir. I already have a variable storing the document root. But you can't use CFINCLUDE with anything other than a logical path. CFINCLUDE only looks

Re: Options to use instead of mappings?

2005-05-03 Thread Al Everett
On 5/3/05, Douglas Knudsen [EMAIL PROTECTED] wrote: relative paths? Where you have to have an absolute path, you could have a var storing teh root pat, say appliction.rootdir. I've had some good success with that and using a UDF called GetRelative. As long as the basic root is known you don't

Re: Options to use instead of mappings?

2005-05-03 Thread Bryan Stevenson
I already have a variable storing the document root. But you can't use CFINCLUDE with anything other than a logical path. CFINCLUDE only looks in the current directory or a specified mapped directory. - Rick Ahhh...but Rick...with the site root path and the current file's path

Re: Triple DES pre cfmx

2005-05-03 Thread Joshua O'Connor-Rose
This is actualy on a CF 5 server. But I will look into using the javax.crypt I may be able to do something with it. Thanks for the help -Joshua O'Connor-Rose -All is Good I haven't used cfx_crypto, but, since you're using CFMX 6.1, could I suggest you to use a Java class? You might wanna

cfform problems with IE on Mac

2005-05-03 Thread Protoculture
is Javascript turned off? ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it for free with

RE: Aggregating Errors

2005-05-03 Thread Steve Brownlee
There's no way around that if you use the CFERROR catch-all page. As soon as CF sees an error, it will pass that specific reference to the error page. You cannot control what information it receives. Why not just have an array in request (e.g. Request.PageErrors) that you add each exception to

RE: level 1, level 2

2005-05-03 Thread Rebecca Wells
I use a similar approach except that we keep the directory structure for our applications the same on the prod and dev server, then use CGI.Server_Name in the app_server.cfm file to make the request vars work on any server. In the application.cfm, you can set a variable that holds the absolute

Re: cfeclipse and cfmx7

2005-05-03 Thread Adam Haskell
The tags defs are just stored in an XML file. Open it up and edit it :) No java knowledge needed. Also there is a user.xml file which is useful to add custom tags for insight. though you need to give them full names like cf_bob even though the directions say differently... Adam H On 5/3/05,

Re: cfform problems with IE on Mac

2005-05-03 Thread Matt Abdou
No, Javascript is enabled. We use Javascript on many of our applications. On 5/3/05, Protoculture [EMAIL PROTECTED] wrote: is Javascript turned off? ~| Logware (www.logware.us): a new and convenient web-based time tracking

detecting back button for page refresh

2005-05-03 Thread Rebecca Wells
You could try this: in the value field put cfif isDefined(session.whatever)cfoutput#session.whatever#/cfoutput/cfif Hi All. I would like to detect that the user has clicked the back button. I need to do this in order to get the last value entered in the form. ( currently using session

Re: cfform problems with IE on Mac

2005-05-03 Thread Rob
A bit on the side, but unless you have to support IE on the Mac I wouldn't waste my time - Microsoft has dropped development of IE on the Mac so its pretty much a dieing product. http://www.macworld.com/news/2003/06/13/explorer/ With options like Safari and Firefox it's really not a player

RE: level 1, level 2

2005-05-03 Thread David Critchley
I agree with Rebecca and Pascal, this would be a better approach. As for using dreamweaver, I generally prefer to look after my own paths to files rather than letting a program do that. For that matter I really don't like using WYSIWYG editors like dreamweaver or frontpage, just for that

Re: Options to use instead of mappings?

2005-05-03 Thread Rick Root
Bryan Stevenson wrote: I already have a variable storing the document root. But you can't use CFINCLUDE with anything other than a logical path. CFINCLUDE only looks in the current directory or a specified mapped directory. - Rick Ahhh...but Rick...with the site root path and the current

Re: Options to use instead of mappings?

2005-05-03 Thread Bryan Stevenson
Ah... my mistake. I don't have the document root, I have the applications document root, which may or may not be the same as the web server's document root. durn it all! Rick...it's the app doc root you need...right...everything is relative to the app doc root ;-) app doc root:

RE: level 1, level 2

2005-05-03 Thread daniel kessler
I don't *think* that I have access to the application.cfm file. I'm in a shared hosting environment where our OIT staff has given me a sub-domain to work from (hhp.umd.edu), so they probably have the access to the application.cfm file. I don't see one in my file structure. I agree with

RE: level 1, level 2

2005-05-03 Thread Rebecca Wells
Done right, there's usually no need for any cfif statement. All you need is something like this in the app_server.cfm file: !--- Example: www.houseoffusion.com --- cfset request.Domain = CGI.Server_Name !--- Example: http://www.houseoffusion.com/cf_lists/ --- cfset request.webroot =

RE: level 1, level 2

2005-05-03 Thread Adkins, Randy
You can always create one, right? -Original Message- From: daniel kessler [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 03, 2005 1:35 PM To: CF-Talk Subject: RE: level 1, level 2 I don't *think* that I have access to the application.cfm file. I'm in a shared hosting environment where

Re: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread Alex Sherwood
Get the shit out of your eyes, you simpleton. I did not say that I thought CF would die. On the contrary, I stated that I believed the MM would still invest time and resources into CFMX. After spending tons of $$$ on a WORLD TOUR, why the hell would Macromedia NOT highlight the release on

C# ASP.NET 2.0 for ColdFusion Developers course

2005-05-03 Thread Adam Churvis
After working with the new features and functionality available in ASP.NET 2.0, and after working with the new productivity features in Visual Studio 2005, David and I have decided to retool our intensive C# ASP.NET for ColdFusion Developers course for ASP.NET 2.0 and Visual Studio 2005. The new

Re: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread Alex Sherwood
You're good with the dramatics! *Danger*..ON NO! Give me a break! Hide! Put away your wireless keyboards! -- Sean wrote: note type=purely personal I get pretty ticked off by certain CFers feeling slighted every time that Flash or Breeze or whatever gets a mention but CF is not

RE: detecting back button for page refresh

2005-05-03 Thread RADEMAKERS Tanguy
There is no way to do this from the server side, as no page request is made (it is loaded from cache), so you will have to use javascript - here's an example from the web: -start--- HTML BODY ONLOAD=handleBackButton() FORM NAME=backtrack INPUT TYPE=HIDDEN NAME=isBack VALUE=No /FORM SCRIPT

RE: Little OT but know one else to ask...

2005-05-03 Thread djones
I believe CF is running as system. This doesn't work with ASP either though. David -Original Message- From: Jim Davis [mailto:[EMAIL PROTECTED] Sent: Monday, May 02, 2005 7:41 PM To: CF-Talk Subject: RE: Little OT but know one else to ask... -Original Message- From: [EMAIL

Re: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread Adrocknaphobia
Alex, You have further proved my original point with your incessant rants. This is not your blog. No one cares. It is such a minor issue, it's not worth taking about... yet again. This entire subject was covered in depth on release day. Search the archives and find solace that you are not the

Re: level 1, level 2

2005-05-03 Thread George Abraham
Well, Since you have access to the root of the subdomain, you can create your own application.cfm for your application. For that matter any directory can have its own application.cfm (though that would be an extreme use of it). If you are unfamiliar with the concept of using something like

Re: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread Bryan Stevenson
Honestly Alex...do you think banner ads are what sell CF...if so...think again ;-) 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: [EMAIL PROTECTED] web: www.electricedgesystems.com

Re: level 1, level 2

2005-05-03 Thread daniel kessler
You're right that I'm not familiar with it. We don't get alot of learning time that's not project time. Looks like that time is now then eh? Thanks! Well, Since you have access to the root of the subdomain, you can create your own application.cfm for your application. For that matter any

Re: cfeclipse and cfmx7

2005-05-03 Thread C. Hatton Humphrey
So anyone can add in and update the new tag defs? Is anyone working on this that is known? Hatton On 5/3/05, Adam Haskell [EMAIL PROTECTED] wrote: The tags defs are just stored in an XML file. Open it up and edit it :) No java knowledge needed. Also there is a user.xml file which is useful

RE: Aggregating Errors

2005-05-03 Thread Dawson, Michael
I do something similar in that I use a stand-alone CFC that holds any error information. Internally, it is stored in an array of structures. It's pretty simple, but it comes in very handy. I, as well as many others, ran into a similar solution with typed CFC instance variables, getters and

Re: Load Balancing/Filtering?

2005-05-03 Thread Nathan Strutz
Hey sorry to chime in days late on this thread, but did you see what macromedia does? There were some diagrams on their site. Basically, there's the firewall, then an F5, load-balancing 2 web/apache servers serving the entire web sites. CFM pages are then load-balanced through another F5 (you

Re: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread dave
Alex says: I was referring to a product CREATED BY Macromedia Holy shit!!! MM created coldfusion Damn and to think they been telling us all these years that they bought it from Alaire, I can't believe I fell for their lies!! Oh wait, I think you mean they took the space out of the name

Re: cfeclipse and cfmx7

2005-05-03 Thread Mark Drew
We are working on it. I shall see what I can do in the next few days Regards Mark Drew On 5/3/05, C. Hatton Humphrey [EMAIL PROTECTED] wrote: So anyone can add in and update the new tag defs? Is anyone working on this that is known? Hatton On 5/3/05, Adam Haskell [EMAIL PROTECTED]

Re: cfeclipse and cfmx7

2005-05-03 Thread Sean Corfield
On 5/3/05, C. Hatton Humphrey [EMAIL PROTECTED] wrote: So anyone can add in and update the new tag defs? Yes. Is anyone working on this that is known? I think several people are working on it! But getting it into release format and putting it out the door may take some time as already

ColdFusion WHOIS Proxy?

2005-05-03 Thread Jim McAtee
Has anyone done a WHOIS proxy in ColdFusion, similar to the one at GeekTools.com? http://www.geektools.com/whois.php ~| Find out how CFTicket can increase your company's customer support efficiency by 100%

RE: level 1, level 2

2005-05-03 Thread daniel kessler
hey that all worked! jeez-loouise! This is quite the mind-readjustment. hmmm. I can do this for my menusets too. hmm. k, great, thanks! Done right, there's usually no need for any cfif statement. All you need is something like this in the app_server.cfm file: !--- Example:

RE: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread Micha Schopman
To turn this already highly flamable thread into something more usefull, how do people think CF should grow, do you think it needs more attention? Does it lack important features or should CF be merely a keep it alive product. Looking forward to the merge where people suggested that this

Re: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread Alex Sherwood
Why does everyone assume this? I never ever stated directly or indirectly that a lack of a banner at MM.com for CFMX7 would hurt sales. I was only commenting on why MM *wouldn't* devote more than a small speedometer graphic to the launch of their premier application server product. That's all.

RE: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread Ben Forta
I know I should not respond to this thread, I know I should not respond to this thread, I know I should not respond to this thread, but arrrgghhh! For what it is worth, I agree, there should have been a big flashy banner. And I voiced this opinion before we shipped. Not that I thought

RE: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread Matt Osbun
Based on my experience: One issue that, IMO, can stand some increased awareness is security. If I had a nickel for every time I had to sit through a ColdFusion is inherently insecure lecture from some manager with a self-assumed programming background, I wouldn't be a programmer. I'd just buy

RE: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread Andrew Tyrone
Careful, Ben, you run the risk of being called a simpleton. -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 03, 2005 2:46 PM To: CF-Talk Subject: RE: CFMX: Dissed by Breeze and FlashLite? I know I should not respond to this thread, I know I should

Re: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread Alex Sherwood
Hi Ben, I value your opinion, so I'm glad to see that you at least agree with me in principal. Also, you'll notice that I just referenced launch week - not *permanent* space at the top of MM's front page. And, not even 100% of the space at the top - just a space in the rotation of the banner

Re: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread Matt Robertson
That tears it. If Macromedia wasn't dissing ColdFusion, Ben would have posted sooner. Glad I stocked up on canned goods and had that extra freezer put in. ~| Logware (www.logware.us): a new and convenient web-based time

Re: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread Matt Robertson
and gas for the generator. ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it for free

Re: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread Matt Robertson
and stocked up on ammo. ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it for free

RE: level 1, level 2

2005-05-03 Thread Rebecca Wells
You're quite welcome! Just don't call me Louise... :P hey that all worked! jeez-loouise! This is quite the mind-readjustment. hmmm. I can do this for my menusets too. hmm. k, great, thanks! statement to set the variables for each server.

RE: ColdFusion WHOIS Proxy?

2005-05-03 Thread Paul Vernon
I implemented this page with my CFX_Whois tag... http://www.newmediadevelopment.net/multi_domaincheck.cfm The tag can be found here... http://store.newmediadevelopment.net/cfx_tag.cfm?ProductID=8 Paul ~| Logware

RE: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread Dave Francis
If you can afford gas, you're not a CF developer :( -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 03, 2005 3:06 PM To: CF-Talk Subject: Re: CFMX: Dissed by Breeze and FlashLite? .and gas for the generator.

Re: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread Adrocknaphobia
Matt, I think you are correct about your old boss. He was most likely referring to a certification and accreditation process for the server. Anything that runs on a secure government network must be approved before it use. Maybe at that time the Navy hadn't approved CF. Working for the

Re: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread Jerry Johnson
If you want to hear some complaining about lack of love from MM, subscribe to a Director list. Woe is them! On 5/3/05, Ben Forta [EMAIL PROTECTED] wrote: Dedicated DW users feel that DW does not get enough banner space, just like dedicated CF users feel that CF does not get enough banner

RE: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread Montgomery Chris Contr AFSFC/SFPA
Unless you're contracted to work for the government. Heh. -- //SIGNED// Chris Montgomery, Contractor HQ AF Security Forces Center, Antiterrorism Branch 1517 Billy Mitchell Blvd, Bldg 954 Lackland AFB, TX 78236-0119 DSN 312.945.7034 Comm 210.925.7034 -Original Message- From: Dave

RE: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread Ben Forta
so I'm not sure why the Navy would be any different They are not. There is an incredible amount of CF use within the Navy, and I myself have visited lots of Navy sites briefing them on CFMX7. There will always be the occasional voice of doubt and opposition, but in general, the Navy is using CF

RE: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread Montgomery Chris Contr AFSFC/SFPA
I don't know what the certification status of CF is with the Navy these days, but I know of at least one app where they were running CF. A couple years back, some Navy contractors illicitly procured the code from the Air Force office where I work now and set up their own version of our

Re: ColdFusion WHOIS Proxy?

2005-05-03 Thread Howie Hamlin
We have a free cfx tag here: http://www.coolfusion.com/downloads/index.cfm?id=6 HTH, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com inFusion Mail Server (iMS) - The Award-winning, Intelligent Mail Server PrismAV - Virus scanning for ColdFusion and

RE: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread Matt Osbun
Which is kinda my point. I've seen a general problem with the perception of CF- not just in one person, or a small group- but the vast majority of the IT Decision-Making types I've come across regard CF as a toy that you'd never use in 'Real Life'. One IT Director was openly amazed that an

Re: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread Sean Corfield
On 5/3/05, Matt Osbun [EMAIL PROTECTED] wrote: The thread (kinda) started out on marketing CF, and in my experience, this has always been a glaring weakness in how CF is perceived. And, just for the record, does anyone think that adding a rotating ad banner to the home page of macromedia.com

RE: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread Damien McKenna
Depending on the marketing push, it could. So, when are MM going to hire some freelance writers to write some pro-CF pro-CF-security articles for InfoWeek et al? -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ - 407-804-1014 #include

RE: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread Burns, John D
Yep, quite a few sites in the NAVAIR community are using them. Our shop does CF, ASP/.NET and Domino development for the Navy. John From: Ben Forta [mailto:[EMAIL PROTECTED] Sent: Tue 5/3/2005 3:56 PM To: CF-Talk Subject: RE: CFMX: Dissed by Breeze and

Re: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread Bryan Stevenson
And, just for the record, does anyone think that adding a rotating ad banner to the home page of macromedia.com would do anything to change that perception (about security)? cf_sarcasm Of course it would SeanI mean everybody knows that banner ads are to be trusted beyond your own

RE: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread Burns, John D
Yeah, my understanding is also that MM put in some work before the release of CF7 to get CF7 and Flash 7 on the approved list for NMCI (Navy-Marine Corps Initiative) so I think that sort of work by MM will go a long way to get more government and military sites using MM technologies. That's

RE: New Development Libraries

2005-05-03 Thread S . Isaac Dealey
All true. The LGPL is a very good option as well if you want to license your code, but aren't concerned about your code being used in commercial, non-open-source projects. It's also long and filled with lots of legal talk (although not nearly as much as the GPL). ;^) Personally I just

Re: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread dave
secure as in the product or as in insecure as in some of the users? And to answer Micha: I hope one of the things Adobe does with cfm is to license its use in schools and such for free and use its deep photoshop roots to entrench it in a lot of these designer programs. Why? How many sites

  1   2   >