[cfaussie] Re: Count keywords found

2006-04-12 Thread Blair McKenzie
Depending on the application, you might be able optimize for searching by doing the indexing yourself when a new CV or keyword is added. ie an index table that correlates CVs-keywords.Only practical if you know the keywords set beforehand though. BlairOn 4/12/06, Taco Fleur [EMAIL PROTECTED]

[cfaussie] Re: RegEx brain fart

2006-04-12 Thread Blair McKenzie
What are you using at the moment?On 4/13/06, Taco Fleur [EMAIL PROTECTED] wrote: I'm drawing a blank on coming up with a regex for the following; I have some HTML that I read in a variable, then I highlight the keywords with a regex, which is fine, but some keywords might be contained within a

[cfaussie] Re: [OT] window.location and target?

2006-04-28 Thread Blair McKenzie
Yes, you would have to use JS. Instead of cflocation, output scriptwindow.location=http://www.yoururl.com/script into the body of the page.Blair On 4/28/06, Joel Cass [EMAIL PROTECTED] wrote: window.open (URL, target, attribs, saveHistory)Look it up at MSDN-Original Message-From:

[cfaussie] Re: [OT] window.location and target?

2006-04-28 Thread Blair McKenzie
I've found W3Schools to be a very good reference for JS (and CSS).BlairOn 4/28/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Thanks, that looks more like it, I'll give it a shot.Kind regards,Taco Fleur (Mobile 0421 851 786)Commerce Engine Pty Ltd - Australia's leading online Payment

[cfaussie] Re: HTTP Error 405

2006-05-01 Thread Blair McKenzie
It's possible your server only accepts form submissions from it's own domain.BlairOn 5/2/06, Dale Fraser [EMAIL PROTECTED] wrote: Hi, I have a piece of client software that http posts some data, I'm trying to interface with it with no luck. It returns an error 405 Here is the

[cfaussie] Re: DISTINCT not so distinct

2006-05-07 Thread Blair McKenzie
I think Chris has probably hit on the problem with the mutliple categories. If you are selecting the category as one of the fields, then your query will return a separate record for each category. The records aren't affected by DISTINCT when the records aren't actually the same. BlairOn 5/8/06,

[cfaussie] Re: Dates

2006-05-16 Thread Blair McKenzie
Sorry, round has two parameters. Put a 0 as parameter 2.BlairOn 5/17/06, Blair McKenzie [EMAIL PROTECTED] wrote:This is valid transact sql. You might need to put it in a stored procedure to use it. round((month(date_field)+2)/14)+year(date_field) as financial_year This should return the correct

[cfaussie] Re: encoding and word docs

2006-05-21 Thread Blair McKenzie
What is the encoding for the cf page? The header might effect how the output is interpreted at the client, but the cf setting determines how it is outputed.BlairOn 5/22/06, Mark Ireland [EMAIL PROTECTED] wrote: Anyone know why this code returns a microsoft word doc from a blob but withthe wrong

[cfaussie] Re: Dynamic CSS

2006-05-26 Thread Blair McKenzie
Kym makes a good point.The main advantage of external css files is the ability to cache the css and share it with other pages. And if caching is no longer part of the equation Carl, why have an external css at all? Why not just embed it in every page and avoid the whole issue? BlairOn 5/27/06, Kym

[cfaussie] Re: [OT] File upload with Ajax

2006-06-06 Thread Blair McKenzie
I know that gmail does it with attachments. Don't know how it's done though.BlairOn 6/7/06, Taco Fleur [EMAIL PROTECTED] wrote:Is there any way to upload a file with AJAX? I know you can POST data with AJAX, just not sure whether you can upload a file, and if you can, how? I had it working with

[cfaussie] Re: [OT] bring up file dialogue with JS

2006-06-07 Thread Blair McKenzie
Actually Google doesn't do it with a link. Attach a file displays a file input, it doesn't open the dialog.BlairOn 6/8/06, Taco Fleur [EMAIL PROTECTED] wrote: OK, this works - a href="" 'fileUpload1' ).click();test/a Just what I need, its an IE only environment anyway. On 6/8/06, Taco Fleur

[cfaussie] Re: invoking cfx tag using Evaluate

2006-06-19 Thread Blair McKenzie
Use the attributecollection attribute of the tag. Just pass in the arguments struct of the method to this attribute in the hard coded tag.cffunction name=yourFunction output=true cfx_j attributecollection=arguments/cffunctionOn 6/20/06, Scott Arbeitman [EMAIL PROTECTED] wrote: No, because the

