Re: So, lemme get this straight (MacOSX)

2003-01-20 Thread Sean A Corfield
On Sunday, Jan 19, 2003, at 14:16 US/Pacific, Jeff's Mac wrote: I can get into the bin directory of the Jrun directory in the Applications Directory, but when I type...wait...there's a DOT in front of /jrun...hold on... Yes, Unix is *very* fussy about spelling, punctuation and CaSe! WooHoo!

Re: So, lemme get this straight (MacOSX)

2003-01-20 Thread Dick Applebaum
On Sunday, January 19, 2003, at 11:51 PM, Sean A Corfield wrote: I'm sure you could install JRun as a daemon, but I'm not exactly sure why you would want to. It should be easy enough to write a small startup script for it that you can launch from the finder. First, you need a script that

Re: So, lemme get this straight (MacOSX)

2003-01-20 Thread Dick Applebaum
On Monday, January 20, 2003, at 12:07 AM, Sean A Corfield wrote: Is my only interaction with the JRun server going to be thru localhost:8000? That depends on how you set it up. If you create 'servers' then each server uses a different port. My system has the following: 80Apache

RE: Goodbye cruel world

2003-01-20 Thread Adam Reynolds
Suggest a simple solution that I use. WS-FTP Upload what you need to the main site. -Original Message- From: Mike Miessen [mailto:[EMAIL PROTECTED]] Sent: 19 January 2003 04:06 To: CF-Talk Subject: RE: Goodbye cruel world Well there it goes again. It is waiting for the server

submiting forms created server side

2003-01-20 Thread Jay Kufner
Hello everybody- I'm sure this is one of those I've been working for to long and I've overlooked the answer 100 times sort of questions. I've built a shopping cart and I'm trouble shooting the form submission. The Payment gateway is Authorize net. The problem comes when submitting the

Re: submiting forms created server side

2003-01-20 Thread Patric Stumpe
Hi Jay, would a cfhttp-posting from an action-page solve your prob? You submit the user-data to your action-page and that page makes an cfhttp-post to authorize.net. Patric JK Hello everybody- JK I'm sure this is one of those I've been working for to long and I've JK overlooked the answer

RE: Whats up with www.macromedia.com

2003-01-20 Thread Robertson-Ravo, Neil (RX)
sounded like a proxy issue.. -Original Message- From: Scott Weikert [mailto:[EMAIL PROTECTED]] Sent: 18 January 2003 00:04 To: CF-Talk Subject: Re: Whats up with www.macromedia.com I was wondering is there anything wrong with macromedia's site. Worked fine for me just now.

RE: CFMX for J2EE JSTL

