Re: [cfaussie] Creating A String With ## values in coldfusion

2015-03-01 Thread Blair McKenzie
missed and there > are ~ popping up unexpectedly... > > my 2c > > (from memory, YMMV) > > /** # as delim **/ > "1212"> > > > > > > On Mon, Mar 2, 2015 at 9:53 AM, Blair McKenzie wrote: > >> Another alternative - create the output wit

Re: [cfaussie] Creating A String With ## values in coldfusion

2015-03-01 Thread Blair McKenzie
Another alternative - create the output with a substitute delimiter, like ~, and then use replace to change them to hashes. Blair On Mon, Mar 2, 2015 at 10:41 AM, Dale Fraser wrote: > I would break it apart > > > > ”> > > > > To > > > > > > > > Regards > > Dale

Re: [cfaussie] Access XML Element

2013-11-24 Thread Blair McKenzie
but assumes that row 1 is the id which is dangerous. > > > > Regards > > Dale Fraser > > > > *From:* cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] *On > Behalf Of *Blair McKenzie > *Sent:* Monday, 25 November 2013 2:17 PM > *To:* Unname > *Subject:* R

Re: [cfaussie] Access XML Element

2013-11-24 Thread Blair McKenzie
You need XPath. Something like this should return the node you want, then you can access the text as you normally would: XmlSearch(myxmldoc, "/result/recorddetail/FL[@val='id']") http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSc3ff6d0ea77859461172e0811cbec22c24-78cc.html http://www.w3sch

Re: [cfaussie] cfimage processing slow

2012-08-08 Thread Blair McKenzie
Yes. ImageMagick is like the gold standard of image processing tools. On Thu, Aug 9, 2012 at 9:55 AM, Steve Onnis wrote: > does that handle cmyk images? > > ** ** > > *From:* Blair McKenzie [mailto:shi...@gmail.com] > *Sent:* Thursday, 9 August 2012 9:54 AM

Re: [cfaussie] cfimage processing slow

2012-08-08 Thread Blair McKenzie
Does the job need to be done with ColdFusion? Even if this is an ongoing task, at the scale you're talking about I have to agree with Josh - ImageMagick would be better. Throwing to ImageMagick with CFEXECUTE separately for each image might be faster than CFIMAGE. It would definitely be faster for

Re: [cfaussie] bind complete

2012-04-17 Thread Blair McKenzie
No, but that's a good idea. There are several improvements to the watch stuff that would make custom access easier. Would you be willing to use the latest branch code? Blair On Wed, Apr 18, 2012 at 12:20 PM, Steve Onnis wrote: > I am working with existing code which is using the tag. I was > h

Re: [cfaussie] bind complete

2012-04-17 Thread Blair McKenzie
At the moment that would be difficult. Obviously you can ftWatch the state field to update a third field, but for custom behaviour you will need to reproduce some of the ftWatch functionality in your own javascript: $j("select[name^=mystate]").live("click",function(){ ... }); Blair On Wed, Apr 18

Re: [cfaussie] Manipulating CFHTTP Source IP

2012-04-12 Thread Blair McKenzie
May not work (depending on how the web service is set up) but you could try using the X-Forwarded-For header in the requests. There is also using an HTTP proxy, though I'm not sure how that affects the IP address of a request. Blair On Thu, Apr 12, 20

Re: [cfaussie] Re: Amazon EC2 hosting services viability

2011-09-07 Thread Blair McKenzie
As far as I can tell there are three main advantages of "cloud" infrastructure, and others have already mentioned most of them: 1) you don't have to manage your own hardware 2) pay by the hour - good for development, and ties into #3 3) you can bring up new instances effectively instantly - both ad

Re: [cfaussie] Dynamic function calls

2011-06-09 Thread Blair McKenzie
As far as I'm aware you need to use . Blair On Fri, Jun 10, 2011 at 2:11 PM, Steve Onnis wrote: > > > I am trying to achieve this... (which i can do in other languages) > > > > Component[“get#VarName#”]() > > > > Though CF is throwing an error. Is this possible at all or do i have to > use Eva

Re: [cfaussie] Re: web services and application.cfc

2011-05-05 Thread Blair McKenzie
You might be able to check the requested url. Blair On Fri, May 6, 2011 at 11:35 AM, BarryC wrote: > hmmm, It would be ideal to check within our Application.cfc if the > request is a SOAP request, but using IsSOAPRequest() inside > application.cfc doesn't work, it always returns false. Is there

Re: [cfaussie] Weird Structure Behaviours

2010-12-08 Thread Blair McKenzie
A space perhaps?. If you set values with struct.key, the keys in the dump are always capitalised. These values were set using the struct["key"] syntax, which supports non-variable name keys Blair On Thu, Dec 9, 2010 at 3:51 PM, Cassie Woolley wrote: > What is interesting is that in your dump the

Re: [cfaussie] exit a cfc function call from a long polling request

