[ cf-dev ] Evaluate() and DE() performance

2003-01-22 Thread Dave Phipps
Hi, I was reading an article on the Northern CFUG website about generating static pages from dynamic pages and noticed the use of the Evaluate and DE functions in order to read any vars in the string. I have also read on this and several other lists about the performance problems of using thes

RE: [ cf-dev ] Cfmail errors

2003-01-22 Thread Snake Hollywood
The mail server sends all other mail fine tho. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]] > Sent: 22 January 2003 18:16 > To: [EMAIL PROTECTED] > Subject: Re: [ cf-dev ] Cfmail errors > > > > you sure there's not some other characters in either the fro

RE: [ cf-dev ] Webservices + MX

2003-01-22 Thread Tim Blair
Back to this address webservice problem again... I got the following from support, and their suggestion works fine: I can simply put "pcaContentStandardAddress" as the value for "content" and it works fine. > Have a look at > http://services.postcodeanywhere.co.uk/lookup.asmx?op=Address > and t

Re: [ cf-dev ] Cfmail errors

2003-01-22 Thread duncan . cumming
you sure there's not some other characters in either the from or to address, like a carriage return? the problem isn't with CF Server, it's with your mail server, apparently. Duncan Cumming IT Manager http://www.alienationdesign.co.uk mailto:[EMAIL PROTECTED] Tel: 0141 575 9700 Fax: 0141 575 9

[ cf-dev ] Cfmail errors

2003-01-22 Thread Snake Hollywood
Still having probs with cfmail, none sending. Even getting rid of that bcc problem hasn't helped. The logs show the following error for any mail sent. Failed to send the spooled mail file, C:\CFusion\Mail\spool\334F.cfmail. SMTP server replied "5.5.2 Illegal character in address." Moved file to C

RE: [ cf-dev ] IIF (DE) syntax

2003-01-22 Thread Paul Johnston
> I am having trouble remembering the exact syntax when using > IIF. I am > outputting some records into a table format and I want to > start a new row > after every 3rd record. I don't think this is suitable for IIF. The reason being is that there are 3 possibilities for the rowcount... Ie

Re: [ cf-dev ] IIF (DE) syntax

2003-01-22 Thread Giles Roadnight
Sorry, that shoul dbe: record 1 - Original Message - From: "Giles Roadnight" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, January 22, 2003 2:47 PM Subject: Re: [ cf-dev ] IIF (DE) syntax > I think you want this: > > > > > > > record 1 > > > > > > will g

Re: [ cf-dev ] IIF (DE) syntax

2003-01-22 Thread Giles Roadnight
I think you want this: record 1 will give you 4 cells per row. - Original Message - From: "Dave Phipps" <[EMAIL PROTECTED]> To: "ColdFusion User group" <[EMAIL PROTECTED]> Sent: Wednesday, January 22, 2003 2:43 PM Subject: [ cf-dev ] IIF (DE) syntax > Hi, > > I am having troub

[ cf-dev ] CVS users

2003-01-22 Thread Justin MacCarthy
FYI serious bug in CVS http://developers.slashdot.org/developers/03/01/21/1752251.shtml?tid=128 WG -- ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] For human help, e-mail: [

[ cf-dev ] IIF (DE) syntax

2003-01-22 Thread Dave Phipps
Hi, I am having trouble remembering the exact syntax when using IIF. I am outputting some records into a table format and I want to start a new row after every 3rd record. Like so: record 1record 2record 3 record 4record 5 and so on How do I setup the iif to do this? Thanks Dave

RE: [ cf-dev ] Replace

2003-01-22 Thread Rich Wild
:D > -Original Message- > From: Tim Blair [mailto:[EMAIL PROTECTED]] > Sent: 22 January 2003 14:37 > To: [EMAIL PROTECTED] > Subject: RE: [ cf-dev ] Replace > > > > > REReplace(string,"[^0-9]","","ALL") > > Oops. That's what I meant... > > *hangs head in shame* > > > --

RE: [ cf-dev ] Replace