2003-01-20 Thread webguy
You get this sorted Dick? I think I need to restart the server to get it to work. Here is an example using the rand tag (tag at http://jakarta.apache.org/). cfimport taglib=/WEB-INF/lib/random.tld prefix=myrand myrand:number id=randPass range=00-99 algorithm=SHA1PRNG provider=SUN /

Idea Incubator Article : CFMX TinyMUSH 4 integration

2003-01-20 Thread Todd Rafferty
So, in my spare time I've been working on a fun little project. I play on MUSHes (sort of like a MUD only more for RolePlay than hack and slash) a lot and I've always wanted to do a web character generator. My vision on how this works is basically that I have 2 databases. One that CFMX

RE: Goodbye cruel world

2003-01-20 Thread Mike Miessen
Things kept getting worse and even started having trouble with WS_FTP etc... I restored my system to an earlier date (I run XP) and that helped. I also uninstalled Norton Internet security and virus protection and that helped even more. (I know I'll have to do something about virus protection)

Stealing content?

2003-01-20 Thread Thane Sherrington
I was talking to someone the other day about ColdFusion, and they said Oh yeah, and it has that feature that allows you to steal content. I've never heard of that - what feature would that be? T ~| Archives:

Re: Cfcontent force download

2003-01-20 Thread Jochem van Dieten
Fuzion - CFTalk wrote: Sorry formatting of last email went funny -- Add this before the cfcontent tag: cfheader name=Content-Disposition value=attach;filename=#filename# Not attach, attachment (RFC 2616, section 19.5.1). Jochem

RE: Goodbye cruel world

2003-01-20 Thread Tim Laureska
I have seen problems with Norton System Works balling things up on a PC... I've had to uninstall system works on several machines and then everything worked fine..can't speak for the Norton internet security package, but the troubles fit the pattern... Norton Antivirus by itself is

RE: Stealing content?

2003-01-20 Thread Jason Lees (National Express)
Its called scrapping or syndication, depending on the books you read. to accomplish syndication, you use the cfhttp tag, However this is technically illegal without the Website owners permission as they own legal copyright on the material. Jason Lees Development Team Leader National Express

Re: Stealing content?

2003-01-20 Thread Pablo Varando
I would believe that would be CFHTTP :) It's sad when someone refers to CF as the content stealing solution. gotta educate that person ;) Pablo - Original Message - From: Thane Sherrington [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, January 20, 2003 6:38 AM

Asynchronous Web services

2003-01-20 Thread Jaye Morris - jayeZERO.com
Is it possible to build Asynchronous Web services in cfmx? Thanks. -//- Jaye Morris - Multimedia Developer -//- [EMAIL PROTECTED] - www.navtrak.net -//- [EMAIL PROTECTED] - www.jayezero.com ~| Archives:

RE: Stealing content?

2003-01-20 Thread Thane Sherrington
At 12:41 PM 01/20/03 +, Jason Lees (National Express) wrote: to accomplish syndication, you use the cfhttp tag, However this is technically illegal without the Website owners permission as they own legal copyright on the material. Ok, thanks - I assumed this was not a feature of ColdFusion,

RE: Stealing content?

2003-01-20 Thread webguy
I was talking to someone the other day about ColdFusion, and they said Oh yeah, and it has that feature that allows you to steal content. What a load of non-sense. Maybe they mean CF makes it easy to request a web page and save the content (via cfhttp) That is true to an extent, but every

Re: Goodbye cruel world

2003-01-20 Thread Stephen Moretti
Try switching Passive FTP _on_ Most FTP servers these days work better passively, rather than actively. Passive FTP is there to get around the problem of firewalls getting in the way of the FTP server making a connection back to the client. Passive FTP makes both the outgoing and incoming

RE: Asynchronous Web services

2003-01-20 Thread webguy
MX uses Axis to provide web services. Have a look at the http://xml.apache.org/axis/index.html When you say Asynchronous what do you mean? I presume you mean that the service returns without waiting for the result...that what you mean? WG -Original Message- From: Jaye Morris -

Re: submiting forms created server side

2003-01-20 Thread Cutter (CF_Talk)
We do this quite often. After building your form try... script form.submit(); /script Cutter Jay Kufner wrote: Hello everybody- I'm sure this is one of those I've been working for to long and I've overlooked the answer 100 times sort of questions. I've built a shopping cart and I'm

RE: Asynchronous Web services

2003-01-20 Thread Jaye Morris - jayeZERO.com
Yep. Thank you for the pointer. jaye -Original Message- From: webguy [mailto:[EMAIL PROTECTED]] Sent: Monday, January 20, 2003 8:03 AM To: CF-Talk Subject: RE: Asynchronous Web services MX uses Axis to provide web services. Have a look at the http://xml.apache.org/axis/index.html

RE: CF and IMAP

2003-01-20 Thread Vince Bonfanti
Maybe this isn't the answer you want, but...BlueDragon implements a CFIMAP tag that uses JavaMail to access IMAP servers. The documentation for CFIMAP is incomplete/missing in the current BlueDragon docs, but I'll be happy to send these to you privately if you decide to try BlueDragon. Regards,

test (Do not open)

2003-01-20 Thread Marcos_Placoná
test ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Structure your

RE: Stealing content?

2003-01-20 Thread Robertson-Ravo, Neil (RX)
I would love to see a court trying to try someone on that. -Original Message- From: Jason Lees (National Express) [mailto:[EMAIL PROTECTED]] Sent: 20 January 2003 12:42 To: CF-Talk Subject: RE: Stealing content? Its called scrapping or syndication, depending on the books you read. to

RE: Asynchronous Web services

2003-01-20 Thread webguy
It depends on what you what to do, but seeing that you are using MX (based on java), you should look at JMS, which is fairly easy to use from CF MX There are also tag-libs you can just cfimport and use, specifically for JMS http://jakarta.apache.org/taglibs/doc/jndi-doc/intro.html

RE: cfif does not contain for file input

2003-01-20 Thread Jeremy Bunton
I'll give the cftry method a go this morning and see how it works. thanks -Original Message- From: Ewok [mailto:[EMAIL PROTECTED]] Sent: Sunday, January 19, 2003 9:16 PM To: CF-Talk Subject: Re: cfif does not contain for file input This should work just fine. cftry cffile

RE: Asynchronous Web services

2003-01-20 Thread webguy
Actually your question got me interested :-) Check out this tread on AXIS/Asynchronous Web services http://marc.theaimsgroup.com/?l=soap-userw=2r=1s=one-wayq=b WG -Original Message- From: webguy [mailto:[EMAIL PROTECTED]] Sent: 20 January 2003 13:43 To: CF-Talk Subject: RE:

RE: Stealing content?

2003-01-20 Thread Dowdell, Jason G
I don't think it would be that difficult really. The weblog is going to have your ip address as well as the browser information for CFServer and the date/time as well as the accessed resource (page info). Then they just need to do a screenprint of your site if you're using it publicly. If you're

RE: Stealing content?

2003-01-20 Thread Robertson-Ravo, Neil (RX)
maybe in the US, but sure as hell not in the UK/Europe (then again you can sue and win for anything in the States!) -Original Message- From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] Sent: 20 January 2003 14:22 To: CF-Talk Subject: RE: Stealing content? I don't think it would be

RE: Stealing content?

2003-01-20 Thread Todd
I think you're forgetting that you can spoof an ip address. If people really wanted to take content and be sneaky about it, they can take it and you have no clue who they are. How many actually go through this trouble tho? No clue. ~Todd At 09:21 AM 1/20/2003 -0500, you wrote: I don't

Re: Stealing content?

2003-01-20 Thread Stephen Moretti
Actually, I've been on the sending end of cease and desist solicitors letter in a past incarnation. That work quite well in the UK. Newspapers and the PA really don't like it when you steal their content. - Original Message - From: Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] To:

Re: Stealing content?

2003-01-20 Thread Jochem van Dieten
Dowdell, Jason G wrote: I don't think it would be that difficult really. It is very easy. The weblog is going to have your ip address as well as the browser information for CFServer and the date/time as well as the accessed resource (page info). Then they just need to do a screenprint of

RE: Stealing content?

2003-01-20 Thread Dowdell, Jason G
Well, I steal content from overture all the time. Although, I don't think it happens enough to raise a hair or even cause a hiccup in their server, I do it. And this tool is proof of it. I do put a disclaimer on the bottom of the page though stating that I don't own the information. This is

RE: Stealing content?

2003-01-20 Thread Robertson-Ravo, Neil (RX)
blah, content is content and I most people don't give a toss - I can't believe anyone would be so picky etc to use or send a letter of this sort - total waste of time. There are thousands, probably millions of sites out there which are 'stealing content' and no one cares. I cant see why you

Book reviews

2003-01-20 Thread stas
Hello, We are getting ready to migrate to CFMX and I went to a local BN to take a look at what's out. I was quite dissapointed, it's all the same stuff just updated to say MX on the cover. Are there any advanced books out there? Thanks!

RE: Stealing content?