2010-10-17 Thread Blair McKenzie
I would expect cfabort to kill the request, even in a thread. Blair On Mon, Oct 18, 2010 at 12:08 AM, Steve Onnis wrote: > I am working on an implementation of an XMPP IM server and i have a long > polling request setup to receive incoming messages from the server and i am > wanting to know if

Re: [cfaussie] The solution: Odd date behaviour - CF9/SQLServer2005

2010-06-09 Thread Blair McKenzie
Good point. It only becomes an issue when the date has to be a string at some point, e.g. form fields. On 09/06/2010 5:40 PM, "Sean Corfield" wrote: On Tue, Jun 8, 2010 at 10:19 PM, Mike Kear wrote: > It boiled down to a code... Storing dates as formatted strings is just asking for problems. I'

Re: [cfaussie] The solution: Odd date behaviour - CF9/SQLServer2005

2010-06-08 Thread Blair McKenzie
I don't think that's the issue - us date formats would only kick in with the named formats (i.e. "short"). Since he provided the format, the output should be a generic string in that format. Mike, when I've had that issue I got around it by outputing the month with the abbreviation rather than the

Re: [cfaussie] Odd date behaviour - CF9/SQLServer2005

2010-06-07 Thread Blair McKenzie
The problem is probably related to dates where the day could also be interpreted as the month. From the symptoms you're describing, I would guess that -mm-dd is the default but -dd-mm is used to somehow resolve ambiguous dates. Blair On Tue, Jun 8, 2010 at 9:23 AM, Mike Kear wrote: > I

Re: [cfaussie] Display XML on webpage

2010-06-06 Thread Blair McKenzie
Have you tried the htmleditformat function? On Mon, Jun 7, 2010 at 2:44 PM, Scott Thornton < scott.thorn...@hnehealth.nsw.gov.au> wrote: > Hi, > > interestingly it kinda of works, at least IE display the xml now. > > Originally, i replaced all of the > with ">" etc in the query thinking > that t

Re: [cfaussie] Frameworks and MVC

2010-06-01 Thread Blair McKenzie
It sounds like you have very particular requirements. You'll probably need to roll your own. Blair On Wed, Jun 2, 2010 at 1:18 PM, Steve Onnis wrote: > we had a demo of FW/1 at our CFUG last week and even though yes it is > stripped down regarding the framework itself, you still had the folder

Re: [cfaussie] email attachments

2010-04-12 Thread Blair McKenzie
To simplify this, you can set remove="true" on cfmailparam to indicate that the file should be deleted after the email is sent. Blair On Tue, Apr 13, 2010 at 10:21 AM, Seona Bellamy wrote: > When I've had to do this sort of thing in the past, I've always found that > the easiest way was to crea

Re: [cfaussie] CFqueryparam value's in debug output

2010-03-24 Thread Blair McKenzie
Try dumping the entire error. There is another variable that contains the parameters. On Thu, Mar 25, 2010 at 10:40 AM, Scott Thornton < scott.thorn...@hnehealth.nsw.gov.au> wrote: > > Yup, cfqueryparms can be seen in dumps of sql queries. > > I guess I was referring to in particular was when an

Re: [cfaussie] CFqueryparam value's in debug output

2010-03-24 Thread Blair McKenzie
queryparam values are included in error output and cfcatch structs if the the error was in the SQL execution. You shouldn't have to modify anything. Blair On Thu, Mar 25, 2010 at 8:47 AM, Scott Thornton < scott.thorn...@hnehealth.nsw.gov.au> wrote: > G'day, > > Is there any way to access the val

Re: [cfaussie] Question about a method call in a cfoutput query="{method call here}"

2010-02-22 Thread Blair McKenzie
I'm pretty sure cfoutput only accepts variables. Blair On Tue, Feb 23, 2010 at 11:08 AM, nkosi wrote: > Hi All, > > This is more of an observation rather than a call for help. > > Does anyone know why, if I attempt to call a method in the 'query' > parameter of it errors? It also errors when u

Re: [cfaussie] Re: Weird Problem Element is Undefined problem

2009-11-24 Thread Blair McKenzie
Is it possible "x in y" is returning items that aren't technically struct keys? Blair On Wed, Nov 25, 2009 at 5:05 PM, KC Kuok wrote: > Before i forget STRUCTVARIABLE = structCopy(Bigstruct.byExportKey > [ExportID]) was without the structCopy before... did not make a > difference... > > On Nov

[cfaussie] Re: Value must be initialized before use - Its possible that a method called on a Java object created by CreateObject returned null

2009-10-22 Thread Blair McKenzie
au/privacy-policy.cfm > > > > P* *please consider the environment before printing this e-mail > > > ------ > *From:* cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] *On > Behalf Of *Blair McKenzie > *Sent:* Thursday, 22 October 2009 7:32 PM > > *To:* cfau

[cfaussie] Re: Value must be initialized before use - Its possible that a method called on a Java object created by CreateObject returned null

