[ cf-dev ] Your mail to Ian Westbrook

2003-10-29 Thread Ian Westbrook
Hi Ian Westbrook is out of the office for a few days. Your mail has been received and will be dealt with when Ian returns to the office on 3rd November -- ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-

RE: [ cf-dev ] Javascript object inspector

2003-10-29 Thread duncan . cumming
nice, you should turn that into a Favelet if you haven't already. 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 ] Javascript object inspector

2003-10-29 Thread Alex Skinner
I use this if it helps anyone Alex function ListObj (obj, str) { // dump objects and contents var s = new Array (); var i; var j = 0; for (i in obj) { // get all objects, and contents s[j] = i + ": " + obj[i]; j = j + 1; } s.sort (); // sort them data down var w

RE: [ cf-dev ] Javascript object inspector

2003-10-29 Thread Paul Johnston
Thanks... Figured it out very quickly after sending the message... Hint for everyone else: Don't do this: Function getProperties(obj) { content = ''; for(var prop in object) { content += prop + ': ' + obj[prop] + '\n'; } alert(content); } Because

[ cf-dev ] Your mail to Ian Westbrook

2003-10-29 Thread Ian Westbrook
Hi Ian Westbrook is out of the office for a few days. Your mail has been received and will be dealt with when Ian returns to the office on 3rd November -- ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-

[ cf-dev ] Your mail to Ian Westbrook

2003-10-29 Thread Ian Westbrook
Hi Ian Westbrook is out of the office for a few days. Your mail has been received and will be dealt with when Ian returns to the office on 3rd November -- ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-

Re: [ cf-dev ] Your mail to Ian Westbrook - ADMIN

2003-10-29 Thread duncan . cumming
Can whoever's got Admin for this list temporarily block Ian's autoresponder messages, as I don't want to get one for every message posted to the cfdev list? ta Duncan Cumming IT Manager http://www.alienationdesign.co.uk mailto:[EMAIL PROTECTED] Tel: 0141 575 9700 Fax: 0141 575 9600 Creative s

[ cf-dev ] Your mail to Ian Westbrook

2003-10-29 Thread Ian Westbrook
Hi Ian Westbrook is out of the office for a few days. Your mail has been received and will be dealt with when Ian returns to the office on 3rd November -- ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-

RE: [ cf-dev ] Javascript object inspector

2003-10-29 Thread Adrian Lynch
var obj = new Object(); obj.name = "adrian"; obj.age = 25; for( var i in obj ) { alert(i + ": " + obj[i]); } Seems to work Ade -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED] Sent: 29 October 2003 16:55 T

[ cf-dev ] Your mail to Ian Westbrook

2003-10-29 Thread Ian Westbrook
Hi Ian Westbrook is out of the office for a few days. Your mail has been received and will be dealt with when Ian returns to the office on 3rd November -- ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-

RE: [ cf-dev ] Javascript object inspector

2003-10-29 Thread Adrian Lynch
Is there a for in loop available in JS? for (i in object) { //output properties } -Original Message- From: Paul Johnston [mailto:[EMAIL PROTECTED] Sent: 29 October 2003 16:52 To: [EMAIL PROTECTED] Subject: [ cf-dev ] Javascript object inspector What's the javascript to view the

[ cf-dev ] Javascript object inspector

2003-10-29 Thread Paul Johnston
What's the javascript to view the properties of an object? I can't remember it offhand. Ie you get an object in javascript but can't remember what objects/whatever it contains. How do you find these? Paul --- Paul Johnston PJ Net Solutions Ltd http://www.pjnetsol

[ cf-dev ] Your mail to Ian Westbrook

2003-10-29 Thread Ian Westbrook
Hi Ian Westbrook is out of the office for a few days. Your mail has been received and will be dealt with when Ian returns to the office on 3rd November -- ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-

Re: [ cf-dev ] Your mail to Ian Westbrook

2003-10-29 Thread duncan . cumming
- should fix your problems. 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 -- Get your domain names online f

[ cf-dev ] Your mail to Ian Westbrook

2003-10-29 Thread Ian Westbrook
Hi Ian Westbrook is out of the office for a few days. Your mail has been received and will be dealt with when Ian returns to the office on 3rd November -- ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-

RE: [ cf-dev ] Messages not getting through

2003-10-29 Thread Colm Brazel
Giles, Could be a problem with the network hosting your domain, I`d check with your host provider and set up some failover monitor to warn you when this happens, cause anything from a broke router/loose switch. I`m presuming you are having emails sent to you as user on some domain on some server.

RE: [ cf-dev ] CFERROR on CFMX 6.1

2003-10-29 Thread Aidan Whitehall
> Tried that now and tried creating an errors folder and directly copied > your CFERROR tag to no avail > > Will CFError pick up when an error occurs in a custom tag??? It does for me, yeah. Attached are all the error docs from our site. Maybe it's due to something that you've got specified

Re: [ cf-dev ] CFERROR on CFMX 6.1

2003-10-29 Thread Stephen Moretti
Does it work if you supply an absolute path to your error-handling template? I think the behaviour of how CF handles the paths to the error templates changed in either CF5 to 6.0 or 6.0 to 6.1. This works fine for me: Hmmm Thanks Aidan, Tried that now and tried creating an errors folder a

Re: [ cf-dev ] Sqillions of Emails

2003-10-29 Thread Stephen Moretti
Stephen, I think what he was saying is that if you just go text then the large amount of BCC values will set off anti-spam triggers. Oh yeah... Sorry... Its this CFError thing making a mess of me head... But... I do believe that some spam filters pick up emails generated by ColdFusion Server

Re: [ cf-dev ] Sqillions of Emails

2003-10-29 Thread duncan . cumming
Stephen, I think what he was saying is that if you just go text then the large amount of BCC values will set off anti-spam triggers. 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

Re: [ cf-dev ] Sqillions of Emails

2003-10-29 Thread Stephen Moretti
I did think about that, and there are obvious benefits, however we were back then using a mail relay and they often have anti-spam bcc restrictions on them. I guess it also means you'd more likely be picked up by spam-filters on mail clients? I may not have this exactly right, but you should be a

RE: [ cf-dev ] OT - MS Word forms

2003-10-29 Thread Mark Smyth
exactly the same sort of situation and reason we went the particular way we did at the time. Started off as a all singing and dancing CMS with form generation spec, which once a time estimate was given reverted to work and FTP ;) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL P

