[ cf-dev ] XML feeds

2003-06-17 Thread Dave Phipps
Hi, I am still getting to grips with XML and I have a client site that provides news releases via email to subscribers. They are now requesting the option of XML feeds that would be available to remote sites to connect to. I presume this is an ideal candidate for a web service. I am not

RE: [ cf-dev ] CF MX and MySQL

2003-06-17 Thread Tim Blair
MySQL 4 is still in alpha Nooo, no no no... MySQL 4.*1* is the current alpha - 4.0.13 is the recommended stable production release. But you are correct in that the current alpha has sub-queries, the current stable release does not. Tim.

RE: [ cf-dev ] XML feeds

2003-06-17 Thread Rich Wild
Hi Dave, Luckily, to produce XML feeds doesn't take much knowledge of XML (its very boring and I can't help fall asleep when people start talking about it) So I'll tell you the layman's guide to producing feeds. You have a couple of options. You can either produce the feed with the fields you

RE: [ cf-dev ] XML feeds

2003-06-17 Thread Dave Phipps
Thanks Rich. I actually found something on www.devx.com which helped a lot but there code was a little shabby so looking at your code was a great help. Cheers Dave At 09:41 6/17/2003 +0100, you wrote: Hi Dave, Luckily, to produce XML feeds doesn't take much knowledge of XML (its very boring

[ cf-dev ] Anyone in Sussex area...