[cfaussie] Re: Saving Images into Database

2006-06-20 Thread Blair McKenzie
Does doing it in plain CF make any difference?BlairOn 6/21/06, Scott Thornton [EMAIL PROTECTED] wrote:Hello,I use CFX_PUTIMAGE to save images into my database. I find it very slow.Is there any alternatives?Scott Thornton, ProgrammerApplication DevelopmentInformation Services and

[cfaussie] Re: DHTML JS help

2006-06-21 Thread Blair McKenzie
Element.offsetWidth should provide the adjusted width of an element. I think the standard way to center a div is to set the left and right margins to auto.BlairOn 6/22/06, Andrew Scott [EMAIL PROTECTED] wrote: Has anyone got a bit of JS code that gets the size of a div element that hashad dynamic

[cfaussie] Re: Includes

2006-06-27 Thread Blair McKenzie
You could take the next step with this by turning UDF into a component and putting it in application scope. Define it once then access it everywhere.BlairOn 6/27/06, Matthew [EMAIL PROTECTED] wrote: The best thing would be to create a file called udf.cfm and writecfinclude template=udf.cfm. Then

[cfaussie] Re: QofQ

2006-06-27 Thread Blair McKenzie
Instead of selecting the records between those times, create a new field/column in the query that represents that information. ie (datepart(hour,your_date) * 2 + iif(datepart(minute,your_date) = 30,1,0) as half_hour Then you can order by that field and use grouping if you want.BlairOn 6/28/06, Rod

[cfaussie] Re: AXIS error on MX7

2006-07-04 Thread Blair McKenzie
Sounds like the issue is related to how CF provides web services. I personally haven't had any trouble instantiating cfc's located outside webroot.BlairOn 7/5/06, Joel Cass [EMAIL PROTECTED] wrote: Ok.. figured it outSo it seems, you cannot create a CFC outside the web root defined in setupand

[cfaussie] Re: ot: db architecture question

2006-07-05 Thread Blair McKenzie
Stored procedures are a good. They abstract SQL out of code to the point where they are behind an extra layer of security. You give them parameters and get recordsets back.Blair On 7/6/06, Dale Fraser [EMAIL PROTECTED] wrote: I don't get it.Just get the SQL admins to create you a read only account

[cfaussie] Re: MORE.... [changed behavour: CF 6.1 to 7.0 - missing CGI (custom) variables]

2006-07-13 Thread Blair McKenzie
Would it be practical to add code to application.cfm/cfc that retrieves those variables and puts them in cgi manually? You could have all the error checking you want then.I'm assuming CGI isn't read only.Blair On 7/13/06, Mark Mandel [EMAIL PROTECTED] wrote: I've not seen a better case scenario

[cfaussie] Re: Calling Page

2006-07-13 Thread Blair McKenzie
GetCurrentTemplatePath()As for the component that calls a given function, possibly caller scope is available (like in tags/modules) but you may have to pass it into the function as an argument.Blair On 7/14/06, Dale Fraser [EMAIL PROTECTED] wrote: Not sure that's what I want.From a cfc I need to

[cfaussie] Re: Passing by reference to COM Objects

2006-07-20 Thread Blair McKenzie
Another one of the usual suspects - if the call takes place in a function then you'll need to declare outdata locally with var, or every call will be accessing the same global variable.Blair On 7/20/06, PSernz [EMAIL PROTECTED] wrote: Thanks, I'm sure this will probably work however I would like

[cfaussie] Re: SOT: CF Intranet System

2006-07-23 Thread Blair McKenzie
Pretty straight forward. There's a video walk through from Jeff Coughlin at http://www.jeffcoughlin.com/?PG=9. And there is a very active mailing list for people developing on top of FarCry at http://groups.google.com/group/farcry-dev.BlairOn 7/24/06, Dale Fraser [EMAIL PROTECTED]

[cfaussie] Re: http viewer

2006-08-02 Thread Blair McKenzie
It looks like ServiceCapture is meant to be used by a developer on a client machine, not the server.That aside, the website mentions that FF needs to be configured by changing the proxy, to work with SC. Probably CF would need similar configuration. BlairOn 8/3/06, Toby Tremayne [EMAIL PROTECTED]

[cfaussie] Re: XML close tag

2006-08-21 Thread Blair McKenzie
I don't think so. For most parsers they're equivalent anyway.On 8/21/06, Andrew Mercer [EMAIL PROTECTED] wrote: is it possible using CFMX7 xml functions to specify how you want an tag with a blank value to be closed? myTag/myTagversesmyTag / - this is what I am getting

[cfaussie] Re: DHTML Data Grid

2006-08-21 Thread Blair McKenzie
I use JQuery which has some table/grid extensions. Live grid loads data via AJAX, static headers, and resizable columns. TableSorter can be used to make the table sortable (and detects a ridiculous number of types).May not be exactly what you're after, but there are other options around. No

[cfaussie] Re: Cold Fusion Tutor - hourly rate

2006-08-24 Thread Blair McKenzie
We have a CFUG meeting once a month. If you drop in on one you'll meet a lot of local CF developers happy lend a hand.BlairOn 8/25/06, Pragnesh [EMAIL PROTECTED] wrote: Hi Pete,I live on the GC. Feel free to send me any questions to my gmail. --~--~-~--~~~---~--~~

[cfaussie] Re: Why buy into CF?

2006-08-29 Thread Blair McKenzie
Besides the support issues, there is also a level of polish in CF that other languages don't have. Some points are:CF components are an access=remote away from being web servicesquery-of-queries custom tags - they may seem like a trivial feature but can make code incredibly intuitiveBlairOn

[cfaussie] Re: CF webservices - output parameters

2006-08-30 Thread Blair McKenzie
Developer Aegeon Pty. Ltd. www.aegeon.com.au Phone:+613 8676 4223 Mobile : 0404 998 273 From: cfaussie@googlegroups.com [mailto: cfaussie@googlegroups.com] On Behalf Of Blair McKenzie Sent: Thursday, 31 August 2006 2:52 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: CF

[cfaussie] Re: [ANN] NSW CFUG Meeting Sept 11th

2006-09-06 Thread Blair McKenzie
Damn. How do we get an open b-I mean LiveCycle presentation here in Brisbane?BlairOn 9/7/06, Chris Velevitch [EMAIL PROTECTED] wrote:LiveCycle: what is it and how can we work with it. Mark Szulc of Adobe will give us an overview of LiveCycle an give ussome insight as to how to work with it.6:30

[cfaussie] Re: Coldfusion Server problems

2006-09-11 Thread Blair McKenzie
Check the services running on the machine and make sure that the ColdFusion ones have restarted.BlairOn 9/12/06, Scott Thornton [EMAIL PROTECTED] wrote:A colleague of mine writes: Hi All,I have an intranet site that went down due to a power outage, and now no matter what I do it will not serve

[cfaussie] Re: Outputting to Excel - how to incorporate styles

2006-09-13 Thread Blair McKenzie
Actually Dale is correct. The standard way to generate excel spreadsheets the way you want is to generate an html table and set the doc type to application/vnd.ms-excel the way you have. When a user opens the page, their browser detects the mime type and opens the page in excel and excel

[cfaussie] Re: decimal places

2006-09-17 Thread Blair McKenzie
CFLib is awesomeBlairOn 9/18/06, Tom MacKean [EMAIL PROTECTED] wrote: Hi List, How do I round a number to a certain number of decimal places (in this case three). e.g. . should become .667 and .1 should become .100 I can't seem to find a function that does it. Thanks, Tom--

[cfaussie] Re: Cf knowledgeTree

2006-09-20 Thread Blair McKenzie
The only opensource CF CMS I know of is FarCry, which is pretty powerfull.BlairOn 9/20/06, Rod Higgins [EMAIL PROTECTED] wrote: Hi, Is there anything in open source written in coldfusion that can compare to KnowledgeTree which is written mostly in php? Basically looking for a document

[cfaussie] Re: getting the name of the calling method within another CFC

2006-09-25 Thread Blair McKenzie
http://www.bennadel.com/blog/116-Finding-Template-Execution-Stack-in-ColdFusion.htmBlair On 9/26/06, Barry Beattie [EMAIL PROTECTED] wrote: I think I've come across this before but I've gotten rusty and can't remember.if I have a method in Foo.cfc called GetBarByID()and in that I'm calling other

[cfaussie] Re: Query picking up an odd value from somewhere

2006-09-26 Thread Blair McKenzie
If the fields are the same, just use a QoQ union egcfquery dbtype=query name=qCombinedselect * from qA union select * from qB/cfqueryOn 9/27/06, Seona Bellamy [EMAIL PROTECTED] wrote: On 27/09/06, Joel Cass [EMAIL PROTECTED] wrote: My own take on it would be that there is an issue with

[cfaussie] Re: Google Codesearch doesn't know about CF!

2006-10-05 Thread Blair McKenzie
It definitely has CF projects though: I found FarCry with a simple search, and searches for CF tags produces quite a few results.BlairOn 10/5/06, Brett Payne-Rhodes [EMAIL PROTECTED] wrote: http://google.com/codesearchThis could have been interesting - except it doesn't list Coldfusion as a

[cfaussie] Re: ColdFusion trend?

2006-10-16 Thread Blair McKenzie
I agree. I came to my CF job out of uni with no experience with it and found it to be the easiest language I'd ever seen (cfquery - sweet). A couple of weeks later I was, not an expert, but competent enough to be developing a new website solo. The learning curve in CF is so smooth that anyone

[cfaussie] Re: CF Regexes

2006-10-19 Thread Blair McKenzie
CF regex does have limitations. Look-around is cut back so much it's almost useless.BlairOn 10/19/06, Robin Hilliard [EMAIL PROTECTED] wrote:What isn't working?CF uses the Java regex libraries AFAIK, I've never had a problem, and that's with some pretty seriousexpressions.The main thing to watch

[cfaussie] Re: CF Regexes

2006-10-19 Thread Blair McKenzie
What's the simplest way to access Java regex?BlairOn 10/20/06, Haikal Saadh [EMAIL PROTECTED] wrote: Look around, some probs with greedy and non-greedy matching, groupsdon't work as expected. (I've cut and pasted regexes from a java regex test applet into refind,and it didn't work).Blair McKenzie

[cfaussie] Re: CF Regexes

2006-10-19 Thread Blair McKenzie
] On Behalf Of Blair McKenzie Sent: Friday, 20 October 2006 12:37 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: CF Regexes What's the simplest way to access Java regex? Blair On 10/20/06, Haikal Saadh [EMAIL PROTECTED] wrote: Look around, some probs with greedy and non-greedy matching