2009-10-22 Thread Blair McKenzie
Just throwing this out there, but I've seen similar errors when I turn off session for bots. Code tries to access session scope, and it doesn't exist. It's been a while though, so this may be red herring. Blair On Thu, Oct 22, 2009 at 8:11 PM, Taco Fleur wrote: > Thanks Joel, > > I had a look i

[cfaussie] Re: xml error with stylesheet

2009-09-21 Thread Blair McKenzie
Looks like some of your values contain HTML, and it's not validating. Try adding CDATA's or cleaning up the values before outputing them. Blair On Tue, Sep 22, 2009 at 11:49 AM, Greavesy wrote: > > I am attempting to create an xml output from a sql table. When I open > the page in IE it displa

[cfaussie] Re: CFmail & Attaching Document To Mailto Links

2009-08-31 Thread Blair McKenzie
Found this: http://www.ianr.unl.edu/internet/mailto.html. Covers what you can do with the mailto syntax. Anything else you want to do you'll have to do server-side. Blair On Tue, Sep 1, 2009 at 12:37 PM, wrote: > Hi, > > > > Currently I am using cfmail to create an email that attaches selected

[cfaussie] Re: Submit data remotely to Twitter using HTTP POST

2009-07-14 Thread Blair McKenzie
1. The character limit is a key part of Twitter - the whole point is that users only have to read or write a short message. For your use case the answer might be a very short description plus a tiny url. 2. Twitter could be very effective, but it probably depends on what you're publishing. The key

[cfaussie] Re: Virtual ANZ Friday beer o'clock... - Connect room link

2009-06-23 Thread Blair McKenzie
I just had a vision of a 24hr beer o'clock mexican wave, with the baton being passed through the timezones. Blair On Wed, Jun 24, 2009 at 3:03 PM, Kai Koenig wrote: > Hi all, > here's the room link for Friday's virtual beer o'clock. > > http://connectpro53389065.acrobat.com/beeroclock/ > > I'll

[cfaussie] Re: PHP to CF help

2009-06-16 Thread Blair McKenzie
The Charles proxy might be able to do it. Blair On Wed, Jun 17, 2009 at 12:16 PM, Ben Lowndes wrote: > On Wed, Jun 17, 2009 at 12:12 PM, Steve Onnis wrote: > >> Whats the form look like? >> > > That's part of the problem - because it's being posted from a Cocoa app I > can't see exactly the st

[cfaussie] Re: View email as text only in gmail

2009-05-04 Thread Blair McKenzie
You can use "Show original" from the menu under "Reply", that will give you the actual email source code. Finding the text part is relatively easy. I haven't been able to find another way. Blair On Tue, May 5, 2009 at 11:59 AM, Steve Onnis wrote: > anyone know how to do this? > > > > --~--~--

[cfaussie] Re: How do you handle previews?