2003-01-22 Thread Tim Blair
> REReplace(string,"[^0-9]","","ALL") Oops. That's what I meant... *hangs head in shame* --- OUR NEW SITE IS NOW LIVE Visit our new website at http://www.rawnet.com/ and race around the beautiful Bracknell streets at http://xmas.rawnet.com/

RE: [ cf-dev ] Replace

2003-01-22 Thread Rich Wild
rereplace(myStr, "[^0-9]", "", "ALL") remeber the ^ carat > -Original Message- > From: Tim Blair [mailto:[EMAIL PROTECTED]] > Sent: 22 January 2003 14:34 > To: [EMAIL PROTECTED] > Subject: RE: [ cf-dev ] Replace > > > > > I want to remove all non numbers from a string (0-9). > > rerep

Re: [ cf-dev ] Replace

2003-01-22 Thread Allan Cliff
Thanks - Original Message - From: Douglas Humphris To: [EMAIL PROTECTED] Sent: Wednesday, January 22, 2003 3:34 PM Subject: RE: [ cf-dev ] Replace REReplace(string,"[^0-9]","","ALL") Douglas -Original Message- From: Allan Cliff [mailto:[EMAIL PROTECTED]] S

RE: [ cf-dev ] Replace

2003-01-22 Thread Douglas Humphris
REReplace(string,"[^0-9]","","ALL") Douglas -Original Message- From: Allan Cliff [mailto:[EMAIL PROTECTED]] Sent: 22 January 2003 14:28 To: CF - List Subject: [ cf-dev ] Replace I want to remove all non numbers from a string (0-9). Help please. Allan -- ** Archive: http://www.mail-ar

RE: [ cf-dev ] Replace

2003-01-22 Thread Tim Blair
> I want to remove all non numbers from a string (0-9). rereplace(thestring, "[0-9]", "", "ALL") Should do the trick. Tim. --- OUR NEW SITE IS NOW LIVE Visit our new website at http://www.rawnet.com/ and race around the beautiful Bracknell s

Re: [ cf-dev ] Replace

2003-01-22 Thread duncan . cumming
first line should be ReplaceList(yourString, "0,1,2,3,4,5,6,7,8,9", "")> duncan.cumming@alienationde

Re: [ cf-dev ] Replace

2003-01-22 Thread duncan . cumming
ReplaceList(yourString, "0,1,2,3,4,5,6,7,8,9", ""> or REReplace(yourString, "[0-9]", "", "ALL")> this will remove all numbers, but if you want to remove all 'non numbers', you'll need to use REReplace and something else Duncan Cumming IT Manager http://www.alienationdesign.co.uk mailto:[EMAI

[ cf-dev ] Replace

2003-01-22 Thread Allan Cliff
I want to remove all non numbers from a string (0-9). Help please. Allan

Re: [ cf-dev ] OT: Javascript catching enter key press

2003-01-22 Thread Giles Roadnight
Thanks Duncan. I do have the Javascript Bible and find it very useful. Unfortunately we do not have a copy at work. - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, January 22, 2003 12:54 PM Subject: Re: [ cf-dev ] OT: Javascript catching enter key pre

RE: [ cf-dev ] Active Directory

2003-01-22 Thread Steve Martin
I need to query information pertaining to the currently logged in user and write user info back to the AD, including any extended info that the sysadmin chooses to add to the AD profiles. Basically, I'm building an intranet that validates users based on their NT login credentials - which is fair

RE: [ cf-dev ] OT: Javascript catching enter key press

2003-01-22 Thread Peter Harrison
er, wait, that was for trapping Backspace key. d'oh, silly me! - Peter -Original Message- From: Peter Harrison [mailto:[EMAIL PROTECTED]] Sent: 22 January 2003 13:11 To: [EMAIL PROTECTED] Subject: RE: [ cf-dev ] OT: Javascript catching enter key press The only way I could trap Enter was

RE: [ cf-dev ] OT: Javascript catching enter key press

2003-01-22 Thread Peter Harrison
The only way I could trap Enter was to use .hta instead of .html (which will pop up a security warning dialogue box). Here's my example: http://www.timeless.co.zw/tgos/current/ - Peter H. -Original Message- From: Giles Roadnight [mailto:[EMAIL PROTECTED]] Sent: 22 January 2003 12:49 To:

RE: [ cf-dev ] Bug Tracker

2003-01-22 Thread Peter Harrison
Funny we've been looking at some too recently. The one that passed the security screening test, and had the features we liked, and not too feature rich was Net Results' Problem Tracker. - Peter H. -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED]] Sent: 22 Janua