[cfaussie] Re: How to create a popup window after some Cf processing

2006-10-22 Thread Blair McKenzie
Sounds like you want ajax functionality. The way to do this that takes the least amount of time and preperation is to add a hidden iframe to the page, then target the form at that iframe. The cfm processes the url parameters and outputs _javascript_ that opens the popup. If this is going to be an

[cfaussie] Re: cfdocument - css - background images

2006-10-29 Thread Blair McKenzie
My experience with cfdocument is that it is very limited. Convenient - but limited. If you need to do anything sophisticated with PDF documents I'd suggest you look at java libraries. I remember a thread some time back discussing that. BlairOn 10/30/06, AJ Mercer [EMAIL PROTECTED] wrote: Any one

[cfaussie] Re: json in js code

2006-12-06 Thread Blair McKenzie
There is nowhere near enough information in this post. I appreciate how fustrating dev can be, but if you want help you need to give us more detail. Blair On 12/6/06, Mark Ireland [EMAIL PROTECTED] wrote: Can I use stuff from a json string like this? var s = 'something'; for (var j in

[cfaussie] Re: Why XHTML?

2006-12-06 Thread Blair McKenzie
That can backfire for basic custom tags - put in a / at the end and the tag runs twice. Blair On 12/6/06, Scott Barnes [EMAIL PROTECTED] wrote: I will say this though. Spend some time coding within FLEX space and you can't but help close tags as you're so used to being pounded by the

[cfaussie] Re: json in js code

2006-12-06 Thread Blair McKenzie
True. But in the case of importing json strings into JS it is necessary. In fact eval could have been designed for json, if it weren't created well before :). If the myjson is just a JSON string you've outputed into a script tag, then that would work - the JSON will be evaluated with the reset of

[cfaussie] Re: Regular expressions - backreference as a number

2006-12-13 Thread Blair McKenzie
I don't know of any regex engine that will perform numeric operations. Possibly perl. The CF regex engine is VERY cutdown. The best workaround I can think of is to use refind with subexpressions and then loop through the result array. Blair On 12/14/06, Matthew [EMAIL PROTECTED] wrote: Hi

[cfaussie] Re: Regular expressions - backreference as a number

2006-12-13 Thread Blair McKenzie
Cool! On 12/14/06, Joel Cass [EMAIL PROTECTED] wrote: OK.. Please no messages saying ooh.. evaluate() bad.., but cfscript str_text = This works in 90% of all operations; str_text = replace(str_text, ##, , all); str_text = ReReplace(str_text, ([0-9]*)%,##\1-25##%,all); result =

[cfaussie] Re: Breaking out of the cfexecute shell

2006-12-21 Thread Blair McKenzie
That's what I've had to do. I never did figure out what the problem was. Blair On 12/22/06, Joel Cass [EMAIL PROTECTED] wrote: Hello all, We are migrating a legacy app to CF 7.0 on Windows 2003 and everything works, except that it has to execute a program to create some rather specific PDF

[cfaussie] Re: Uploading Video

2007-01-17 Thread Blair McKenzie
I think youtube converts videos to generic flv's, then the front end part is a player that just loads the required flv at run time. Blair On 1/17/07, Bruce Trevarthen (B2 Limited) [EMAIL PROTECTED] wrote: Yeah this is how YouTube works. Must be possible. -Original Message- From:

[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-posting with the

[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, cfgroupie [EMAIL

[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 * WITH

[cfaussie] Re: Dreamweaver regular expressions

2007-02-12 Thread Blair McKenzie
? 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 the sql then: /INSERT\s*INTO\s*[^\s]*\s*WITH\s*(NOLOCK)/ Blair On 2/13/07, Scott Thornton [EMAIL PROTECTED] wrote

[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 workaround and

[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 -

[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 up

[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 hands from

[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: 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

[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 about

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

2007-04-26 Thread Blair McKenzie
[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 that Adobe is going to allow community contributions to the core code base. In fact I would

[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 the

[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 irons in

[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. Scott

[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 an

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

2007-07-10 Thread Blair McKenzie
Reminds be of the bit Steven Colbert did - The Word - Wikialityhttp://www.colbertondemand.com/videos/The_Word/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 decided

[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 Centre 36

[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. cfset newResult = rereplace(

[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 [EMAIL

[cfaussie] Re: Evaluating regular expression back references

2007-08-22 Thread Blair McKenzie
looking for email addresses. Keep in mind that the string would be an entire HTML page. Make sense? -- *From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Blair McKenzie *Sent:* Thursday, 23 August 2007 12:14 PM *To:* cfaussie

[cfaussie] Re: Evaluating regular expression back references

2007-08-22 Thread Blair McKenzie
-- *From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Blair McKenzie *Sent:* Thursday, 23 August 2007 12:34 PM *To:* cfaussie@googlegroups.com *Subject:* [cfaussie] Re: Evaluating regular expression back references Ooooh. I think

[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

[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 total of

[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

[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 query and

[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: 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: 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: regex - replacing a string outside of 'tags'

2007-12-05 Thread Blair McKenzie
Here's a stab rereplace(mystring,([^]*)(#escapedsearchstring#),\1b\2/b,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 there can help

[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 span style= 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,

[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: Derby Embeded Database (CF8) and Eclipse/FlexBuilder

2007-12-10 Thread Blair McKenzie
Developer Aegeon Pty. Ltd. www.aegeon.com.au Phone: +613 8676 4223 Mobile: 0404 998 273 *From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Blair McKenzie *Sent:* Tuesday, 11 December 2007 12:27 PM *To:* cfaussie@googlegroups.com *Subject:* [cfaussie] Re: Derby

[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: 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: 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 there

[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: [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 year

[cfaussie] Re: removing extra spaces

2008-02-10 Thread Blair McKenzie
The docshttp://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentationfile=1384.htmsay 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

[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 can't

[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, and

[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 email their

[cfaussie] Re: Application Variable

2008-04-22 Thread Blair McKenzie
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? Blair On Wed, Apr 23, 2008 at 8:36 AM, Scott Thornton [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: cfinput type=text name=xyz disabled=true style=borderStyle:none; disabledColor:##000;backgroundAlpha:0; 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.

[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: cfformgroup type=horizontal /cfformgroup On Wed, Apr 23, 2008 at 5:09 PM, Blair McKenzie [EMAIL PROTECTED] wrote: Remember you can pass in styles, so: cfinput type=text name=xyz disabled=true style=borderStyle:none; disabledColor:##000

[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

[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 version

[cfaussie] Re: Coldfusion Daylight saving

2008-06-03 Thread Blair McKenzie
Have you checked the request flash sends? Charleshttp://www.charlesproxy.com/is 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: 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

[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

[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 this message

  1   2   >