2009-02-16 Thread Blair McKenzie
FarCry does this by adding status and versionid fields to a content type. Status to indicate which data is live / pending / draft, and versionid to link draft content to live content. This means that any given piece of content can have two versions in the database (our workflow doesn't allow both p

[cfaussie] Re: CFMAIL On Shared Hosting Servers

2008-12-01 Thread Blair McKenzie
Chris's suggestion (or something like it) is what you're after. Blair On Tue, Dec 2, 2008 at 3:13 PM, Claude Raiola <[EMAIL PROTECTED]> wrote: > I am aware of the reason for restricting from email addresses to prevent > spamming etc > > thats not my question, i must not have explained myself cl

[cfaussie] Re: CSS question

2008-11-30 Thread Blair McKenzie
... what? On Mon, Dec 1, 2008 at 1:14 PM, Claude Raiola <[EMAIL PROTECTED]> wrote: > I am an equal opportunist and i hate with great disdain these dam gender > specific lobby groups > > To put you in the picture to illustrate my point of how i see equality > amongst men and women here is my thoug

[cfaussie] Re: onclick this

2008-11-24 Thread Blair McKenzie
If the button doesn't have a name it won't be included in the form post. Blair On Tue, Nov 25, 2008 at 4:59 PM, Mark Ireland <[EMAIL PROTECTED]>wrote: > I have had slow forms that benefited from a submit button with > > onclick="this.disabled=true;this.value="Relax, your form submitted already"

[cfaussie] Re: Pull apart a html table

2008-11-23 Thread Blair McKenzie
You could add an XML declaration and parse it into an XML object. You'll still have to find the table in the HTML though. Blair On Mon, Nov 24, 2008 at 4:45 PM, Steve Onnis <[EMAIL PROTECTED]> wrote: > > Would it be easier for you to convert it to a CSV format and process it > from > there? > >

[cfaussie] Re: coldfusion.runtime.TemplateNotFoundException

2008-11-20 Thread Blair McKenzie
Do you have a / CF mapping? On Fri, Nov 21, 2008 at 4:21 PM, Barry Beattie <[EMAIL PROTECTED]>wrote: > > > Anyone got any suggestions? > > > clear the template cache in the CFIDE CF Administrator? > > just guessing... > > > > --~--~-~--~~~---~--~~ You received thi

[cfaussie] Re: parsing as string into a text and numeric portion

2008-11-20 Thread Blair McKenzie
If you have long complex strings you can use regex to return an array refering to each number in the string or each text block. But the other suggestions are easiest if the string is always as simple as you just described. Blair On Fri, Nov 21, 2008 at 11:24 AM, Scott Thornton < [EMAIL PROTECTED

[cfaussie] Re: Purchasing Enterprise

2008-10-27 Thread Blair McKenzie
If you would like a quote contact Vanessa ([EMAIL PROTECTED]). She'll be able to give you info about payment options. Blair On Tue, Oct 28, 2008 at 3:52 PM, Simon Haddon <[EMAIL PROTECTED]>wrote: > Try Rae Burckener who is normally active on this list. > > On 28/10/2008, Scott Thornton <[EMAIL P

[cfaussie] Re: Coldfusion & Daylight saving

2008-06-03 Thread Blair McKenzie
Have you checked the request flash sends? Charlesis AMAZING for that kind of debugging. It also occurred to me that the other part of this process is the data - could the problem be there? Blair On Wed, Jun 4, 2008 at 1:33 PM, Stephen Davey <[EMAIL PROTECTED]> wrote

[cfaussie] Re: Coldfusion & Daylight saving

2008-06-03 Thread Blair McKenzie
Is the date that the flash sends correct? Also, many problems like this come up because of a time zone difference between the client and the server. Blair On Wed, Jun 4, 2008 at 8:39 AM, Stephen Davey <[EMAIL PROTECTED]> wrote: > > > Hi > > > > Thanks for all the replies, I am checking the JVM v

[cfaussie] Re: Cold Fusion 8 and CFPDF

2008-05-01 Thread Blair McKenzie
ColdFusion can create static PDFs on the fly, but not a form PDFs. Blair On Thu, May 1, 2008 at 10:45 PM, Claude Raiola <[EMAIL PROTECTED]> wrote: > Does anyone know how to create dynamic interactive pdf forms using the > new CFPDF function in CF8 where logos in each form can be dynamically > g

[cfaussie] Re: adding a label/instructional text to a flashform (CF7)

2008-04-23 Thread Blair McKenzie
Also, to put multiple things on one line: On Wed, Apr 23, 2008 at 5:09 PM, Blair McKenzie <[EMAIL PROTECTED]> wrote: > Remember you can pass in styles, so: > > > Blair > > > On Wed, Apr 23, 2008 at 4:55 PM, barry.b <[EMAIL PROTECTED]> wrote: > > >

[cfaussie] Re: adding a label/instructional text to a flashform (CF7)

2008-04-23 Thread Blair McKenzie
Remember you can pass in styles, so: Blair On Wed, Apr 23, 2008 at 4:55 PM, barry.b <[EMAIL PROTECTED]> wrote: > > > > Chris, that idea got shot down in flames when I suggested it an hour > ago. it's an admin section, nobody really cares and it's just about to > go live. > > to do so means that

[cfaussie] Re: Application Variable

2008-04-22 Thread Blair McKenzie
; [EMAIL PROTECTED]> wrote: > > Possibly.. What would you recommend that i look at particularly? > > >>> "Blair McKenzie" <[EMAIL PROTECTED]> 23/04/2008 12:57 pm >>> > Could there be an issue with initialising not being done inside a lock? > > Bl

[cfaussie] Re: Application Variable

2008-04-22 Thread Blair McKenzie
Could there be an issue with initialising not being done inside a lock? Blair On Wed, Apr 23, 2008 at 8:36 AM, Scott Thornton < [EMAIL PROTECTED]> wrote: > > Hi, > > The last two nights I have had a problem with some of our overnight batch > type processing scheduled jobs. > > A few of them emai

[cfaussie] Re: MYOB as a datasource - has anyone done it?

2008-03-03 Thread Blair McKenzie
cfdbinfo give you anything? Blair On Tue, Mar 4, 2008 at 5:32 PM, Mike Kear <[EMAIL PROTECTED]> wrote: > > yes i have a ODBC DSN set up in the WinXPPro administration tools > MYOB provide a connection test app, (click and it says "DSN OK" or > "DSN Failed"). So i set up the ODBC DSN in WIndows,

[cfaussie] Re: Flex Builder as main CF IDE

2008-03-03 Thread Blair McKenzie
I think the plugin is just an option in the standard installer. Blair On Tue, Mar 4, 2008 at 11:03 AM, Bryce Hoffmann <[EMAIL PROTECTED]> wrote: > I installed the released Flex Builder 3. > > Looks like the installed Eclipse Platform is 3.3.1 > > That was the full Windows Stand-alone version. I

[cfaussie] Re: removing extra spaces

2008-02-10 Thread Blair McKenzie
The docssay that line feeds etc count as white space. You could use [ \t] instead of \s to explicitly say space or tab. Blair On Feb 11, 2008 3:36 PM, Taco Fl

[cfaussie] Re: [cfaussie]

2008-01-22 Thread Blair McKenzie
It sounds like an error I've gotten when I've had spaces or comments before the initial ?xml declaration. Try triming the filecontent. Blair On Jan 23, 2008 2:54 PM, Ian Marshall <[EMAIL PROTECTED]> wrote: > Hi Everyone, > > I have an application that has been working quite nicely for over a yea

[cfaussie] Re: customize "500 there is no web application configured to service your request" error

2008-01-20 Thread Blair McKenzie
It sounds like the error you get when CF isn't available. Most webservers allow you to customise those pages. If you want to customise CF 500 error pages, you can change the Site Wide error page in CF admin. The only catch is that it has to be the same page for every application on the server, so

[cfaussie] Re: Cookie over SSL - vulnerability

2008-01-15 Thread Blair McKenzie
Reminds me of the "orange" captcha Jeff Atwood uses on his blog - you have to type in orange to comment. That one absurd precaution apparently blocks 99.9% of his comment spam. Blair On Jan 16, 2008 12:04 PM, Taco Fleur <[EMAIL PROTECTED]> wrote: > Hi Simon, > > You're probably right, and where

[cfaussie] Re: Small but large problem

2008-01-09 Thread Blair McKenzie
I'm not sure what you're doing with the LIKE comparisons in the field list. Are you trying to return true for the matching records? It's not invalid syntax, but my instinct says that just LocationName should be in the field list (if at all) and the LIKE match should be in the where clause. Blair

[cfaussie] Re: 301 redirect not changing URL

2007-12-17 Thread Blair McKenzie
Is there any reason not to use cflocation? Does it not handle that stuff? Blair On Dec 18, 2007 10:38 AM, Ryan Sabir <[EMAIL PROTECTED]> wrote: > Yeah but I want the redirect to be a "Moved Permanently" rather than > "Moved Temporarily". Its for a site that has changed its URL structure. > > -

[cfaussie] Re: Derby Embeded Database (CF8) and Eclipse/FlexBuilder

2007-12-10 Thread Blair McKenzie
ARTISTID > FROM ARTISTS AS ARTISTS1 ORDER BY ARTISTID)) > ORDER BY ARTISTID > > > > > > > > > > > > Andrew Scott > Senior Coldfusion Developer > Aegeon Pty. Ltd. > www.aegeon.com.au > Phone: +613 8676 4223 > Mobile: 0404 998 273 > > > > > > *Fr