2003-01-20 Thread Dowdell, Jason G
I understand spoofing (although I've never attempted it) but my case was stated for the 1 - 2 year CF-er that uses out of the box cfhttp. You can do anything you set your mind to but it becomes a matter of how bad you want it instead of whether or not it can be done. ~Jason -Original

RE: Javascript MultiDimensional Array

2003-01-20 Thread Matthew Small
You should declare the second array as well. holidayPackages.[Explorer 60] = new Array(); holidayPackages.[Explorer 60].dates = [Winter, Easter, Spring, Value, Summer, Fall, Halloween, Fall 2, Thanksgiving, Holiday, New Years]; I haven't tried it, but it makes sense to me. Matthew Small IT

RE: Book reviews

2003-01-20 Thread Tony Weeg
get ben forta's advanced macromedia coldfusionMX Application Development. it seems to be worth the $$'s and really, apart from the webservices end of the change in cfmx, and cfml language reference, and function reference is good reading. really and truly, you can get as much as you need to know

GoLive 6 to Dreamweaver MX

2003-01-20 Thread David Brown
Our disigner would like to convert her GoLive 6 site to a DreamWeaver local site. Is there a way to import from one to the other or does she need to just connect to the server and download? ~| Archives:

RE: Book reviews

2003-01-20 Thread Jason Lees (National Express)
check out the Ben forta books published by Macromedia press (ISDN nos - 0-321-12516-9, and 0-321-12710-2], they're both quite good, Jason Lees Development Team Leader National Express Coaches Ltd. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 20 January

RE: submiting forms created server side

2003-01-20 Thread Ben Doom
Take the form data submitted by the user, add the sensitive stuff, and submit it all via CFHTTP. -- Ben Doom Programmer General Lackey Moonbow Software, Inc : -Original Message- : From: Cutter (CF_Talk) [mailto:[EMAIL PROTECTED]] : Sent: Monday, January 20, 2003 8:25 AM : To:

RE: GoLive 6 to Dreamweaver MX

2003-01-20 Thread Robertson-Ravo, Neil (RX)
just download the code. -Original Message- From: David Brown [mailto:[EMAIL PROTECTED]] Sent: 20 January 2003 14:49 To: CF-Talk Subject: GoLive 6 to Dreamweaver MX Our disigner would like to convert her GoLive 6 site to a DreamWeaver local site. Is there a way to import from one to the

character encoding and an Access database (repost)

2003-01-20 Thread Charlie Griefer
Hoping it was just a matter of nobody being around for the weekend... :) Hey all... got an XHTML page. using iso-8859-1 encoding. I have some MS Access memo field content being output to the page...this is causing invalid XHTML when i try to validate (non SGML characters...specifically

Re: Stealing content?

2003-01-20 Thread Stephen Moretti
When your business is content then, of course, you're are going to get upset and persue copyright theft through the court system. Totally aside from web publishing, just considering paper publishing. The Press Association and other agencies that provide this kind of content (text or

RE: Stealing content?

2003-01-20 Thread Robertson-Ravo, Neil (RX)
:-) -Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED]] Sent: 20 January 2003 14:56 To: CF-Talk Subject: Re: Stealing content? When your business is content then, of course, you're are going to get upset and persue copyright theft through the court system. Totally

Re: Book reviews

2003-01-20 Thread Jeffry Houser
ColdFusion MX: The Complete Reference was written from the ground up for ColdFusion MX. http://www.amazon.com/exec/obidos/ASIN/0072225564/instantcoldfu-20 However, it is written to be a soup-to-nuts book, so it is not all advanced content, but it does cover issues like CFCs, Web Services,

RE: Book reviews

2003-01-20 Thread webguy
In the advanced area ... Discovering CFCs http://www.techspedition.com/store/moreinfo.cfm?Product_ID=3 Macromedia Reality ColdFusion MX / J2EE by Ben Forta / Drew Falkman / Kristian Cibulskis / Bonnie Plottner. http://www.forta.com/books/0321129482 ColdFusion MX Developer's Handbook (Not yet

Re: Stealing content?

2003-01-20 Thread John Paul Ashenfelter
There have been several cases brought on this -- especially on deep-linking to pages below the top level. As far as I've read (/. follows most of them) they just make lawyers on both sides money. As an aside, I wrote a section on using CFHTTP for ColdFusionMX for Dummies using quicken.com for

Re: Google API

2003-01-20 Thread John Paul Ashenfelter
Dave, Tiny bit of self-promotion -- I've got an example of this in ColdFusion MX for Dummies. It is *way* easy to do and a great introduction to playing with web services in general -- defintely worth rolling your own for the experience. Regards, John Paul Ashenfelter CTO/Transitionpoint [EMAIL

OT: Book Recomendations on UI

2003-01-20 Thread Bruce Sorge
Sorry for the off-topic post. I have been doing back-end programming for quite a while, and now I would like to get into actual design. Creating the UI. I have been in BN quite often, and have looked at several books, but I was wondering if anyone on the list could point me to some good ones

RE: Asynchronous Web services