Re: [ cf-dev ] Bug Tracker

2003-01-22 Thread Stephen Moretti
YA_Helpdesk?? http://devex.macromedia.com/developer/gallery/info.cfm?ID=8AC99DFA-0CFE-11D7 -840D00508B94F380&method=Full Its free - Original Message - From: "Robertson-Ravo, Neil (RX)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, January 22, 2003 12:45 PM Subject: [ cf

RE: [ cf-dev ] Bug Tracker

2003-01-22 Thread Robertson-Ravo, Neil (RX)
Yeah I looked at BugZilla but it seemed a little to advanced for this...has/is anyone else using it at present? -Original Message- From: Matt Horn [mailto:[EMAIL PROTECTED]] Sent: 22 January 2003 12:59 To: [EMAIL PROTECTED] Subject: Re: [ cf-dev ] Bug Tracker BugZilla http://www.bugzill

Re: [ cf-dev ] OT: Javascript catching enter key press

2003-01-22 Thread duncan . cumming
also: http://developer.irt.org/script/1214.htm http://developer.irt.org/script/event.htm Duncan Cumming IT Manager http://www.alienationdesign.co.uk mailto:[EMAIL PROTECTED] Tel: 0141 575 9700 Fax: 0141 575 9600 Creative solutions in a technical world -

Re: [ cf-dev ] Bug Tracker

2003-01-22 Thread Matt Horn
BugZilla http://www.bugzilla.org/ At 12:45 22/01/2003 +, you wrote: Anyone know of a good (ideally free and open source) Bug Tracking type software? I need to get a replacement system in for a unit and they want it 'yesterday' :-) Thanks N -- ** Archive: http://www.mail-archive.com/dev%4

RE: [ cf-dev ] Bug Tracker

2003-01-22 Thread Justin MacCarthy
Has to be cf? Bugzilla is a very feature rich bugtracker..but it might be "too feature rich" ... http://www.mozilla.org/projects/bugzilla/ Justin > -Original Message- > From: Robertson-Ravo, Neil (RX) > [mailto:[EMAIL PROTECTED]] > Sent: 22 January 2003 12:46 > To: '[EMAIL PROTECTED]' >

Re: [ cf-dev ] OT: Javascript catching enter key press

2003-01-22 Thread duncan . cumming
lifted from the Javascript Bible: function handleKey(evt, form) { // i guess here you take a look at the evt parameter to work out wht's happening. // values like evt.data, evt.which } Duncan Cumming IT Manager http://www.alienationdesign.co.uk mailto:[EMAIL PROTECTED] Tel: 0141 57

RE: [ cf-dev ] Bug Tracker

2003-01-22 Thread Robertson-Ravo, Neil (RX)
:-) -Original Message- From: Taz [mailto:[EMAIL PROTECTED]] Sent: 22 January 2003 12:54 To: [EMAIL PROTECTED] Subject: Re: [ cf-dev ] Bug Tracker Oh, you'll be wanting the "I'm inventing that tomorrow" bug tracking software from Doesn't exist yet Ltd. They've nearly completed version 2 t

Re: [ cf-dev ] Bug Tracker

2003-01-22 Thread Taz
Oh, you'll be wanting the "I'm inventing that tomorrow" bug tracking software from Doesn't exist yet Ltd. They've nearly completed version 2 that's been obsolete since Alan Turing built the time machine. They're still supporting version 4, but I hear it has a 9 year turn around. Taz > Anyone kno