[cfaussie] Re: Derby Embeded Database (CF8) and Eclipse/FlexBuilder

2007-12-10 Thread Blair McKenzie
Um, is there a problem with using maxrows? I thought that it was included for just this kind of reason - variations in DB support. Blair On Dec 11, 2007 11:17 AM, Andrew Scott <[EMAIL PROTECTED]> wrote: > > Geoff, > > You can't be serious can you... > > In a real world example when pagination is

[cfaussie] Re: regex - replacing a string outside of 'tags'

2007-12-06 Thread Blair McKenzie
Glen, it look like your regex will match tag attributes. e.g. it would find style in . Or am I missing something? Blair On Dec 7, 2007 7:47 AM, Adam Chapman <[EMAIL PROTECTED]> wrote: > > Hi Glen, > > Just what I was after, nice work. > > Thanks to all who put thought into it. > > Regards, > Ada

[cfaussie] Re: regex - replacing a string outside of 'tags'

2007-12-05 Thread Blair McKenzie
Here's a stab rereplace(mystring,"(>[^<]*)(#escapedsearchstring#)","\1\2","ALL") Assumes the search is in an html fragment - will only find instances of the string after a >. Blair On Dec 6, 2007 2:33 PM, Adam Chapman <[EMAIL PROTECTED]> wrote: > > Hi All, > > Wondering if regex wizards out the

[cfaussie] Re: super.init( argumentsCollection = arguments ); Major dramas...!

2007-11-28 Thread Blair McKenzie
Don't know where I saw it. Maybe I was hallucinating :). Blair On Nov 28, 2007 10:01 PM, Adam Cameron <[EMAIL PROTECTED]> wrote: > > > I think that's a bug in CF - super.xxx functions don't accept > > argumentCollection. > > Which version of CF, Blair? > > Seems to work OK for me (7,0,2,142559,

[cfaussie] Re: super.init( argumentsCollection = arguments ); Major dramas...!

2007-11-27 Thread Blair McKenzie
I think that's a bug in CF - super.xxx functions don't accept argumentCollection. I sort of remember a work around where super was assigned to a local variable, and then somehow argumentCollection worked on that. Blair On Nov 27, 2007 9:57 PM, Taco Fleur <[EMAIL PROTECTED]> wrote: > Hello all, >

[cfaussie] Re: regex not working in REFind

