Re: Blowin our own horn: New CF Site

2008-10-31 Thread Steve Nelson
Very cool Robert. I didn't have any performance problems at all on Firefox. What kind of stuff did you use CF for on this project? Steve Nelson On Fri, Oct 31, 2008 at 10:07 AM, Robert Harrison [EMAIL PROTECTED] wrote: We've just launched our own new site. It's fully CF driven from MS SQL DB

Re: CSS Framework, have anyone used before?

2008-10-16 Thread Steve Nelson
to memorize and primarily uses standard HTML elements. Do any of these do that? Steve Nelson On Wed, Oct 15, 2008 at 10:17 PM, henry ho [EMAIL PROTECTED] wrote: Anyone used the CSS Frameworks out there? What's your take on them? http://code.google.com/p/blueprintcss/ http://code.google.com/p

Re: Recordcount Summation of 2 Queries

2008-09-30 Thread Steve Nelson
cfset total=query_1.recordcount+query_2.recordcount cfoutput#total#/cfoutput like that? Steve On Tue, Sep 30, 2008 at 3:45 PM, Michael Norton [EMAIL PROTECTED] wrote: Greetings, Is it possible to print the summation of two recordcounts? Bear with me if I'm being long-winded, but here's

Re: onApplicationStart Vs onRequestStart

2008-09-28 Thread Steve Nelson
OnApplicationStart runs the first time ANY user hits your site. It's commonly used for setting application variables that rarely change. Things like datasources are a good place for that or initializing a ton of cfobjects. I commonly put a cfif statement in my onRequest event to reset the

Re: Flash Movie not playing

2008-09-23 Thread Steve Nelson
You probably need to set a base href. Try adding this: base href=http://sfwater.org/ http://sfwater.org/flash_test.cfm?MC_ID=35 Steve Nelson On Tue, Sep 23, 2008 at 7:18 PM, jennifer drechsler [EMAIL PROTECTED]wrote: Does anyone know why this url would play all of the flash movies: http

Re: Flash Movie not playing

2008-09-23 Thread Steve Nelson
As far as I can tell from your example, that should matter. Unless you were to set the href as a relative path. In the past when I've used this, I tend to make it dynamic. Like this: base href=http://#cgi.serverName#/; Do you have an example of when an external link would break it? Steve Nelson

Re: cfhttp and Google Search Appliance

2008-09-09 Thread Steve Nelson
Kevin I was trying this exact same thing last week and got the exact same error. I just tried your code and am still unable to login. Can you explain what it is you did to make it work? Steve Nelson Dave, thanks for your help but I finally got it to work. Just in case you are interested

Re: cfhttp and Google Search Appliance

2008-09-09 Thread Steve Nelson
Oh my bad, your example was searching for the word Google Mini which isn't on the full appliance. Thanks Kevin you've cured my ulcer. Steve ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date

RE: locking user out after 3 incorrect attempts to log in

