Dealing with option XML elements

2004-03-21 Thread Rich Ziade
I'm writing a cfc rss parser that parses the various formats of RSS and spits back out a complex data structure. One of the things I'm grappling with is the use of optional RSS elements and how to best code the parser to handle those. For example, I stumbled on the Slickdeals RSS feed (http://www.s

Functions, data... bah!

2004-03-21 Thread Matt Robertson
I've got a query that I run over a couple of dozen times; once for each field returned by the query.  The idea is to build lists from each set of field values, and then generate cfscript code out of it, like so: myField1="Y,N,Y,Y,Y,N,N"; myField2="A,A,A,B,G,A,B"; I have code that does this (be

Re: Functions, data... bah!

2004-03-21 Thread Jim McAtee
Tough to tell what you're trying to do, but look at the documentation for the ValueList() function and see if that doesn't get you closer to your goal. - Original Message - From: "Matt Robertson" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Sunday, March 21, 2004 2:26 PM Su

check DSL availability

2004-03-21 Thread Dwayne Cole
Working on a site for an ISP that offers DSL.  The ISP is a reseller of Sprint DSL.  We would like to have people visiting the site to check for DSL availability.   In addition we would like for the user to actually signup for DSL via the ISPs website.  Currentit's two step process, the informatio

RE: Functions, data... bah!

2004-03-21 Thread Matt Robertson
Jim McAtee wrote: >look at the documentation for the ValueList() function oy... i completely forgot about that function.  Will wipe out about 80% of those query loops.  Much better approach. thanks! Matt Robertson   [EMAIL PROTECTED] MSB Design

Re: Dealing with option XML elements

2004-03-21 Thread Bryan F. Hogan
The only other way is to use try/catch blocks. However that is inifficiant, isDefined(), etc are your friends. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: check DSL availability

2004-03-21 Thread Dick Applebaum
Don't know of any custom tags. If there are web services, they would be provided by the ISP site an/or the Sprint site. But, you can do it with cfhttp -- fill in one form to your cf program and submit the information to both the ISP and sprint sites. HTH Dick On Mar 21, 2004, at 1:46 PM, Dwa

Re: Functions, data... bah!

2004-03-21 Thread brobborb
HAHAHA i hate it when that happens   - Original Message -   From: Matt Robertson   To: CF-Talk   Sent: Sunday, March 21, 2004 4:32 PM   Subject: RE: Functions, data... bah!   Jim McAtee wrote:   >look at the documentation for the ValueList() function   oy... i completely forgot abo

HomeSite and 'Dot' Files

2004-03-21 Thread Jim McAtee
Is there a means of getting HomeSite+ to show dot files such as .htaccess in the file listing of a remote ftp server? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

html email maker

2004-03-21 Thread Tony Weeg
hi there. Its easy enough to build a form, take some input, and create an email with cfoutputs to display all kinds of good stuff...is there something to create html emails in the same fashion already built? thanks tony r e v o l u t i o n w e b d e s i g n [EMAIL PROTECTED] www.revolution

Add spaces to a text string

2004-03-21 Thread Les Irvin
How can I add a space after every comma in a list?   I'd like to change this: "Dog,Cat,Horse,Cow" to this: "Dog, Cat, Horse, Cow" Thanks in advance for your help. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Add spaces to a text string

2004-03-21 Thread Tony Weeg
try that tony r e v o l u t i o n w e b d e s i g n [EMAIL PROTECTED] www.revolutionwebdesign.com its only looks good to those who can see bad as well -anonymous -Original Message- From: Les Irvin [mailto:[EMAIL PROTECTED] Sent: Sunday, March 21, 2004 11:38 PM To: CF-Talk Subjec

Re: Add spaces to a text string

2004-03-21 Thread Toby Tremayne
Hi Les,    you can use listChangeDelims(myList,",",", ") cheers, Toby Monday, March 22, 2004, 3:38:08 PM, you wrote: LI> How can I add a space after every comma in a list?   LI> I'd like to change this: "Dog,Cat,Horse,Cow" LI> to this: "Dog, Cat, Horse, Cow" LI> Thanks in advance for you

RE: Add spaces to a text string

2004-03-21 Thread Tony Weeg
or to be a little bit anal and clean it up a bit prior to that since you "could" have Cow ,Dog,Hat, Car, Cat you could do this replace(replace(replace(yourOldString,',',',','all'),' ,',',','all'),',',', ','all')> tony r e v o l u t i o n w e b d e s i g n [EMAIL PROTECTED] www.revolution

Re: html email maker

2004-03-21 Thread Peter Tilbrook
Use the ¨type=html"attribute in the CFMAIL tag. Easy. On Mon, 2004-03-22 at 15:18, Tony Weeg wrote: > hi there. > > Its easy enough to build a form, take some input, and create an email > with cfoutputs to display all kinds of good stuff...is there something > to create html emails in the same fa