2007-11-13 Thread Blair McKenzie
The regex engine is CF is limited. If the CF docs on the subject don't mention a feature then it doesn't have it. Stuff like \x7F is almost certainly something CF doesn't support. The alternative is to use the Java's regex. There are a few functions to do this around already. Blair On Nov 14, 200

[cfaussie] Re: JavaScript Libraries :: XML vs JSON

2007-10-29 Thread Blair McKenzie
jQuery can also process XML. Not sure of the exact syntax, but you basically pass in XML as the response type when the request is made, and you can do normal jQuery selections on the returned result. i.e. #id elementname Blair On 10/30/07, AJ Mercer <[EMAIL PROTECTED]> wrote: > > What are people

[cfaussie] Re: Is there a delete version of queryAddRow()?

2007-10-10 Thread Blair McKenzie
select * from yourquery where primarykey not in (list,of,items,to,remove) Blair On 10/11/07, Seona Bellamy <[EMAIL PROTECTED]> wrote: > > Heya, > > Working with a large cached query here (it's used several different times > on the page in several different ways, so we've cached the whole big quer

[cfaussie] Re: a FARCRY question: for use in Education?

2007-09-03 Thread Blair McKenzie
I'm sure other people have needed the rules like those, but that's not saying much - you're describing very generic functionality. But developing a rule that is both as flexible as you describe and straightforward to use is ... difficult. So usually we end up doing something more specific. If you'

[cfaussie] Re: a FARCRY question: for use in Education?

2007-09-02 Thread Blair McKenzie
I think you forgot to ask the actual question. :P It looks like you want to know if FarCry can do that stuff. Out of the box it can't, mainly because you're describing functionality that might only be used once. But FarCry is designed with extensibility in mind, and you would find it trivial to de

[cfaussie] Re: CFHTTP - asynchronous?

2007-08-30 Thread Blair McKenzie
Sounds like your proxy is caching data. Caching definitely explains the 8sec => 0sec change. Blair On 8/30/07, AJ Mercer <[EMAIL PROTECTED]> wrote: > > Hi Fusioneers, > > I am using cfhttp to download images from a remote website > and I have a start end time around the tag and keep a running tot

[cfaussie] Re: Query Help

2007-08-29 Thread Blair McKenzie
I agree with the others. Your problem is a text book example of what normalising is for. Having tags represented in a separate table allows you to find all the items with a specific tag or find all tags on a specific item with one lightening quick select. Blair On 8/30/07, Haikal Saadh <[EMAIL PR

[cfaussie] Re: Evaluating regular expression back references

2007-08-22 Thread Blair McKenzie
ctly into the REreplace so i > am only updating what i need > > > > > -- > *From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] *On > Behalf Of *Blair McKenzie > *Sent:* Thursday, 23 August 2007 12:34 PM > *To:* cfaussie@googlegroups.com >

[cfaussie] Re: Evaluating regular expression back references

2007-08-22 Thread Blair McKenzie
n into another > function and be able to pass that back into the REReplace so i dont have to > loop over the string looking for email addresses. Keep in mind that the > string would be an entire HTML page. > > Make sense? > > ------ > *From:* cfaussie@go

[cfaussie] Re: Evaluating regular expression back references

2007-08-22 Thread Blair McKenzie
acter in the email address with its&# value so i need to be able > to evaluate the back references to the values of the back references are > passed into the function > > -- > *From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] *On > Behal

[cfaussie] Re: Evaluating regular expression back references

2007-08-22 Thread Blair McKenzie
If you're only replacing symbols you don't really need regex. For most symbols, just replace them with their &## counterpart: replacelist(str, "@,%", "&#asc('@')#,&#asc('%')#") If you need to replace &s you need to make sure to do so before any other symbols. Blair On 8/22/07, Steve Onnis <[EMAI

[cfaussie] Re: ajaxCFC Question

2007-08-20 Thread Blair McKenzie
I'm not familiar with ajaxCFC, but it sounds like you're talking about the JS side? You could pass an empty, anonymous function, i.e. put function(){} wherever you don't need a callback but the JS does. Blair On 8/20/07, jonny_noog <[EMAIL PROTECTED]> wrote: > > > Hello, > > For anyone who is fam

[cfaussie] Re: Reg Epression help

2007-08-09 Thread Blair McKenzie
m.au> > > Phone: +613 8676 4223 > > Mobile: 0404 998 273 > > > > > > > > > > > > *From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] > > *On Behalf Of *Blair McKenzie > > *Sent:* Friday, 10 August 2007 11:02 AM > > *To:* cfauss

[cfaussie] Re: Reg Epression help

2007-08-09 Thread Blair McKenzie
I don't think the /.../ is supported by CF. Try removing that and the gi. To do a case insensitive regex use rereplacenocase. Blair On 8/10/07, Andrew Scott <[EMAIL PROTECTED]> wrote: > > > > This is driving me nuts anyone know why this isn't working. > > > > "/(<\/?META[^>]*>)/gi",'') /> > > >

[cfaussie] Re: [OT] Javascript issue on MACs