[ cf-dev ] Bug Tracker

2003-01-22 Thread Robertson-Ravo, Neil (RX)
Anyone know of a good (ideally free and open source) Bug Tracking type software? I need to get a replacement system in for a unit and they want it 'yesterday' :-) Thanks N -- ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ To unsubscribe, e-mail: [EMAIL PROTECTED] For ad

[ cf-dev ] OT: Javascript catching enter key press

2003-01-22 Thread Giles Roadnight
Hi I have searched for a solution to this but all of htem seem only to deal with key presses for the entire document. I want to run a function when the enter key is pressed when typing in a text box. I know I need to use onKeyPress() but then how do I send the key that has been pressed to the fun

RE: [ cf-dev ] ImageMagick Custom Tag...

2003-01-22 Thread Justin MacCarthy
Might be a permissions issue? ls -la ImageMagick & ls -la /ImageMagick What use is cf running as? Justin > -Original Message- > From: Stephen Moretti [mailto:[EMAIL PROTECTED]] > Sent: 22 January 2003 12:28 > To: [EMAIL PROTECTED] > Subject: Re: [ cf-dev ] ImageMagick Custom Tag...

Re: [ cf-dev ] ImageMagick Custom Tag...

2003-01-22 Thread Stephen Moretti
> try installing the Magick libraries? > They are there. /ImageMagick /bin < various binaries /lib < appropriate library files in here... /share /man > Funnily enough we are doing exactly the same right now. > I will let you know how we get on later today. Cheers A

Re: [ cf-dev ] ImageMagick Custom Tag...

2003-01-22 Thread Matt Horn
I take it you've been here http://www.imagemagick.org/ Matt At 11:55 22/01/2003 +, you wrote: Has anyone got ImageMagick and the CF Tag working on Linux? I keep getting "error in loading shared libraries: libMagick-5.5.3.so.0: cannot open shared object file: No such file or directory" an

Re: [ cf-dev ] ImageMagick Custom Tag...

2003-01-22 Thread Allan Cliff
Funnily enough we are doing exactly the same right now. I will let you know how we get on later today. Allan - Original Message - From: Stephen Moretti To: CFDeveloper Dev List Sent: Wednesday, January 22, 2003 12:55 PM Subject: [ cf-dev ] ImageMagick Custom Tag... Has any

Re: [ cf-dev ] ImageMagick Custom Tag...

2003-01-22 Thread Matt Horn
try installing the Magick libraries? At 11:55 22/01/2003 +, you wrote: Has anyone got ImageMagick and the CF Tag working on Linux? I keep getting "error in loading shared libraries: libMagick-5.5.3.so.0: cannot open shared object file: No such file or directory" and I can't work out how to

[ cf-dev ] ImageMagick Custom Tag...

2003-01-22 Thread Stephen Moretti
Has anyone got ImageMagick and the CF Tag working on Linux? I keep getting "error in loading shared libraries: libMagick-5.5.3.so.0: cannot open shared object file: No such file or directory" and I can't work out how to fix it. Any thoughts?? Stephen -- ** Archive: http://www.mail-archive.c

RE: [ cf-dev ] Free or good PDF solutions

2003-01-22 Thread Robertson-Ravo, Neil (RX)
I think I will seek more info etc on ActivePDF, it looks the bees. -Original Message- From: Taz [mailto:[EMAIL PROTECTED]] Sent: 21 January 2003 17:15 To: [EMAIL PROTECTED] Subject: Re: [ cf-dev ] Free or good PDF solutions Watch out with cf_html2pdf... it uses an executable called HTMLD

RE: [ cf-dev ] Active Directory

2003-01-22 Thread Snake Hollywood
What in particular r u updating. The IHTK cfx tags do a fair bit of it, ldap can do it. > -Original Message- > From: Steve Martin [mailto:[EMAIL PROTECTED]] > Sent: 21 January 2003 16:11 > To: [EMAIL PROTECTED] > Subject: [ cf-dev ] Active Directory > > > Anyone got any hints/tips/best