2003-01-20 Thread Jaye Morris - jayeZERO.com
We are using CFMX Enterprise on a Windows platform. The goal would be to use the CFMX to connect to a .NET Asynchronous Web Service. I am not sure if that will make a difference. Thanks Jaye -Original Message- From: webguy [mailto:[EMAIL PROTECTED]] Sent: Monday, January 20, 2003

Re: CFMX for J2EE JSTL

2003-01-20 Thread Dick Applebaum
Recycling the server instance did the trick -- thanks for the suggestion. When in doubt, flip the switch! Dick On Monday, January 20, 2003, at 02:58 AM, webguy wrote: You get this sorted Dick? I think I need to restart the server to get it to work. Here is an example using the rand

CFGraph question

2003-01-20 Thread Matt Kornguth
First time using CFGraph ... can anyone tell me if there is a way to surpress the outputting of the scale on the graph? Couldn't find any tag attributes relating to this. Thanks in advance, Matt Kornguth BLR.com ~| Archives:

Re: Javascript MultiDimensional Array

2003-01-20 Thread Patric Stumpe
Hi Howard, JS can only handle one-dimensional arrays. Had a similar problem. Patric MS You should declare the second array as well. MS holidayPackages.[Explorer 60] = new Array(); MS holidayPackages.[Explorer 60].dates = MS [Winter, Easter, Spring, Value, Summer, Fall, Halloween, MS Fall 2,

RE: Javascript MultiDimensional Array

2003-01-20 Thread Robertson-Ravo, Neil (RX)
sorry, whats the prob here? how to create a multi-dimensional array? -Original Message- From: Patric Stumpe [mailto:[EMAIL PROTECTED]] Sent: 20 January 2003 15:35 To: CF-Talk Subject: Re: Javascript MultiDimensional Array Hi Howard, JS can only handle one-dimensional arrays. Had a

RE: Javascript MultiDimensional Array

2003-01-20 Thread Robertson-Ravo, Neil (RX)
whats wrong with : script var multiArray = new Array(new Array('array 1 | position 1','array 1 | position 2', 'array 1 | position 3'),new Array('array 2 | position 1','array 2 | position 2','array 2 | position 3'),new Array('array 3 | position 1','array 3 | position 2','array 3 |

RE: Stealing content?

2003-01-20 Thread S . Isaac Dealey
blah, content is content and I most people don't give a toss - I can't believe anyone would be so picky etc to use or send a letter of this sort - total waste of time. There are thousands, probably millions of sites out there which are 'stealing content' and no one cares. I cant see why

RE: Stealing content?

2003-01-20 Thread Nick McClure
It happens all the time. If I post something on my site, and you come in with CFHTTP and post the content as your own, that is illegal, usually it doesn't make it to court because the companies settle. I have seen it happen around here, letter from the lawyer usually do the trick. -Original

RE: Stealing content?

2003-01-20 Thread Nick McClure
You can sue, win, and then loose on appeal. The appeals cases never make the news. -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:Neil.Robertson- [EMAIL PROTECTED]] Sent: Monday, January 20, 2003 9:22 AM To: CF-Talk Subject: RE: Stealing content? maybe in the US, but

RE: Stealing content?

2003-01-20 Thread Nick McClure
Of course I can then keep track of a few things and provide content that you don't want on your system. -Original Message- From: Todd [mailto:[EMAIL PROTECTED]] Sent: Monday, January 20, 2003 9:27 AM To: CF-Talk Subject: RE: Stealing content? I think you're forgetting that you can

domain names

2003-01-20 Thread Thomas Chiverton
http://theregister.co.uk/content/6/28922.html -- Tom C Hello- Dave. Have you found the trouble?. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: OT: Book Recomendations on UI

2003-01-20 Thread Candace Cottrell
For general stuff, I like Jakob Nielson and Marie Tahir's Homepage Usability. It gives you a pretty good idea of what to do and what not to do when building a UI. In addition, I like the Visual Quickstart Guides for an intro to Fireworks, and then check out some of the tutorials on the

RE: Stealing content?

2003-01-20 Thread Jaye Morris - jayeZERO.com
Four words for you guys. Digital Millennium Copyright Act (DMCA). http://www.loc.gov/copyright/legislation/dmca.pdf This is bad law, but still the law. Never place a client or yourself in a position that would ruin reputations. That is important. -//- Jaye Morris - Multimedia Developer -//-

PayPal IPN

2003-01-20 Thread Oliver Cookson
Hi, I was just wondering if there any free scripts\tags (version 5.0) which enable payment via PayPal's IPN? Why re-invent the wheel? Any help would be great. Thanks Oliver Cookson ~| Archives:

RE: Stealing content?

2003-01-20 Thread Robertson-Ravo, Neil (RX)
Only in the US. -Original Message- From: Jaye Morris - jayeZERO.com [mailto:[EMAIL PROTECTED]] Sent: 20 January 2003 16:20 To: CF-Talk Subject: RE: Stealing content? Four words for you guys. Digital Millennium Copyright Act (DMCA). http://www.loc.gov/copyright/legislation/dmca.pdf

RE: OT: Book Recomendations on UI

2003-01-20 Thread Stacy Young
While a bit more philosophical than practical, Inmates are running the Asylum is easily the best book on design I've read to date...also, About Face by the same author (more pratical examples) it's a little dated but the concepts are still sound. Stace -Original Message- From: Candace

Re: PayPal IPN

2003-01-20 Thread Candace Cottrell
There's a tutorial on www.easycfm.com. Look under tutorials--- advanced. It may at least get you a good working example. Candace K. Cottrell, Web Developer The Children's Medical Center One Children's Plaza Dayton, OH 45404 937-641-4293 http://www.childrensdayton.org [EMAIL

Re: PayPal IPN

2003-01-20 Thread Bruce Sorge
Go to PayPal's site. There are several examples there that they encourage you to download and use. I just integrated my company site with PayPal. It was pretty straightforward. - Original Message - From: Oliver Cookson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, January

RE: Stealing content?

2003-01-20 Thread Jaye Morris - jayeZERO.com
But the concept of syndicating content with permission and not damaging a client or studio's reputation is international and extremely sound. Jaye -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED]] Sent: Monday, January 20, 2003 11:20 AM To: CF-Talk Subject:

Re: domain names

2003-01-20 Thread Thomas Chiverton
On Monday 20 Jan 2003 16:01 pm, Thomas Chiverton wrote: http://theregister.co.uk/content/6/28922.html Oops, wrong click-ness ! -- Tom C Walt Disney has contributed more to genuine human happiness than all the religious teachers in history.

RE: Stealing content?

2003-01-20 Thread Robertson-Ravo, Neil (RX)
it happens though...but as moretti said...this is not CF. Take it CF-Community. -Original Message- From: Jaye Morris - jayeZERO.com [mailto:[EMAIL PROTECTED]] Sent: 20 January 2003 16:35 To: CF-Talk Subject: RE: Stealing content? But the concept of syndicating content with

cfinput form validation

2003-01-20 Thread Azeem Huda
I have created a typical membership form and am trying to validate the form on the client side utilising cfinput tags. However, I have come up against a few problems and am stumped. 1) I have set the required=yes in most of my cfinput fields yet the order at which the javascript error

Status of file upload using cffile

2003-01-20 Thread Paul Wilson
Hi Is it possible to give a client feedback about the status of a file that is being uploaded using cffile? Time left, file size sent kind of stuff. Thanks ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4

RE: Stealing content?

2003-01-20 Thread Jeffry Houser
As an interesting aside to this, A client of mine ( actually a friend who I'm building a site for me ) just said to me: Just copy their ( A competitors) site and change the graphics, colors, and content. My first reaction was that I couldn't steal someone elses code. My second was

RE: cfinput form validation

2003-01-20 Thread Ben Doom
Personally, I don't care for the cfinput validation stuff. It simply writes JavaScript (which I could pretty easily write myself) for whatever validation you specify. For basic validation, it's easy enough to write your own JS and have it behave /exactly/ as you want. For complicated stuff, I'm

Calling a CFC from perl

2003-01-20 Thread Brad Howerter
Yes, thanks Sean. I discovered that shortly after my original post. But I'm still having trouble... Here's my cfc code: cfcomponent output=false cffunction name=hi returnType=string output=no access=remote cfreturn 'hello, world' /cffunction /cfcomponent And here's how I'm trying to

OT: New Content at devmx.com

2003-01-20 Thread dennis baldwin
Everyone, We just wanted to let you know of some new articles that have been posted at www.devmx.com. Enjoy and please feel free to contact us if you have any article ideas or if there's anything in particular you'd like to see. How to Provide Edit Permission for TextBoxes in Flash MX by

Re: Status of file upload using cffile

2003-01-20 Thread Andrew Golden
On Mon, 2003-01-20 at 10:49, Paul Wilson wrote: Hi Is it possible to give a client feedback about the status of a file that is being uploaded using cffile? Time left, file size sent kind of stuff. Are you on a unix or windows system? If you are on a unix use cfexecute to run stat and then

RE: cfinput form validation

2003-01-20 Thread Douglas.Knudsen
yes, don't use CFFORM. Roll your own JavaScript, much better this way and much more flexible. Doug -Original Message- From: Azeem Huda [mailto:[EMAIL PROTECTED]] Sent: Monday, January 20, 2003 11:35 AM To: CF-Talk Subject: cfinput form validation I have created a typical membership

Re: So, lemme get this straight (MacOSX)

2003-01-20 Thread Christian Cantrell
Sean is right that in general, Unix is case-sensitive, however just as an aside, OS X is not. Though I would advocate using proper case on your Mac, the HFS+ file system that OS X uses (unless you did a custom installation) does not require it. It will remember case, but not require you to

Re: cfinput form validation

2003-01-20 Thread Thomas Chiverton
On Monday 20 Jan 2003 16:56 pm, Ben Doom wrote: you can make the page throw flags or highlight things or whatever instead of that standard grey box that always annoys the designers. :-) You can do this client-side, with qforms (from pengoworks) for instance. -- Tom C

Re: Status of file upload using cffile

2003-01-20 Thread Thomas Chiverton
On Monday 20 Jan 2003 17:06 pm, Andrew Golden wrote: On Mon, 2003-01-20 at 10:49, Paul Wilson wrote: Hi Is it possible to give a client feedback about the status of a file that is being uploaded using cffile? Time left, file size sent kind of stuff. Are you on a unix or windows

RE: Stealing content?

2003-01-20 Thread Jim Davis
-Original Message- From: Thane Sherrington [mailto:[EMAIL PROTECTED]] Sent: Monday, January 20, 2003 7:38 AM To: CF-Talk Subject: Stealing content? I was talking to someone the other day about ColdFusion, and they said Oh yeah, and it has that feature that allows you to

RE: Calling a CFC from perl

2003-01-20 Thread Mark A. Kruger - CFG
Brad, the CFC looks ok, but have you tried returning a variable instead of a literal? Like so: cfcomponent output=false cffunction name=hi returnType=string output=no access=remote cfset myString = 'Hello World' cfreturn myString /cffunction /cfcomponent I only offer it as a

Struct Insert overwrite

2003-01-20 Thread Eric Hoffman
Using: foo = #StructInsert(customer, first_name, #Trim(form.first_name)#, allowoverwrite)# Error. Tried: foo = #StructInsert(customer, first_name, #Trim(form.first_name)#, allowoverwrite=true)# Error. What is the correct way to do this, my book isn't very clear on this piece. Thanks

Re: OT: Book Recomendations on UI

2003-01-20 Thread Christian Cantrell
There's a book called Don't Make Me Think: A Common Sense Approach to Web Usability by Steve Krug that I've heard is quite good. I have not read it myself yet -- I am waiting to borrow a copy from a friend. Christian On Monday, January 20, 2003, at 10:00 AM, Bruce Sorge wrote: Sorry for

RE: Struct Insert overwrite

2003-01-20 Thread Mike Townend
Without testing I would assume... foo = StructInsert(customer, first_name, Trim(form.first_name), true) HTH -Original Message- From: Eric Hoffman [mailto:[EMAIL PROTECTED]] Sent: Monday, January 20, 2003 17:24 To: CF-Talk Subject: Struct Insert overwrite Using: foo =

validate=regular_expression

2003-01-20 Thread Bryan F. Hogan
I have a date form field which I have attempted to validate using CF's validate=date Which should allow mm/dd/ but it also allows mm/dd/yyy I tried to work around this by setting my validate to regular_expression with a pattern of ^\d\d\/\d\d\/\d\d\d\d$ which works perfect except for the

Re: Struct Insert overwrite

2003-01-20 Thread Scott Brady
I don't have an example of the allowoverwrite attribute working, but my guess is this: foo = StructInsert(customer, first_name, Trim (form.first_name), TRUE) (I cleaned up some of the code to remove the unnecessary pound signs) However, it'd be more helpful if you'd provide us the error

RE: Struct Insert overwrite

2003-01-20 Thread Samuel Neff
Did you try foo = StructInsert(customer, first_name, Trim(form.first_name), true); ? -Original Message- From: Eric Hoffman [mailto:[EMAIL PROTECTED]] Sent: Monday, January 20, 2003 12:24 PM To: CF-Talk Subject: Struct Insert overwrite Using: foo = #StructInsert(customer,

Re: Struct Insert overwrite

2003-01-20 Thread Scott Brady
foo = StructInsert(customer, first_name, Trim (form.first_name), TRUE) I just tested my solution, and it does work, but it also works without the quotes around TRUE. Scott Brady http://www.scottbrady.net/

Re: Struct Insert overwrite

2003-01-20 Thread Todd
structInsert(structure,key,#value#,YES) At 11:24 AM 1/20/2003 -0600, you wrote: Using: foo = #StructInsert(customer, first_name, #Trim(form.first_name)#, allowoverwrite)# Error. Tried: foo = #StructInsert(customer, first_name, #Trim(form.first_name)#, allowoverwrite=true)# Error. What is

Re: cfinput form validation

2003-01-20 Thread charlie griefer
Thomas Chiverton writes: On Monday 20 Jan 2003 16:56 pm, Ben Doom wrote: you can make the page throw flags or highlight things or whatever instead of that standard grey box that always annoys the designers. :-) You can do this client-side, with qforms (from pengoworks) for instance.

RE: Struct Insert overwrite

2003-01-20 Thread Eric Hoffman
Looks like that may have fixed itthanks. (duh) Regards, Eric J Hoffman DataStream Connexion www.datastreamconnexion.com Delivering Creative Data Solutions -Original Message- From: Mike Townend [mailto:[EMAIL PROTECTED]] Sent: Monday, January 20, 2003 11:30 AM To: CF-Talk Subject:

Deleting a row from a query?

2003-01-20 Thread Dowdell, Jason G
Hi All, What's the best way to delete a row from a query? I'd like to do it by referencing the primary key in the query but not sure how to go about it. Thanks, Jason - Jason Dowdell IM-AES Web Developer 321.799.6845 [EMAIL PROTECTED]

RE: validate=regular_expression

2003-01-20 Thread Ben Doom
^(\d\d\/\d\d\/\d\d\d\d)?$ ought to work. Untested -- use at your own risk. Please keep head and arms inside the car during the ride. Your miles may vary. -- Ben Doom Programmer General Lackey Moonbow Software, Inc : -Original Message- : From: Bryan F. Hogan [mailto:[EMAIL

RE: Deleting a row from a query?

2003-01-20 Thread Dowdell, Jason G
Nope... suppose you have a query in memory with 100 records in it. You want to delete record number 43 from the query and leave all of the other's in place. How would one go about doing this? I don't want to touch the database. I'm assuming the best way may be to copy the query to a structure

Re: Deleting a row from a query?

2003-01-20 Thread Stephen Moretti
This is a bit of a wild guess... KeyRow = StructFind(YourQuery[PrimaryKey],YourValue); for (i=1;i=ListLen(YourQuery.ColumnList;i=i+1) { thisColumn = ListGetAt(YourQuery.ColumnList,i); StructDelete(YourQuery[thisColumn],KeyRow); } Basically, I'm treating a Query as a Struct. Finding the

Re: Deleting a row from a query?

2003-01-20 Thread Stephen Moretti
Nope... suppose you have a query in memory with 100 records in it. You want to delete record number 43 from the query and leave all of the other's in place. How would one go about doing this? I don't want to touch the database. I'm assuming the best way may be to copy the query to a

  1   2   >