2007-07-12 Thread Blair McKenzie
The body onLoad is triggered when the html is loaded, not when external resources are loaded, but you should be able to attach an onLoad to the image itself. I got more on this from another list: load is triggered on a document, image, or frame when all of its contents have fully loaded, we can ob

[cfaussie] Re: Query Structure

2007-07-11 Thread Blair McKenzie
results.field[5] Blair On 7/12/07, KNOTT, Brian <[EMAIL PROTECTED]> wrote: > > I'm having a slow mind afternoon > > How do I look at a particular record in a query using structure notation. > E.g. results[5].field > > > Brian Knott > MIS Specialist > Pricing and MIS CFO Banking > Level 8 Suncorp

[cfaussie] Re: SURVEY RESULTS: Is ColdFusion OO?

2007-07-10 Thread Blair McKenzie
Reminds be of the bit Steven Colbert did - The Word - Wikiality . Blair On 7/10/07, M@ Bourke <[EMAIL PROTECTED]> wrote: > > "So ColdFusion is Object Oriented after all," > > LOL democracy doesn't work this way. > if democracy dec

[cfaussie] Re: CF8 Bug with ReportBuilder

2007-07-10 Thread Blair McKenzie
A tutorial or two sounds good. I'd be interested in learning more about what's involved in using the Report Builder, and what can be done with it. Blair On 7/11/07, Dale Fraser <[EMAIL PROTECTED]> wrote: > > I reported a bug with Report Builder, hope it's not too late :). > > > > But it was such

[cfaussie] Re: Coldfuson is dead - why did no one tell me

2007-06-03 Thread Blair McKenzie
Unfortunately there are some key elements missing: createobject, cfimport, custom tags, and query of queries. Blair On 6/4/07, Haikal Saadh <[EMAIL PROTECTED]> wrote: > > > Don't forget http://smithproject.org/ > > Open Source CF Implementation. > > It has most of the tags and functions CF has. >

[cfaussie] Re: CFAussie Community Head Count

2007-05-31 Thread Blair McKenzie
Ping Blair On 6/1/07, Matt Voerman <[EMAIL PROTECTED]> wrote: > > > Hi Guys, > Just a quick note to let you guys know that we at the Adobe Australia > office haven't forgotten about you, and do monitor this (and several > other) lists on a regular basis. > > We have a couple of Community related

[cfaussie] Re: Objects in the application scope

2007-05-08 Thread Blair McKenzie
Simultaneous access mainly gets tricky if you're reading and writing the same variables. If your functions are self-contained and only use local function variables I wouldn't expect any problems. Blair On 5/9/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > Hi all, > > If i have objects of

[cfaussie] Re: What's it all mean for CF developers? [Flex now Open Source'd]

2007-04-26 Thread Blair McKenzie
s_committers_to_the_project.3F > > mike chambers > > [EMAIL PROTECTED] > > Blair McKenzie wrote: > > You shouldn't assume that open source = open contributions. Open source > > means only one thing - the source code is publicly available. It does > > NOT mean th

[cfaussie] Re: What's it all mean for CF developers? [Flex now Open Source'd]

2007-04-26 Thread Blair McKenzie
You shouldn't assume that open source = open contributions. Open source means only one thing - the source code is publicly available. It does NOT mean that Adobe is going to allow community contributions to the core code base. In fact I would say that it is very unlikely that Flex will be opened t

[cfaussie] Re: URLs without ? - Search engine friendly URLs

2007-04-26 Thread Blair McKenzie
Have a look at url rewrites. ISAPI rewrite for IIS, Apache has it built in. This functionality allows you to use regular expressions to alias 'pretty' urls to url that contains a query string. Blair On 4/26/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > Hi all, > > I was reading something

[cfaussie] Re: Version Controlling a Database

2007-04-16 Thread Blair McKenzie
Have you looks at full transaction log backups? I know that for MS SQL Server, if you have full transaction logs it is possible to restore the database to a particular point in time. Not exactly sure what role the schema plays in this, but I suspect that ALTER statements are handled exactly the sam

[cfaussie] Re: [OT] Dynamic order by

2007-04-15 Thread Blair McKenzie
The order by value doesn't get returned, only the values defined in the select list do. As far as I know the data type of your dynamic order by shouldn't matter. Blair On 4/14/07, Taco Fleur <[EMAIL PROTECTED]> wrote: > > Its a stored procedure, and the INTEGER values need to be casted to a > str

[cfaussie] Re: Looking For Programming Job?

2007-04-09 Thread Blair McKenzie
Anyone looking at this shouldn't bother. The website is just google ads and a google search box. Blair On 4/9/07, John <[EMAIL PROTECTED]> wrote: > > > Find Your Programming Job Vacancy and resources here --> > http://www.jobbankdata.com/job-programming.htm > > > > > --~--~-~--~~

[cfaussie] Re: Affordable Flex Training