2004-06-15 Thread Steve Nelson
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166657---Cookies are definitely not the only solution. This would make an interesting CF contest. Who ran that CF contest a couple months ago? Steve Nelson _ From: Pascal Peters [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 15

RE: QoQ type comparison bug

2004-06-15 Thread Steve Nelson
It's probably because it's treating it like a string instead of a datetime since you used dateformat in the querysetcell. Is tmp_date already a date? Try removing the dateformat(). Steve Nelson _ From: Doug James [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 15, 2004 12:01 PM To: CF-Talk

cftransaction inside or outside cfloops?

2004-06-10 Thread Steve Nelson
/cfloop /cftransaction Steve Nelson [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Question about Licensing my CF Web Application

2004-06-07 Thread Steve Nelson
along for months or years without seeing a dime because they weren't profitable. They may decide to spend a bunch of money setting up a new office causing their profit margin to drop. Just make sure that doesn't affect your payments. Steve Nelson _ From: Dave Phillips [mailto:[EMAIL PROTECTED

saving files in homesite.... slooooow!

2004-06-06 Thread Steve Nelson
What the hell is going on? Any ideas? Saving the same file in notepad is instant. Steve Nelson [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: saving files in homesite.... slooooow!

2004-06-06 Thread Steve Nelson
to send a link to a friend. -Original Message- From: Steve Nelson [mailto:[EMAIL PROTECTED] Sent: Sunday, June 06, 2004 9:04 PM To: CF-Talk Subject: saving files in homesite slow! I can't explain this. On my monster of a desktop (P4 3ghz, 4gb ram yada yada) simply saving .cfm files

RE: saving files in homesite.... slooooow!

2004-06-06 Thread Steve Nelson
Sheesh, I have exactly 4096 files in my AutoBackup folder! The sad thing is that the oldest file is 6/2. Apparently I average *exactly 1024 file saves per day. Hmmm 1024=1KB I'm literally a machine! :-) See you all at CFFUN! Steve Nelson _ From: Steve Nelson [mailto:[EMAIL PROTECTED

RE: He3 community input (custom tag paths/mappings)

2004-06-03 Thread Steve Nelson
That's not really what I'm thinking. My thought is to point the IDE to a single url (per development server) that returns stuff like this (in some xml format): Mappings: / = d:\inetpub\wwwroot /funkychicken = d:\inetpub\wwwroot\iama\funkychicken Tags: cf_chickendance =

RE: Blackstone - Toronto CFUG notes

2004-06-03 Thread Steve Nelson
What does the SQL reporting services produce? PDFs, Word? HTML? I have a copy from my MS action pack, but haven't taken the time to install it. Steve Nelson _ From: G [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 02, 2004 3:32 PM To: CF-Talk Subject: Re: Blackstone - Toronto CFUG notes

He3 community input (undo after closing file)

2004-06-03 Thread Steve Nelson
On another note, I'd love a feature that lets me undo after closing a document, even if I closed the file 3 weeks ago. Basically just write the undo commands to disk. I have plenty of disk space, so I honestly don't care how much space this would take up. Steve Nelson _ From: Steve Nelson

RE: need to edit the Text File

2004-06-03 Thread Steve Nelson
Try this: cffile action="" file=#expandpath(.)#\somefile.txt variable=myfile cfloop list=#myfile# delimiters=#chr(10)# index=line cfloop list=#line# delimiters=| index=column cfoutput#column#br/cfoutput /cfloop /cfloop Steve Nelson _ From: Asim Manzur [mailto:[EMAIL PROTEC

RE: cfinclude outside of site document root?

2004-06-03 Thread Steve Nelson
One way you can do it is to create a CF mapping (this is different from an IIS mapping) in the CF administrator. For example /myglobalfiles === d:\inetpub\globalfiles\ cfinclude template=/myglobalfiles/somefile.cfm Steve Nelson _ From: Damien McKenna [mailto:[EMAIL PROTECTED] Sent

RE: Controling spider access

2004-06-03 Thread Steve Nelson
Most spiders have a specific cgi.user_agent could you check that and disregard those hits? Steve _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, June 03, 2004 11:54 AM To: CF-Talk Subject: Controling spider access My company has an affiliate program set up with other

RE: Base 64 encoding hexadecimal string

2004-06-03 Thread Steve Nelson
I've only used the tobase64() function to encode image files into a string. It took a couple trys before I got it to work right. I'd recommend you first try and get CF to just encode the data, then decode it and make sure it's returning back to normal. If it does that and it still doesn't work

RE: He3 community input (custom tag paths/mappings)

2004-06-02 Thread Steve Nelson
How about a server component that would somehow translate the location of mappings/tags? I think that would allow you to setup a server once instead of each individual project. Steve Nelson _ From: Matt Liotta [mailto:[EMAIL PROTECTED] Sent: Sunday, May 30, 2004 6:05 PM To: CF-Talk

RE: Date Bug in CFWDDX

2004-05-24 Thread Steve Nelson
As a side note, this appears to work correctly on CF5. Steve _ From: Mark Murphy [mailto:[EMAIL PROTECTED] Sent: Monday, May 24, 2004 6:07 PM To: CF-Talk Subject: Date Bug in CFWDDX CFWDDX action="" has a bugthere is no difference between AM and PM. It loses the 24 hour information,

RE: Does this work in CF5?

2004-05-23 Thread Steve Nelson
Yep, it works fine. I did this to test it: cfset request.LoginData=StructNew() cfset StructInsert(request.LoginData,Woo,HOO) test 1: cfdump var=#request.LoginData# cfset request.LoginData.Foo=Bar brtest 2: cfdump var=#request.LoginData# Returns: test 1: WOO HOO test 2: FOO Bar WOO HOO

RE: **UPDATE** Arrange sequential selections into ranges how to???

2004-05-19 Thread Steve Nelson
Here's my 3 minute attempt: _ From: Nathan R. Jessop [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 19, 2004 1:57 PM To: CF-Talk Subject: RE: **UPDATE** Arrange sequential selections into ranges how to??? Maybe I've made it more difficult than it has to be. Ignore the select stuff.

RE: **UPDATE** Arrange sequential selections into ranges how to???

2004-05-19 Thread Steve Nelson
Sorry about that... Here's my 3 minute attempt. I haven't tested it. At a second glance I think it screws up the first group. Steve Nelson cfset var1 = 1,2,3,4,5,6,10,11,12,13,14,20,25,30,31,32,33,50 cfset var2= cfset lastitem=listfirst(var1)-1 cfset groupstart=lastitem cfloop list=#var1

RE: **UPDATE** Arrange sequential selections into ranges how to???

2004-05-19 Thread Steve Nelson
-Original Message- From: Steve Nelson [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 19, 2004 11:26 AM To: CF-Talk Subject: RE: **UPDATE** Arrange sequential selections into ranges how to??? Sorry about that... Here's my 3 minute attempt. I haven't tested it. At a second glance I think

stock trading web service?

2004-05-14 Thread Steve Nelson
Does anyone here know of any companies that provide web services that can perform actual stock executions? Not a quotes tool, I mean actually Buy 100 shares of YHOO etc. Steve Nelson [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Write to a magnetic stripe card

2004-05-14 Thread Steve Nelson
Maybe I'm wrong, but I'm not sure you'd really want CF to do that, because CF is on the server side, whereas the mag stripe writer would likely be on the client side. I think what would make more sense for you is to have a Java/ActiveX object that can perform the writing, then simply send the

RE: CFFile and Word/PDF document

2004-05-13 Thread Steve Nelson
Sounds like you want to use cfcontent. That will allow you to force the users to go through ColdFusion to view the actual file. This allows you to add things like security or logging to your downloadable files. Steve Nelson _ From: sam komolafe [mailto:[EMAIL PROTECTED] Sent: Thursday

RE: grabbing only a part of a string

2004-05-13 Thread Steve Nelson
That looks like a short list to me. You could just use #listlast(custom|98,|)# If it's really more complex than that, check out the functions: findnocase() and mid() Steve Nelson _ From: Wurst, Keith D. [mailto:[EMAIL PROTECTED] Sent: Thursday, May 13, 2004 3:37 PM To: CF-Talk Subject

RE: Writing Websites for Phone Web Browsers

2004-05-12 Thread Steve Nelson
This is a little different subject, but another solution to access web apps through the phone is using VoiceML. It's far more universal than WML, but it's audio input/output, not visual. Here's an inexpensive VoiceML application that can tie to a CFML application: http://www.voicent.com/ There

RE: Microsoft acknowledges CF!

2004-05-10 Thread Steve Nelson
Boy isn't that the truth! They also only talked about the general functionality of CF. There are so many built in functions in CF that I think we all take for granted because they've been in there so long. Things like manipulating lists, queries, dates, display formatting. The list of CF's *real

RE: homesite+ (how to stop a find search)

2004-05-10 Thread Steve Nelson
Press the ESC key. Steve Nelson _ From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Monday, May 10, 2004 9:39 AM To: CF-Talk Subject: homesite+ (how to stop a find search) hi there. really a homesite+ question, but how do you stop the find/replace finder from finding things?lets say

RE: Microsoft acknowledges CF!

2004-05-10 Thread Steve Nelson
I think you can do this a few different ways, but essentially you still need a local application server to execute the pages. With CFMX you could use the developer copy which I think is free for localhost usage. BD offers a free version that I think is only CF5 compatible. Maybe I'm wrong.

RE: CFMX 6.1 and Order By Error

2004-05-10 Thread Steve Nelson
It's hard to tell from the line wrapping, but it looks like you're trying to do a union of two selects, but you left out the union operator. Is that what you're doing? Also, try removing the table names from the order by clause. Steve Nelson _ From: Eric Davis [mailto:[EMAIL PROTECTED

RE: Microsoft acknowledges CF!

2004-05-09 Thread Steve Nelson
I gave this article a rating of 9 (outstanding). In my comment I told them the article had me convinced... to stick with ColdFusion. Steve Nelson _ From: Andrew Spear [mailto:[EMAIL PROTECTED] Sent: Friday, May 07, 2004 5:51 PM To: CF-Talk Subject: Microsoft acknowledges CF! I thought

RE: OT? pull text between tags

2004-05-05 Thread Steve Nelson
ted it, so you'll have to goof around with it a bit. Steve Nelson _ From: Doug James [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 05, 2004 4:30 PM To: CF-Talk Subject: OT? pull text between tags I am trying to get a print out of all of the queries used in my application. Anyone know of a quic

RE: LIKE and % is just not enough. Advanced SQL Search help neede d

2004-05-04 Thread Steve Nelson
query took an average of 47ms. Doing 7 unique LIKE queries (every permutation of 3 words, took 329ms) Granted, it did make the processor spike up to a full 2%. So yes, I concede, it is a little processor intensive. ;-) Jason, how many records are you trying to search? Give or take. Steve Nelson

RE: LIKE and % is just not enough. Advanced SQL Search help neede d

2004-05-04 Thread Steve Nelson
True, it's not the most scalable solution, I'm sure there are more efficient ways to achieve the same thing. But from Jason's email it sounds like massive scalability is not the biggest concern, I think at this point he's simply trying to return the most accurate results to help his users achieve

RE: Online Payment Form

2004-04-16 Thread Steve Nelson
gistry, the database, the cfm file and a way to decrypt the cfm. This is not unbreakable by any means, I can already think of a way around it. But it's easy to do and would show a judge you took a series of steps to attempt to protect the data :-) If you still want consulting help, give me a call. Steve

RE: How to streamline a request that uses many cfquery statements?

2004-04-13 Thread Steve Nelson
out of sync with the live data. Of course, there are tricks to get around that. If you're interested in hearing them let me know. Steve Nelson _ From: Earl, George [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 13, 2004 10:40 AM To: CF-Talk Subject: How to streamline a request that uses

RE: Your Preferred Payment Gateway?

2004-04-12 Thread Steve Nelson
That's funny. I've had a couple clients that feel the same way about Paypal. I think they made a big mistake with the name. No one wants their bank to be their Pal.Btw, does Paypal offer webservices yet? Steve _ From: Hagan, Ryan Mr (Contractor ACI) [mailto:[EMAIL PROTECTED] Sent: Monday,

RE: ColdFusion Coding Contest (prizes)

2004-04-08 Thread Steve Nelson
about this tool I'm throwing in: http://www.secretagents.com/index.cfm?fuseaction=tools.prototypetoolkit Good Luck! Steve Nelson [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: ColdFusion Coding Contest

2004-04-05 Thread Steve Nelson
Was anyone successful with this? I know mine worked on a bunch of mazes, but there were a couple weird ones with huge rooms that it didn't work on. Kevin, can you send me the last version I sent to you guys? I'd like to try and fix any issues in my code. Steve Nelson _ From: Kazmierczak

RE: ColdFusion Coding Contest

2004-04-05 Thread Steve Nelson
Oh gotcha. Then I'll have to dig it up and send it over so you have 3 solutions. :-) Steve Nelson _ From: Kazmierczak, Kevin [mailto:[EMAIL PROTECTED] Sent: Monday, April 05, 2004 3:18 PM To: CF-Talk Subject: RE: ColdFusion Coding Contest Steve, Here is the deal.I am not the person who

RE: desktop application

2004-04-02 Thread Steve Nelson
I don't have a lot of experience with this tool, but you could try Coral Web Builder. http://www.pcaonline.com/coral/index.cfm it's basically a stripped down CFML on the desktop. Looks pretty powerful. Steve Nelson _ From: Burns, John D [mailto:[EMAIL PROTECTED] Sent: Friday, April 02

RE: Slow query on CF5 why?

2004-03-29 Thread Steve Nelson
Does it return a huge amount of data? That could tie up the odbc driver. Is your CF server's CPU peaked at 100% for some reason? If you're running on two servers, the DB server could be fine, but the CF server could be overloaded. Does it do it every time or just the first time? Steve Nelson

RE: Driving a local scanner with CFMX

2004-03-28 Thread Steve Nelson
license for about a thousand bucks (no support, no return).They say it may or may not work in your environment. Bummer... -Original Message- From: Steve Nelson [mailto:[EMAIL PROTECTED] Sent: Saturday, March 27, 2004 6:12 PM To: CF-Talk Subject: RE: Driving a local scanner with CFMX Looks

RE: Driving a local scanner with CFMX

2004-03-27 Thread Steve Nelson
Looks like it's discontinued, but look at this: http://www.cfdev.com/activescan/ Steve Nelson _ From: Arden Weiss [mailto:[EMAIL PROTECTED] Sent: Saturday, March 27, 2004 12:04 AM To: CF-Talk Subject: Driving a local scanner with CFMX Seeking advice on how to seamlessly drive a twain

RE: why are procedures better? (was: RE: Securing CF Apps.)

2004-03-24 Thread Steve Nelson
Yeah, but CF will double up those quotes automatically. At least I thought it did. Steve -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 24, 2004 3:34 AM To: CF-Talk Subject: RE: why are procedures better? (was: RE: Securing CF Apps.) This type

RE: why are procedures better? (was: RE: Securing CF Apps.)

2004-03-24 Thread Steve Nelson
single quotes still The table is still there. Of course this is on SQL2000. So that may be a difference. But it's CF that's doubling up the quotes, not the database. Do you have a development Oracle server you could try this on? I'm very curious if there is a difference. Steve Nelson -Original

RE: why are procedures better?

2004-03-24 Thread Steve Nelson
http://192.168.0.100/experiments/temp/queries.cfm?user_id=\'1\' getuser (Records=0, Time=141ms) SQL = select first_name from users where user_id='\''1\''' I just gave it a try. It looks like it is doubled up by CF. Steve -Original Message- From: Jochem van Dieten [mailto:[EMAIL

RE: why are procedures better?

2004-03-24 Thread Steve Nelson
When I did my comparison I used the stored procedure name getuser, i.e. no sp_ That is weird though. Just to restate my performance results, this is what i found: version 1, cfquery, no cfqueryparam : averaged 0.5098ms version 2, cfquery w/ cfqueryparam: averaged 0.5744ms version 3, cfstoredproc:

RE: why are procedures better?

2004-03-24 Thread Steve Nelson
' -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 24, 2004 10:10 AM To: CF-Talk Subject: Re: why are procedures better? Steve Nelson wrote: http://192.168.0.100/experiments/temp/queries.cfm?user_id=\'1\' Why are you using a backslashes - single

RE: why are procedures better? (was: RE: Securing CF Apps.)

2004-03-24 Thread Steve Nelson
So are you advocating cfincludes with queries instead of stored procs? Steve -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 24, 2004 10:26 AM To: CF-Talk Subject: Re: why are procedures better? (was: RE: Securing CF Apps.) Maybe I don't understand

RE: why are procedures better?

2004-03-24 Thread Steve Nelson
To: CF-Talk Subject: Re: why are procedures better? Steve Nelson wrote: I don't think it's going to matter, because CF is generating the doubled up single quotes that are sent to the db. Here are a few combinations: http://192.168.0.100/experiments/temp/queries.cfm?user_id=1\' getuser (Records=0

RE: Site mapping software?

2004-03-24 Thread Steve Nelson
, it'll save the html contents to a file. What you end up with is an html-only version of the site. Without the underlying cfml/sql code, you can focus on what the application needs to do instead of trying to decipher what the previous developers were thinking. Steve Nelson -Original Message

RE: Quick Question, RE: Datatype and future date/time calculation

2004-03-24 Thread Steve Nelson
How about store it as an integer based on the number of minutes? Then just have it display the most logical description. Instead of 60 minutes, display 1 hour. Instead of 1440 minutes, display 1 day. Would that work? Steve -Original Message- From: Jeff Small [mailto:[EMAIL PROTECTED]

RE: show tables in cold fusion

2004-03-24 Thread Steve Nelson
What database? In SQL it's sp_tables. then you could cfdump it in CF. Steve Nelson -Original Message- From: mayo [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 24, 2004 4:01 PM To: CF-Talk Subject: show tables in cold fusion OK, I'm having a bad day. I've googled to no avail

RE: isDefined vs structKeyExists

2004-03-24 Thread Steve Nelson
I know in previous versions they were different. Seems logical to me that they should work the same in MX since scopes are just regular structures. Steve Nelson -Original Message- From: Conan Saunders [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 24, 2004 5:32 PM To: CF-Talk Subject

RE: Methodology and Docs

2004-03-23 Thread Steve Nelson
Paul, check this out if you have some time: http://www.fusebox.org/index.cfm?fuseaction=methodology.steps Steve Nelson -Original Message- From: Paul Wilson [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 23, 2004 12:11 AM To: CF-Talk Subject: Methodology and Docs I'm starting to build

RE: right click to comment selection in Homesite+

2004-03-23 Thread Steve Nelson
man, I wish! No i don't think you can. At least I know you can't in HS 5.2, I don't think they've changed the VTOM to include that yet. That's one of my 28 suggestions for HS6: http://steve.secretagents.com/index.cfm?fuseaction=fuseblog.ShowCommentsArt icleID=20031206080320 Steve Nelson

RE: RE: RE: Securing CF Apps.

2004-03-23 Thread Steve Nelson
them access it. If the bookmark allows them to bypass the security, then the application isn't secure. Steve Nelson -Original Message- From: Adrocknaphobia [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 23, 2004 3:43 PM To: CF-Talk Subject: Re: RE: RE: Securing CF Apps. You do realize we

RE: RE: RE: Securing CF Apps.

2004-03-23 Thread Steve Nelson
that required a form submission? If you have a user wanting to bookmark your application's internal pages, then you should revist usability. -adam -Original Message- From: Steve Nelson [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 23, 2004 08:56 PM To: 'CF-Talk' Subject: RE: RE: RE: Securing CF

RE: Securing CF Apps.

2004-03-23 Thread Steve Nelson
Is that true? Every time I've heard about some big new hack on Windows, big enough to make the news, the patch was either already available or available in less than 24 hours. Are you referring to anything in particular? Steve -Original Message- From: Tom Kitta [mailto:[EMAIL PROTECTED]

RE: Web application testing

2004-03-23 Thread Steve Nelson
I generally test my workflow by creating a non-functional html prototype then applying Interaction Design techniques (ala Cooper.com). It's a manual process though, requires a lot of thinking. What are you trying to achieve by testing the User Interface? Steve -Original Message- From: Jon

RE: why are procedures better? (was: RE: Securing CF Apps.)

2004-03-23 Thread Steve Nelson
? Also, if these aren't the way to go, what's a better solution? Steve Nelson -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 23, 2004 8:48 PM To: CF-Talk Subject: Re: why are procedures better? (was: RE: Securing CF Apps.) I am sure there are more reasons

RE: form submission

2004-03-19 Thread Steve Nelson
Try the code below. Although I think it only works in IE. Steve Nelson HTML HEAD SCRIPT LANGUAGE=_javascript_ function testForEnter() { if (event.keyCode == 13) { event.cancelBubble = true; event.returnValue = false; } } /SCRIPT /HEAD BODY FORM id=FORM1 name=FORM1 method=GET action

Re: JUnit with Cold Fusion

2004-03-18 Thread Steve Nelson
This tool works differently from junit, but produces test harnesses from simple Fusedocs. http://www.secretagents.com/index.cfm?fuseaction=tools.testharnessgenerator Steve Nelson Chris Jensen wrote: Hi, I've been looking into getting into better testing practices with cold fusion

Re: CF OO: Help with implementing DB-persisted object inheritance (i.e. the SQL aspect)

2004-03-16 Thread Steve Nelson
I imagine you'd need a tree structure, not a direct relationship. Steve Nelson Jamie Jackson wrote: Say I've modeled the inheritance in this manner (table per class): http://www.agiledata.org/essays/mappingObjects.html#MapEachClassTo able I'm having a tough time figuring out how to join

Re: Software Life Cycle Development Templates

2004-03-04 Thread Steve Nelson
Here are a few more excellent books: -Fusebox: Developing ColdFusion Applications -The Inmates are Running the Asylum -About Face 2.0 -The Mythical Man Month The first book explains the FLiP process sin detail. The second 2 are on a subject called interaction design, which describe how to bring

Re: Refreshing App Vars in a Cluster

2004-03-04 Thread Steve Nelson
the cluster whenever data was inserted/updated/deleted. It makes it very scalable, but it's a big pain in the ass. Steve Nelson Dave Carabetta wrote: Is it possible to force an Application variable refresh on two MX instances at the same time? Our web site is a cluster of two JRun instances

Re: Software Life Cycle Development Templates

2004-03-03 Thread Steve Nelson
. The benefits I have personally gained by using FLiP are so vast they are unmeasurable. Steve Nelson Greg Luce wrote: Ian, Check out www.fusebox.org . You can't go wrong there. FLiP will do evrything you're asking. Greg -Original Message- From: Ian Skinner [mailto:[EMAIL

Re: SQL Multiple Inserts

2004-03-01 Thread Steve Nelson
versus regular insert? Steve Nelson Robertson-Ravo, Neil (RX) wrote: Stored Procedure : BULK INSERT. _ From: brobborb [mailto:[EMAIL PROTECTED] Sent: 01 March 2004 12:16 To: CF-Talk Subject: SOT: SQL Multiple Inserts Hey guys, let's say I have to insert like 5,000 rows of data

Re: SQL Multiple Inserts

2004-03-01 Thread Steve Nelson
than 2 records... :-) Steve Nelson brobborb wrote: I have just tested this myself and I am very happy! 308 milliseconds vs. 1590 milliseconds (the numbers were something like that) This is alot of time saved since the actual application will do 10 times the amount of row inserts

Re: SQL Multiple Inserts

2004-03-01 Thread Steve Nelson
Did you add the 50,000 cffile writes? Or loop 50,000 times to create the data in one variable, then do a single cffile write? Don't you have to write to a file first, then perform the bulk insert on the file? I imagine that would make a pretty major difference. Steve Nelson brobborb wrote: I

Re: SQL Multiple Inserts

2004-03-01 Thread Steve Nelson
file) What syntax are you using? Steve Nelson brobborb wrote: the way it works is it gets the name of all the images in a diretory/and all subdirectories, and inserts them into the database. I'm not writing to a file or anything.Or are you talking about something else? - Original Message

Re: template reader/parser sort of thing :)

2004-03-01 Thread Steve Nelson
Have you seen the contentVariables in Fusebox 4? It handles this type of skinning for you. If you want it db driven, you could just write a script to write out the appropriate fb4 xml. Steve Nelson Ryan Mitchell wrote: Hello I'm working on a project that i would like to make skinnable... i'm

Re: SQL Multiple Inserts

2004-03-01 Thread Steve Nelson
Actually, you'd get a major advantage using a cached query, that is, if the select statement is taking more than about 30ms. In your example below, the select statement would need to be a little more complex, or the tbl table would need to have hundreds of thousands or millions of records to make

Re: OT: A Good Data Structure for a Large Binary Tree

2004-03-01 Thread Steve Nelson
. But, try it! You'll like it. If you want to see this third method in action, download the free version of my Prototype Tool Kit, and look at the code in the /tools/devnotes/ folder. http://www.secretagents.com/index.cfm?fuseaction=tools.prototypetoolkit Hope that helps. Steve Nelson Joe Eugene wrote

Re: Can you reset row numbers in a DB after deleting all rows?

2004-02-29 Thread Steve Nelson
You could use UUIDs instead of autonumbers. Steve Nelson Nick Baker wrote: MS Access CF 5 Can you reset rows numbers back to starting at row number 1 in a DB, after deleting all rows? The goal is to totally erase and restore DB, on the fly, from time to time. New info will have

Re: Protect action pages

2004-02-29 Thread Steve Nelson
the http_host/http_referer in the web client, it would be different from the value returned by flash, so you could reject it. I don't know enough about flash to know if that's easy to get around. Steve Nelson [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: OT - Datbase Transaction question

2004-02-26 Thread Steve Nelson
How long does it take to process right now? SQL server shouldn't blink at 28 update statements. Do you have indexes on the primary keys? Steve Nelson Eric Creese wrote: I have a stored procedure which runs a series of updates, actually 28 seperate update statements. If no failures I then do

Re: OT: HTML Form Desgin w/JS Question

2004-02-26 Thread Steve Nelson
want to copy and have it set the value of the lastSelected name to the value of the text box being copied from. Does that make sense? Is that what you're trying to do? Steve Nelson Jim McAtee wrote: I've got an application with a form containing several textareas. This application is going

Re: html to word doc.

2004-02-26 Thread Steve Nelson
thing with Excel too. Steve Nelson Ketan Patel wrote: hi all, I have to convert some dynamic html generated reports to word document dynamically in the background and save it. How can I do that using Coldfusion. Any help is appreciated. Ketan Patel [Todays Threads] [This Message

Re: OT: HTML Form Desgin w/JS Question

2004-02-26 Thread Steve Nelson
'; currentfield=field; } function copytext(field){ if (currentfield){ field.value=currentfield.value; } } /script form name=myform Name: input type=text name=field1 > value=Steve Nelson input type=Button value=lt;lt;Paste br Name: input type=text name=field2 > value=Click on a

Re: OT: HTML Form Desgin w/JS Question

2004-02-26 Thread Steve Nelson
/gateway/ Steve Nelson Jim McAtee wrote: Thanks, I see now.That might come in handy but it's not what I was looking for.I'd like to copy data from a record still on the database server. - Original Message - From: Steve Nelson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent

Re: CFMODULE with CFHTMLHEAD?

2004-02-25 Thread Steve Nelson
value=end cfhtmlhead text=#thistag.generatedcontent# cfset thistag.generatedcontent= /cfcase /cfswitch Then do this: cf_htmlhead // js code here // cfmodule code here //etc /cf_htmlhead Steve Nelson [EMAIL PROTECTED] wrote: [Apologies if this occurs twice; I've sent it an hour ago but hasn't

Re: ColdFusion Graphing Capabilities

2004-02-25 Thread Steve Nelson
Take a look at http://www.blinex.com/ They offer a product called B-Line charting components. It's done in Flash so you just have to provide the xml data and it'll create the charts. They are incredibly powerful. Steve Nelson chad wrote: Does coldfusion allow you to do really indepth graphs

Re: Fusebox (was: I like CFMX)

2002-04-30 Thread Steve Nelson
If i had a nickel every time i got muddle-headed. wait, that would only be one nickel, i've been muddle-headed ever since. Steve Hal Helms wrote: The philosopher/mathemetician Bertrand Russell once told his collaborator, Alfred North Whitehead: This issue cannot be resolved. The problem is

Re: Fusebox (was: I like CFMX)

2002-04-30 Thread Steve Nelson
Nelson [mailto:[EMAIL PROTECTED]] Sent: Monday, April 29, 2002 11:43 PM To: CF-Talk Subject: Re: Fusebox (was: I like CFMX) http://www.fusebox.org/index.cfm?fuseaction=learn.specification CF and PHP are there, JSP is coming pretty soon. Steve Nelson Dave Watts wrote: There are two books

Re: Fusebox (was: I like CFMX)

2002-04-29 Thread Steve Nelson
http://www.fusebox.org/index.cfm?fuseaction=learn.specification CF and PHP are there, JSP is coming pretty soon. Steve Nelson Dave Watts wrote: There are two books coming out on Fusebox that should help to alleviate the lack of available information on exactly what Fusebox is. John

Re: Fusebox (was: I like CFMX)

2002-04-29 Thread Steve Nelson
Hell, we've always had a 'fusebell' which is ringed when someone wants help. That's one reason why people love Fusebox, because we have such a tight community. Dig a tiny bit deeper and you'll find the core files. Currently the core files, are the spec. We're just a bunch of stupid programmers

Re: Fusebox (was: I like CFMX)

2002-04-29 Thread Steve Nelson
the Batpole, wouldn't it be Steve Nelson? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 __ Structure your ColdFusion code with Fusebox. Get the official book at http

Re: Fusebox (was: I like CFMX)

2002-04-29 Thread Steve Nelson
Sure, list it all. Steve Matt Liotta wrote: What do you want? Want me to list everything I expect in an architecture and application framework to show that Fusebox provides known of them? You don't really need me for that. Go to Google and do a search on software architecture and

Re: Fusebox (was: I like CFMX)

2002-04-29 Thread Steve Nelson
of concrete architecture interface implementations * context for partitioning tier into components * component infrastructure * additional stuff depending on application -Matt -Original Message- From: Steve Nelson [mailto:[EMAIL PROTECTED]] Sent: Monday

Re: Fusebox (was: I like CFMX)

2002-04-29 Thread Steve Nelson
So whether some people call it a methodology, others a framework, others a standard, are you saying that changes it's usefulness? Steve Matt Liotta wrote: Since I first saw Fusebox, its web site as well as some of its proponents like Steve and Nat have termed it as among other things, an

Re: Fusebox (was: I like CFMX)

2002-04-29 Thread Steve Nelson
Sure, terminology is important but it is far too often treated as the most important thing and it's not. If you said: hand me the hammer vs hand me that tool with the wooden handle and the metal smasher for banging nails I'm human, i'd figure it out. The name hammer is not the important part.

  1   2   >