RE: [ cf-dev ] OT - MS Word forms

2003-10-29 Thread duncan . cumming
cool. I've looked into it a bit more, and it seems I can do what I want easier in Word than I can otherwise. Lots of work, short deadline, and it just makes sense for this project. They were originally meant to be able to content-manage the forms themselves, create questions etc, but they've go

RE: [ cf-dev ] OT : IFRAME / Bandwidth

2003-10-29 Thread Colm Brazel
Should have none whatsoever if the iframe contains urls means these open real player or windows media player on the local pc. If you are having problems check if a firewall issue. No problems recently testing Helix for Linux. But maybe you use some other streaming server I am unfamiliar with.if

RE: [ cf-dev ] OT : IFRAME / Bandwidth

2003-10-29 Thread Colm Brazel
Should have none whatsoever if the iframe contains urls means these open real player or windows media player on the local pc. If you are having problems check if a firewall issue. No problems recently testing Helix for Linux. But maybe you use some other streaming server I am unfamiliar with.if

RE: [ cf-dev ] CFERROR on CFMX 6.1

2003-10-29 Thread Aidan Whitehall
Does it work if you supply an absolute path to your error-handling template? I think the behaviour of how CF handles the paths to the error templates changed in either CF5 to 6.0 or 6.0 to 6.1. This works fine for me: -- Aidan Whitehall Macromedia ColdFusion De

RE: [ cf-dev ] Sqillions of Emails

2003-10-29 Thread Lovelock, Richard J
yes the 'Dear John' thing is an important consideration for these emails also which is why they are not being done as a BCC! ___ * Regards, Richard Lovelock Westminster City Council - Web Support Cap Gemini Ernst & Young Southb

RE: [ cf-dev ] Sqillions of Emails

2003-10-29 Thread Stephen Pope
I remember asking about doing it as one big BCC list but I remember being told by our sys admins that there was a limit to the amount of BCC's you could do in one email . Cant remember if it's a sendmail / qmail issue or if that's a general rule .. Ill try and dig out the info ! Stephen -Orig

RE: [ cf-dev ] Sqillions of Emails

2003-10-29 Thread Kevin Faulkner
I did think about that, and there are obvious benefits, however we were back then using a mail relay and they often have anti-spam bcc restrictions on them. I guess it also means you'd more likely be picked up by spam-filters on mail clients? Also, you lose the personalised "Dear john" aspect.

RE: [ cf-dev ] Sqillions of Emails

2003-10-29 Thread Lovelock, Richard J
we use CFMAIL to send out council newsletters to about 3000 or 4000 people (on CF5) and generally goes without a hitch, although we recently sent out a 460KB attachment and because the CFMAIL loops through the emails one at a time sending individually it did cause a few probs on the exchange server

[ cf-dev ] CFERROR on CFMX 6.1

2003-10-29 Thread Stephen Moretti
Folks, Has anyone had any issue with cferror on CFMX6.1?? I've got one in Application.cfm on an app, as a catch all. The error page, gives "The administrator is aware of your error. Please try later..." type message and emails me a cfdump of a bunch of variable scopes including error scope an

RE: [ cf-dev ] Sqillions of Emails

2003-10-29 Thread Stephen Pope
Thanks guys .. just wondered what kind of load cfmail would take :¬) Its using CF5 btw .. so we don't get any of the sexy MX 6.1 features ! (If mailing features can be considered sexy) :¬) Stephen -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 29 October 200

RE: [ cf-dev ] Sqillions of Emails

2003-10-29 Thread duncan . cumming
an alternative might be to create a temp folder, create the .cfmail's manually and use cffile / cfdirectory to transfer batches of them into the spool, from a schedule. or if you don't want to create the mail file's, have a scheduled page that checks the spool folder, if there's > 1000 mails ther

RE: [ cf-dev ] Sqillions of Emails

