[cfaussie] outputting recordset

2007-04-05 Thread Scott Thornton
Hi, You probably don't want to calculate the length of the array within every iteration of the loop if it does not change. cfset arraylength = arrayLen(data) Dale Fraser [EMAIL PROTECTED] 05/04/2007 3:29 pm Working example. cfset data = listToArray('1,2,3,4,5,6,7,8,9,10,11,12,13') /

[cfaussie] Re: Unable to retrieve collections from the Search Service.

2007-04-05 Thread Greg Misdom
Hi Sean, don't know if this will help, but last time i got an error like this, that wasn't corrected by the technote solution first up, was because the collection was in a different location than standard and had been either overwritten or deleted by accident. I was able to track it down through

[cfaussie] QLD CFUG April meeting announcement.

2007-04-05 Thread Barry Beattie
Next Wednesday 11th April the Qld CFUG will again spring into action (so it's Autumn - gimmee a break, OK?). Energised by far too much Easter Choklit we've got a big night: WebDU2007 wrap-up. What was there, who was there, why be

[cfaussie] CFUG Melbourne: April 19th User Group Meeting

2007-04-05 Thread Mark Mandel
All, it's time again to get the Melbourne CFUG user group happening on a regular basis. We have speakers for the next 3 months, so let's get the ball rolling. Location: NGA.net, Level 2, 17 Raglan St, South Melbourne Map: http://link.toolbot.com/google.com/73016 When: 19th of April, Meeting

[cfaussie] Re: outputting recordset

2007-04-05 Thread Andrew Scott
Yes they are very quick and it wouldn't make any perfomace issue one way or the other. On 4/5/07, Dale Fraser [EMAIL PROTECTED] wrote: Ahh, Picky, in my defence, array functions are very quick :P Regards Dale Fraser http://dale.fraser.id.au/blog -Original Message- From:

[cfaussie] Re: outputting recordset

2007-04-05 Thread Dale Fraser
Ahh, Picky, in my defence, array functions are very quick :P Regards Dale Fraser http://dale.fraser.id.au/blog -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott Thornton Sent: Thursday, 5 April 2007 4:26 PM To: cfaussie@googlegroups.com

[cfaussie] Re: WSE Security - anyone have any experience with it?

2007-04-05 Thread Shane Farmer
Glad I can be of assistance. The web service I am working on now at work processes millions of dollars worth of transactions a month and it is all based on Java WSSE (very similar to what CF uses). You shouldn't find any real problems with talking to it through CF (as far as security goes). The

[cfaussie] Re: outputting recordset

2007-04-05 Thread Steve Onnis
Ok thought I would put my 2cents in here. I figured if you wanted to adapt it for more than 3 columns or less than 3 columns it would be silly to be hard coding in cells so here you go. cfset query = queryNew() / cfset queryAddColumn(query, column, listToArray(1,2,3,4,5,6,7,8,9,10,11)) /

[cfaussie] Re: Blog

2007-04-05 Thread Raymond Camden
See Andrew's post. Just add an issue at RIAForge. On 4/4/07, Justin Mclean [EMAIL PROTECTED] wrote: Hi Ray, Done so and thanks for use of your BlgCFC software - it's very easy to customise. BTW is there a way to submit enhancements/fixes to your blog.CFC code? I fixed a minor date issue

[cfaussie] XHTML Regular Expression

2007-04-05 Thread Steve Onnis
Hey all Anyone help me out here? I am trying to get a regular expression to work that will close any BR or IMG tags if they are not closed. This is what I have so far cfsavecontent variable=html img alt= src=http://www.inevative.com.au/storage/images/gold-coins2.jpg; br

[cfaussie] Re: XHTML Regular Expression

2007-04-05 Thread Scott Arbeitman
have you tried using JTidy (or something like it) to convert your HTML to XHTML? I find this solution is a big more elegant and general purpose. Steve Onnis wrote: Hey all Anyone help me out here? I am trying to get a regular expression to work that will close any BR or IMG tags if they are