2007-04-04 Thread Blair McKenzie
I'm interested. Blair On 4/5/07, Haikal Saadh <[EMAIL PROTECTED]> wrote: > > > I put my hands up for Brisbane... a lovely city ; ) > > (That's an 'interested' hand, though, not a 'commited' hand). > > Allan Browning wrote: > > Getting away from the certificate discussion, is there any show of > >

[cfaussie] Re: Web Version Control

2007-03-30 Thread Blair McKenzie
I've set up Subversion to run as a service on the svn:// port and that works very well for me. I figured out how to automatically deploy checkins to a test server too which makes using svn a lot simpler. Blair On 3/30/07, AJ Mercer <[EMAIL PROTECTED]> wrote: > > here is a neat article on setting

[cfaussie] Re: The "variant" data type is not supported.

2007-03-19 Thread Blair McKenzie
Doesn't ring a bell. What is the context? Blair On 3/19/07, Taco Fleur <[EMAIL PROTECTED]> wrote: > > I am getting the following in CFMX7 and MS SQL 2005 > > The "variant" data type is not supported. > > Is this known, and is there a work-around? > > Thanks in advance. > > -- > Taco Fleur - http:

[cfaussie] Re: REMINDER: QLD CFUG March meeting tonight

2007-03-13 Thread Blair McKenzie
Can't remember if I RSVP's so here it is again. Blair On 3/14/07, Barry Beattie <[EMAIL PROTECTED]> wrote: > > > just a gentle reminder that if you're coming tonight and you haven't > RSVP'd yet, please let us know somehow* ... and real soon, yes? thanx > > we're just about to organise the cateri

[cfaussie] Re: Another CFQUERYPARAM peculiarity

2007-03-03 Thread Blair McKenzie
Your database may accept an empty string as a date, but that doesn't mean that cfqueryparam does. Blair On 3/4/07, Mike Kear <[EMAIL PROTECTED]> wrote: > > > Something that's been bugging me for a while but i never got around to > finding the reason/fix for the problem. I figured out a workaroun

[cfaussie] Re: Dreamweaver regular expressions

2007-02-12 Thread Blair McKenzie
le names effect that pattern? eg MY_TABLE_NAME ? > > > > >>> "Blair McKenzie" <[EMAIL PROTECTED]> 13/02/2007 2:10 pm >>> > Assuming your table names do not include spaces: > /INSERT INTO [^ ]* WITH (NOLOCK)/ > > If you have indenting etc in

[cfaussie] Re: Dreamweaver regular expressions

2007-02-12 Thread Blair McKenzie
Assuming your table names do not include spaces: /INSERT INTO [^ ]* WITH (NOLOCK)/ If you have indenting etc in the sql then: /INSERT\s*INTO\s*[^\s]*\s*WITH\s*(NOLOCK)/ Blair On 2/13/07, Scott Thornton <[EMAIL PROTECTED]> wrote: > > > Hi, > > I need to look through my code for the INSERT INTO *

[cfaussie] Re: OT: Javascript: Enter key form submit

2007-02-04 Thread Blair McKenzie
Instead of submitting the form via code, trigger the click event on the button. That should cause the form to submit in the same state as if the user used the mouse instead of the keyboard. Blair On 2/5/07, Adam Chapman <[EMAIL PROTECTED]> wrote: > > > Hi Scott, > > How about giving your button a

[cfaussie] Re: OT - recommendations for managing my contract

2007-02-03 Thread Blair McKenzie
Talk to an accountant. Seriously. You shouldn't risk your income on second hand advice when there are professionals available. Blair On 2/3/07, mercury <[EMAIL PROTECTED]> wrote: > > > It looks like I'm going to have to invoice my employer on my next > contract. I suppose that means invoicing, P

[cfaussie] Re: Acrobat

2007-01-30 Thread Blair McKenzie
THE RULES [Ponder Stibbons' observations of the early days of Roundworld] 1. Things fall apart, but centres hold. 2. Everything moves in curves. 3. You get balls. 4. Big balls tell space to bend. 5. There are no turtles anywhere. 6. ...It's so depressing. FYI Blair On 1/31/07, <[EMAIL PROTECTED

[cfaussie] Re: Google suggest functionality/spellcheck

2007-01-26 Thread Blair McKenzie
One way to get better results might be to restrict the set of potential corrections to words that actually appear in the same document. i.e. if the user searches for "coldfusion cfuery" the search would find documents containing coldfusion, then try to correct cfuery by matching with other words t

[cfaussie] Re: A Big Year For QLDCFUG in 2007! (announce: first meeting Jan 31st)

2007-01-25 Thread Blair McKenzie
I'll be there too. I'll be waiting on the roof with a large safe. Blair On 1/25/07, Scott Barnes <[EMAIL PROTECTED]> wrote: > > Look forward to it! :) > > (I'll come in a trench coat and dark glasses) > > > On 1/25/07, Barry Beattie <[EMAIL PROTECTED]> wrote: > > > > > (please forgive the x-post

  1   2   >