2003-10-29 Thread Robertson-Ravo, Neil (RX)
If you are running CFMX 6.1 "ENTERPRISE" then you will get all the good new stuff for CFMAILthings like 1 million mails a minute or something ridiculous like that! -Original Message- From: Kevin Faulkner [mailto:[EMAIL PROTECTED] Sent: 29 October 2003 12:15 To: '[EMAIL PROTECTED]' Sub

RE: [ cf-dev ] Sqillions of Emails

2003-10-29 Thread Kevin Faulkner
I have done this with CFMAIL for a recruitment site with over 20,000 emails, and yes, in pre-MX days it did occasionally cause problems ( I believe MX is more robust but have retained the same functionality ). So I did exactly what you mentioned, write the email text to a database then have a sched

Re: [ cf-dev ] Sqillions of Emails

2003-10-29 Thread duncan . cumming
5000 emails shouldn't be a problem. which version of CF are you using? even on 4.5 I think this would be ok. 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

[ cf-dev ] Sqillions of Emails

2003-10-29 Thread Stephen Pope
Lo all, If I have a DB with, say, 5,000 addresses and I want to send an email to each of them .. would it be advisable to do this through good old CFMAIL. I've never had to ever send this many emails in one go so I'm curious as to how best to send them without breaking the mail server

[ cf-dev ] CFFTP internal network

2003-10-29 Thread Kevin Faulkner
Hi all, Never tried CFFTP before, so any comments/tips much appreciated. I have a CFX_image tag on a windows box on our network that builds dynamic images, I want to be able to batch this up and then move the created images onto another CF Server on our network, only this one a Linux one - (

RE: [ cf-dev ] OT - MS Word forms

2003-10-29 Thread Mark Smyth
Hi Duncan Have done this before once, and although its not ideal it works OK. The main downside for the customer is that they then have to manually deal with the forms, which I felt at the time (and still do) more or less completed defeats them having a web based system, but hey it worked and the

[ cf-dev ] OT - MS Word forms

2003-10-29 Thread duncan . cumming
Is it possible to create a form in a Word document, similar to what we're used to in HTML forms? I see it has some form controls (text box, drop-down etc), but I've never done anything with these; they don't seem that easy to customise but I guess it's a case of playing around with the styles. Ba

RE: [ cf-dev ] OT : IFRAME / Bandwidth

2003-10-29 Thread Robertson-Ravo, Neil (RX)
:-) its what I thought initially.yours confusedly... -Original Message- From: Steve Martin [mailto:[EMAIL PROTECTED] Sent: 29 October 2003 09:42 To: [EMAIL PROTECTED] Subject: RE: [ cf-dev ] OT : IFRAME / Bandwidth The answer to the question you asked is yes, though that isn't the a

Re: [ cf-dev ] OT : IFRAME / Bandwidth

2003-10-29 Thread duncan . cumming
yeah, what Steve said. if you've got a page at http://www.yourdomain.com/page1.html that contains http://www.someotherdomain.com/page2.html";> it's the client that makes the requests, not your server. think of it as the same as if you have http://www.yahoo.com/logo.gif";> - it's their bandwi

RE: [ cf-dev ] OT : IFRAME / Bandwidth

2003-10-29 Thread Steve Martin
The answer to the question you asked is yes, though that isn't the answer to the question you meant to ask I daresay. The IFRAME is rendered on a browser. Unless that browser is on the web server then there will be no issues with the web server bandwidth. Yours pedantically, Steve ;-) > -

RE: [ cf-dev ] CFMX bugs

2003-10-29 Thread Robertson-Ravo, Neil (RX)
This is the Known Issues from the 6.1 Release: http://www.macromedia.com/support/coldfusion/releasenotes/mx/mx61_known_prob lems.html -Original Message- From: Allan Cliff [mailto:[EMAIL PROTECTED] Sent: 29 October 2003 09:41 To: CF - List Subject: [ cf-dev ] CFMX bugs What is the URL f

[ cf-dev ] CFMX bugs

2003-10-29 Thread Allan Cliff
What is the URL for a bug list of CFMX on the macromedia site?

[ cf-dev ] OT : IFRAME / Bandwidth

2003-10-29 Thread Robertson-Ravo, Neil (RX)
I can't say I have tested this which is why I'm asking If I have an IFRAME on a webserver which is streaming content from a separate location, will this IFRAME have any detrimental effects on the bandwidth of the Webserver which is hosting the IFRAME? -- ** Archive: http://www.mail-archive.

[ cf-dev ] Messages not getting through

2003-10-29 Thread Giles Roadnight
Got a message from the list saying that e-mail couldn't be delivered to me for some reason. Relevant part of bounce message: Hi. This is the qmail-send program at lon-mail-1.gradwell.net. I'm afraid I wasn't able to deliver your message to the following addresses. This is a permanent error; I've gi

RE: [ cf-dev ] Quick query question...

2003-10-29 Thread Aidan Whitehall
> current row = 1 > loop through your date range, day by day > numrecords = 0 > output the current date > loop while (using array notation) test and see if the date in > record[current row] matches the current day >numrecords = numrecords + 1 > end loop >