2003-06-17 Thread Damian Watson
that needs development work from time to time. Email me off list with list of sites and rates! - Original Message - From: Dave Phipps [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, June 17, 2003 10:34 AM Subject: RE: [ cf-dev ] XML feeds Thanks Rich. I actually found

RE: [ cf-dev ] Anyone in Sussex area...

2003-06-17 Thread Robertson-Ravo, Neil (RX)
is this an offer or a request?! -Original Message- From: Damian Watson [mailto:[EMAIL PROTECTED] Sent: 17 June 2003 10:47 To: [EMAIL PROTECTED] Subject: [ cf-dev ] Anyone in Sussex area... that needs development work from time to time. Email me off list with list of sites and rates!

RE: [ cf-dev ] Anyone in Sussex area...

2003-06-17 Thread Gordon Thomas
prehaps a request for an offer ;o) -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: 17 June 2003 09:41 To: '[EMAIL PROTECTED]' Subject: RE: [ cf-dev ] Anyone in Sussex area... is this an offer or a request?! -Original Message- From: Damian

RE: [ cf-dev ] Anyone in Sussex area...

2003-06-17 Thread Ashley . WHITING
Its scary down south, they are all trendified and drink in al fresco bars on the seafront and stuff. -Original Message- From: Damian Watson [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 17, 2003 10:47 AM To: [EMAIL PROTECTED] Subject: [ cf-dev ] Anyone in Sussex area... that

Re: [ cf-dev ] Anyone in Sussex area...

2003-06-17 Thread Damian Watson
It's an offer for work :) Ash--- I seen you there with your orange moccachinos - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, June 17, 2003 10:53 AM Subject: RE: [ cf-dev ] Anyone in Sussex area... Its scary down south, they are all trendified and

RE: [ cf-dev ] Anyone in Sussex area...

2003-06-17 Thread Kevin Faulkner
On a similar Southern softie note, I'm always been more development and am not convinced I am yet up to speed enough to keep our live inter- and more extra-net projects up and running sevrer/config wise. Does anyone know of a good London-based company that could send someone in for a few hours

RE: [ cf-dev ] Anyone in Sussex area...

2003-06-17 Thread Ashley . WHITING
Don't know what u mean! I only wear a mullet. What sort of dev work is it? CF? - Cuz you could try my pals at either www.juretic.com or www.nixonmcinnes.com if it aint...They are so gd..And based in Brighton..Not sure if they do much cf tho... -Original Message- From: Damian Watson

[ cf-dev ] virtual directory in CFMX standalone

2003-06-17 Thread Rich Wild
Does anyone know how I can make a virtual directory mapping in a dev machine CFMX install using the standalone webserver? ta. --- Rich Wild Senior Web Developer --- e-mango

RE: [ cf-dev ] virtual directory in CFMX standalone

2003-06-17 Thread Robertson-Ravo, Neil (RX)
yes, I think you need to edit the web.xml file within the web-inf directpry of cfusionmx -Original Message- From: Rich Wild [mailto:[EMAIL PROTECTED] Sent: 17 June 2003 11:30 To: '[EMAIL PROTECTED]' Subject: [ cf-dev ] virtual directory in CFMX standalone Does anyone know how I can make

Re: [ cf-dev ] virtual directory in CFMX standalone

2003-06-17 Thread Stephen Moretti
Edit CFusionMX/wwwroot/WEB-INF/jrun-web.xml virtual-mapping resource-path/virtualpath/resource-path system-pathYourrealfilepathhere/system-path /virtual-mapping - Original Message - From: Rich Wild [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, June 17, 2003 11:30 AM Subject:

RE: [ cf-dev ] virtual directory in CFMX standalone

2003-06-17 Thread Aidan Whitehall
Edit CFusionMX/wwwroot/WEB-INF/jrun-web.xml [snip] That's opne for the FAQ.. Promise I'll start helping soon, Stephen *sheepish look*. -- Aidan Whitehall mailto:[EMAIL PROTECTED] Macromedia ColdFusion Developer Fairbanks Environmental Ltd +44 (0)1695 51775 Queen's Awards Winner 2003

Re: [ cf-dev ] DWMX DW4? Template issues

2003-06-17 Thread Tom Smith
are you editing this in Dreamweaver? If so edit it in Notepad and save it. - Original Message - From: Paul Johnston [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, June 17, 2003 12:21 PM Subject: [ cf-dev ] DWMX DW4? Template issues Ok... I have a site which uses templates.

RE: [ cf-dev ] DWMX DW4? Template issues

2003-06-17 Thread Paul Johnston
Thought that might be a way round it. Paul -Original Message- From: Tom Smith [mailto:[EMAIL PROTECTED] Sent: 17 June 2003 12:20 To: [EMAIL PROTECTED] Subject: Re: [ cf-dev ] DWMX DW4? Template issues are you editing this in Dreamweaver? If so edit it in Notepad and save

[ cf-dev ] ot: regex

2003-06-17 Thread Alex Skinner
Guys, anyone know how in a regex I can go through a large text string and for every instance of mytag name=test height=10 width=50 renderer=q6 id=66565656 run some code extracting those attributes and passing those values into a udf RunRenderer(name,height,width,renderer,id) and replace the

RE: [ cf-dev ] ot: regex

2003-06-17 Thread Paul Johnston
:D So you want: 1) to find all instances of this string (with different attributes): mytag name=test height=10 width=50 renderer=q6 id=66565656 2) extract all of the attribute values (as name value pairs or just the values?) Test 10 50 q6 66565656 3) replace the tag with a UDF: cfset a =

RE: [ cf-dev ] ot: regex

2003-06-17 Thread Tim Blair
How's about something like this: !--- match the first mytag and eturn the sub expressions --- cfset match = refind('mytag name=([^]+) height=([^]+) width=([^]+) renderer=([^]+) id=([^]+)', mystring, 1, TRUE) !--- check the first length for something: len[1] will be 0 (false) if none found ---

[ cf-dev ] OT: perfmon and CF5

2003-06-17 Thread Kola Oyedeji
Hi I'm trying to set up perfmon to monitor coldfusion performance but for some reason I cant select any coldfusion Objects to monitor, is there a setting I've overlooked in the administrator or somewhere else I need to enable? Thanks Kola -- ** Archive:

RE: [ cf-dev ] OT: perfmon and CF5

2003-06-17 Thread Rich Wild
yea- there's a setting in the debugging section to enable perfmon -Original Message- From: Kola Oyedeji [mailto:[EMAIL PROTECTED] Sent: 17 June 2003 13:36 To: [EMAIL PROTECTED] Subject: [ cf-dev ] OT: perfmon and CF5 Hi I'm trying to set up perfmon to monitor coldfusion

RE: [ cf-dev ] OT: perfmon and CF5

2003-06-17 Thread Kola Oyedeji
Doh! I thought I'd seen it somewhere - thanks Kola -Original Message- From: Rich Wild [mailto:[EMAIL PROTECTED] Sent: 17 June 2003 13:30 To: '[EMAIL PROTECTED]' Subject: RE: [ cf-dev ] OT: perfmon and CF5 yea- there's a setting in the debugging section to enable perfmon

Re: [ cf-dev ] OT - Website Monitoring Services

2003-06-17 Thread Paddy McKay
Thanks for the responses guys. paddy We use www.alertra.com with pretty good results and features ... Cheers, Erika -- ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: [ cf-dev ] ot: regex

2003-06-17 Thread Alex Skinner
Cheers Paul, Tim I shall have a play I hate bloody regex Alex -Original Message- From: Tim Blair [mailto:[EMAIL PROTECTED] Sent: 17 June 2003 13:26 To: [EMAIL PROTECTED] Subject: RE: [ cf-dev ] ot: regex How's about something like this: !--- match the first mytag and eturn the sub

[ cf-dev ] Auto Form Checker

2003-06-17 Thread David Low
Hi Folks - I've been asked to find out if there is such a product as an online form checker. My boss is keen on programs which check for broken links in sites, but after a project where a series of broken forms were only discovered after launch, he's keen to get forms tested automatically as

Re: [ cf-dev ] Auto Form Checker

2003-06-17 Thread Stephen Moretti
David, I've been asked to find out if there is such a product as an online form checker. My boss is keen on programs which check for broken links in sites, but after a project where a series of broken forms were only discovered after launch, he's keen to get forms tested automatically as

Re: [ cf-dev ] Auto Form Checker

2003-06-17 Thread duncan . cumming
you could try something that does automatic form submission. eg: http://www.hoobie.net/brutus/index.html - this is a password cracker, but it seems to do an ok job at parsing forms and discovering the different fields etc. i'm sure there is some much better and more suitable software to use

RE: [ cf-dev ] Auto Form Checker

2003-06-17 Thread Steve Martin
Get the local 6th form on the blower and say you have a work experience position for someone interested in IT QA and would they like to send someone along for a week for no pay. -Original Message- From: David Low [mailto:[EMAIL PROTECTED] Sent: 17 June 2003 16:09 To: '[EMAIL

RE: [ cf-dev ] Auto Form Checker

2003-06-17 Thread David Low
Stephen/Duncan, In terms of broken links from forms. Not sure - there are app out there that will check ordinary hrefs, but I'm not sure whether they cover form actions too. Besides Shouldn't this sort of thing be caught in unit and user testing?? ;oD Well that's true but

RE: [ cf-dev ] Auto Form Checker

2003-06-17 Thread Ashley . WHITING
Haha nice Ashley M. Whiting Web development New Media Team Schools Communications Unit Department for Education Skills T: 020 7925 6535 M: 07817 763972 Alternate Email: [EMAIL PROTECTED] -Original Message- From: Steve Martin [mailto:[EMAIL PROTECTED] Sent: Tuesday,

RE: [ cf-dev ] CFX_PGP

2003-06-17 Thread Steve Martin
Has arrived. www.digitaloutlook.com w00 -- ** 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: [EMAIL PROTECTED]

RE: [ cf-dev ] CFX_PGP

2003-06-17 Thread Rich Wild
wahey! Just in time too! I'm beginning a project I need it on tomorrow! -Original Message- From: Steve Martin [mailto:[EMAIL PROTECTED] Sent: 17 June 2003 16:58 To: [EMAIL PROTECTED] Subject: RE: [ cf-dev ] CFX_PGP Has arrived. www.digitaloutlook.com w00 -- ** Archive:

RE: [ cf-dev ] DWMX DW4? Template issues

2003-06-17 Thread Colm Brazel
to save having to try reconstruct a template from a page based on a template (easy enough to do this) good idea to pay attention to keeping backups of templates, in case you break one and irreversibly mess it up even though you try to make good with undo panic attack, this may be no good if you

RE: [ cf-dev ] Auto Form Checker

2003-06-17 Thread Aidan Whitehall
Get the local 6th form on the blower and say you have a work experience position for someone interested in IT QA and would they like to send someone along for a week for no pay. Rofl. You obviously went to the same business school as some of my previous employers. -- Aidan Whitehall

[ cf-dev ] CFUN

2003-06-17 Thread Damian Watson
Anyone going from UK? -- ** 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: [EMAIL PROTECTED]