RE: Boardwalk Empire

2010-09-22 Thread Andy Matthews
NO, but it's done in OT. -Original Message- From: Michael Grant [mailto:mgr...@modus.bz] Sent: Wednesday, September 22, 2010 2:26 PM To: cf-talk Subject: Re: Boardwalk Empire Is it done in CF? On Wed, Sep 22, 2010 at 3:24 PM, Rick Root wrote: > > anyone else watch HBO's new series

RE: List Sort help

2010-09-22 Thread Andy Matthews
ListSort should work: http://www.cfquickdocs.com/cf8/#ListSort Although you might need to use the text sort instead of numeric. andy -Original Message- From: Tom Jones [mailto:tjo...@acworld.com] Sent: Wednesday, September 22, 2010 11:18 AM To: cf-talk Subject: List Sort help

RE: Shorter URLs - How?

2010-09-21 Thread Andy Matthews
The best approach for this would be to use a URL rewriting tool such as ISAPI_REWRITE. That's an IIS thing. Doing it with pure ColdFusion, the best thing you could hope for is http://www.scribblar.com/index.cfm/k3ns5 andy -Original Message- From: Stefan Richter [mailt

RE: Flex/Coldfusion Open source projects

2010-09-19 Thread andy matthews
RIAforge.org has loads of projects based around Adobe products: ColdFusion, Flex, Photoshop, etc. CFLib.org has a large number of single serving functions and that sort of thing. andy -Original Message- From: fun and learning [mailto:funandlrnn...@gmail.com] Sent: Sunday, September

RE: CF8+: Short Hand notation for calling a function within a component.

2010-09-14 Thread Andy Matthews
Right. Not allowed in CF8, but it is allowed in CF9. andy -Original Message- From: Leigh [mailto:cfsearch...@yahoo.com] Sent: Tuesday, September 14, 2010 3:07 PM To: cf-talk Subject: Re: CF8+: Short Hand notation for calling a function within a component. I do not remember that

RE: coldfusion forums?

2010-09-14 Thread Andy Matthews
Sitepoint forums has a good ColdFusion section. Lots of meaty questions there. -Original Message- From: Richard White [mailto:rich...@j7is.co.uk] Sent: Tuesday, September 14, 2010 5:25 AM To: cf-talk Subject: Re: coldfusion forums? >There may be less traffic but your questions still g

RE: CF9 Solr Search issue

2010-09-13 Thread Andy Matthews
You might consider pinging Shannon Hicks on Twitter, @iotashan. He's quite knowledgeable about Solr. andy -Original Message- From: Mary Jo Sminkey [mailto:mary...@cfwebstore.com] Sent: Monday, September 13, 2010 8:40 AM To: cf-talk Subject: CF9 Solr Search issue I've

RE: Finding if a key exists in a struct based on a variable name

2010-09-07 Thread Andy Matthews
CF9 has the ternary operator which is awesome. Works like JavaScript: andy -Original Message- From: Michael Grant [mailto:mgr...@modus.bz] Sent: Tuesday, September 07, 2010 4:17 PM To: cf-talk Subject: Re: Finding if a key exists in a struct based on a variable name HA! So I&#

RE: Question on form variables

2010-09-07 Thread Andy Matthews
t;> it, on page two that the variables are there? But when you output >> them by themselves (FORM.varOne) they're empty? >> >> >> >> andy >> >> Yes, I am setting the hidden variables >> >>> Setting a variable into the FORM scope o

RE: Question on form variables

2010-09-07 Thread Andy Matthews
Are you cfparaming those variables at the top of page two? Are you cfincluding any code that might overwrite those variables? andy -Original Message- From: fun and learning [mailto:funandlrnn...@gmail.com] Sent: Tuesday, September 07, 2010 2:01 PM To: cf-talk Subject: Re: Question

RE: Question on form variables

2010-09-07 Thread Andy Matthews
So you're saying that when you inspect the FORM scope, by cfdumping it, on page two that the variables are there? But when you output them by themselves (FORM.varOne) they're empty? andy -Original Message- From: fun and learning [mailto:funandlrnn...@gmail.com] Sen

RE: Question on form variables

2010-09-07 Thread Andy Matthews
Setting a variable into the FORM scope on page one, will not automatically put those variables, or their values, into the FORM scope on page two. You'd need to add a hidden form field on page one, and populate it's value from the FORM variable you're creating. -Original Message- From: f

RE: Ajax file upload.

2010-09-06 Thread andy matthews
I'm more interested why it "has" to be cfform? Are you using the validation for cfform? You know that once your form is finalized, you can just download the JS that cfform outputs and ditch cfform for production? andy -Original Message- From: Steve Sequenzia [mailto:c.

RE: Is there an anchor in a URL String

2010-09-02 Thread Andy Matthews
Robert... Did you get my previous email about doing it with JavaScript? andy -Original Message- From: Robert Harrison [mailto:rob...@austin-williams.com] Sent: Thursday, September 02, 2010 1:50 PM To: cf-talk Subject: Is there an anchor in a URL String I need to know if there is

RE: getting server name

2010-09-02 Thread Andy Matthews
Hah! I just implemented this same thing in our system the other day. This code snippet will return the computer's "name": CreateObject("java", "java.net.InetAddress").getLocalHost().getHostName() andy -Original Message- From: Eric Roberts [mai

RE: Moving to Apache

2010-09-02 Thread Andy Matthews
Really? I didn't know that. That's cool. -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Thursday, September 02, 2010 12:33 PM To: cf-talk Subject: Re: Moving to Apache > IIS on the other hand has loads of nested windows and boxes and permissions. > Apache lets y

RE: Moving to Apache

2010-09-02 Thread Andy Matthews
Not trying to start an argument, but you can't much easier than adding a vhost block to the httpd.conf file in Apache. IIS on the other hand has loads of nested windows and boxes and permissions. Apache lets you do it all in one spot. andy -Original Message- From: Russ Mic

RE: Is there an anchor in a URL String

2010-09-02 Thread Andy Matthews
AX if you needed to. andy -Original Message- From: Robert Harrison [mailto:rob...@austin-williams.com] Sent: Thursday, September 02, 2010 11:55 AM To: cf-talk Subject: Is there an anchor in a URL String I need to know if there is an anchor in a URL string (e.g., http://mylink.cfm#thi

RE: CFParam vs. IsDefined

2010-09-01 Thread Andy Matthews
One reason to use IsDefined over StructKeyExists is when you don't know if one of the child structures exists. For example, in our control app, we assign permissions to our users like so: SESSION.p <-- struct, always exists SESSION.p.nav <-- struct, exists if the user has at least one perm in th

RE: Check out this... code....

2010-08-31 Thread Andy Matthews
You're right. The correct version should be: #Year(DateAdd("", 0, Now()))# No need for the -1. andy -Original Message- From: Eric Cobb [mailto:cft...@ecartech.com] Sent: Tuesday, August 31, 2010 4:13 PM To: cf-talk Subject: Re: Check out this... code I&#x

Re: Activating CF 9 server

2010-08-25 Thread Andy Allan
ously something else :) Andy On 25 August 2010 21:15, <> wrote: > >  >>who did you the cd from? Adobe? > > Actually, I installed the trial version from Adobe's site. > Then I bought the product, and choose to hae it on disk. > To day I got the disk, now I'

RE: Number of site using ColdFusion

2010-08-25 Thread Andy Matthews
No clue about the GotCFM list. I'd guess that Ben's list is well maintained, but I don't know for certain. Perhaps he'd chime in on this one? andy -Original Message- From: Andrew Scott [mailto:andr...@andyscott.id.au] Sent: Wednesday, August 25, 2010 11:56 AM To:

RE: Number of site using ColdFusion

2010-08-25 Thread Andy Matthews
That's because that's individual pages. Adobe (Ben Forta) has a good reference for sites using ColdFusion: http://www.forta.com/cf/using/ Rey Bango manages GotCFM.com which also has a list of sites using CF: http://www.gotcfm.com/thelist.cfm -Original Message- From: Robert Harrison [mai

RE: RegEx: Grabbing Keywords from Referers

2010-08-23 Thread Andy Matthews
Awesome Che! Glad I could be of help! andy -Original Message- From: Che Vilnonis [mailto:ch...@asitv.com] Sent: Monday, August 23, 2010 3:01 PM To: cf-talk Subject: RE: RegEx: Grabbing Keywords from Referers Andy thanks again so much... this seems to work with Yahoo,Bing & Go

RE: RegEx: Grabbing Keywords from Referers

2010-08-23 Thread Andy Matthews
rabbing Keywords from Referers > Not sure where the second q= came from. >From this: &aq=f& On Mon, Aug 23, 2010 at 1:44 PM, Andy Matthews wrote: > > This regex would search through a string and return all occurences of > q=followed by any character that's NOT an &a

RE: RegEx: Grabbing Keywords from Referers

2010-08-23 Thread Andy Matthews
yTK_zHIWWhgTb-J3tDwAAAKoEBU_QXcSj It matches q=coldfusion q=f Not sure where the second q= came from. I just did a search on the Google homepage for "ColdFusion". andy -Original Message- From: Che Vilnonis [mailto:ch...@asitv.com] Sent: Monday, August 23, 2010 12:54 PM

Re: CFBuilder Server Setup with CF Multiserver Installation

2010-08-16 Thread Andy Allan
-server install (whether it be dev, test, stage, qa, production), we shut down cfusion and never use it again, Ever. Andy On 16 August 2010 23:56, Andrew Scott wrote: > > Ok, the key there is production use and we are talking development here. > > Regards, > Andrew Scot

Re: CFBuilder Server Setup with CF Multiserver Installation

2010-08-16 Thread Andy Allan
e, create JRun server, deploy CF EAR file, etc. Anyway, use the cfusion instance if you want to. It's certainly not worth arguing over. But to re-iterate, it's original intention was purely to serve as a way to create new instances (it's why cfusion is the only instance to have

RE: Preventing use of remote method by other sites

2010-08-16 Thread Andy Matthews
You're not being a jerk. Those are all good points. I doubt anyone's going to care to mess with it. Even if they do, the most that will happen is that one site's usability stats get inflated. andy -Original Message- From: Raymond Camden [mailto:rcam...@gmail.com] Sent:

RE: image dimensions on mapped drive file

2010-08-16 Thread Andy Matthews
Does ColdFusion have access to that drive? Can you generate a list of files, and their permissions with cfdirectory for example? andy -Original Message- From: Matthew Smith [mailto:chedders...@gmail.com] Sent: Monday, August 16, 2010 12:31 PM To: cf-talk Subject: image dimensions on

RE: Preventing use of remote method by other sites

2010-08-16 Thread Andy Matthews
consider that. And I'm a "Script Kiddy Hacker" so I assume the real guys would try it too. Shoot - I almost always try the URLs I see in Firebug/Chrome Dev tools. I'm not trying to be malicious of course. Just poking around. On Mon, Aug 16, 2010 at 11:34 AM, Andy Matthews wrote

RE: Preventing use of remote method by other sites

2010-08-16 Thread Andy Matthews
Yes, but would you know TO do that? andy -Original Message- From: Raymond Camden [mailto:rcam...@gmail.com] Sent: Monday, August 16, 2010 11:30 AM To: cf-talk Subject: Re: Preventing use of remote method by other sites Don't forget you can easily set those headers yourself. I

RE: Preventing use of remote method by other sites

2010-08-13 Thread Andy Matthews
Okay. Phew. This is a single CFC available on our site. andy -Original Message- From: Tony Bentley [mailto:cascadefreehee...@gmail.com] Sent: Friday, August 13, 2010 4:17 PM To: cf-talk Subject: Re: Preventing use of remote method by other sites Yes you are right. I just wasn&#

RE: Preventing use of remote method by other sites

2010-08-13 Thread Andy Matthews
But crossdomain policies would prevent it from being accessed via AJAX right? andy -Original Message- From: Tony Bentley [mailto:cascadefreehee...@gmail.com] Sent: Friday, August 13, 2010 3:33 PM To: cf-talk Subject: Re: Preventing use of remote method by other sites Any time

RE: Preventing use of remote method by other sites

2010-08-13 Thread Andy Matthews
Works perfectly Tony. I simplified the conditional tho' -Original Message- From: Tony Bentley [mailto:cascadefreehee...@gmail.com] Sent: Friday, August 13, 2010 2:55 PM To: cf-talk Subject: Re: Preventing use of remote method by other sites I use a cfc tha

RE: Preventing use of remote method by other sites

2010-08-13 Thread Andy Matthews
break; } } if(not isAjax() and not accessRemote){ abort();//this is a simple cfabort function for MX } On Fri, Aug 13, 2010 at 11:17 AM, Andy Matthews wrote: > > I have a method that I'm exposing remotel

Preventing use of remote method by other sites

2010-08-13 Thread Andy Matthews
ng what's the best way to prevent access to this URL from any other site, or code. My first thought was to compare the current URL, dev1 for example, to the URL the request was made from, or perhaps the IP address. But I'm not sure how to get that information.

Preventing use of remote method by other sites

2010-08-13 Thread Andy Matthews
ng what's the best way to prevent access to this URL from any other site, or code. My first thought was to compare the current URL, dev1 for example, to the URL the request was made from, or perhaps the IP address. But I'm not sure how to get that information.

Re: Millions of Coldfusion sites need to apply patches

2010-08-12 Thread Andy Allan
ColdFusion 7 is no longer supported by Adobe. Therefore only customers who have "extended support", which you pay for, are entitled to a fix for CF7. But has already been pointed out, just restrict your /CFIDE. Andy On 11 August 2010 22:17, Gerald Guido wrote: > > Wait a seco

RE: Millions of Coldfusion sites need to apply patches

2010-08-11 Thread andy matthews
If you google for inurl:*.cfm You get 259 million results. andy -Original Message- From: Will Tomlinson [mailto:w...@wtomlinson.com] Sent: Wednesday, August 11, 2010 9:12 PM To: cf-talk Subject: Re: Millions of Coldfusion sites need to apply patches > Richard Brain of ProChec

RE: output of my 404.cfm

2010-08-10 Thread Andy Matthews
Is there by chance an index.html file in that directory? Or any other file that IIS or Apache might be looking for first? andy -Original Message- From: Matthew P. Smith [mailto:m...@smithwebdesign.net] Sent: Tuesday, August 10, 2010 12:39 PM To: cf-talk Subject: output of my 404.cfm

RE: (ot) post to Flex/AIR lists

2010-08-05 Thread Andy Matthews
Probably from me. No one uses that list since all AIR development overlaps into one of the other lists. -Original Message- From: Bryan Stevenson [mailto:br...@electricedgesystems.com] Sent: Thursday, August 05, 2010 11:41 AM To: cf-talk Subject: Re: (ot) post to Flex/AIR lists Thanks

RE: Suppressing whitespace from CFCs

2010-08-05 Thread Andy Matthews
The general consensus is that CFCs should be used primarily to encapsulate logic, and data retrieval. If you want to output something it really should be in a CFM page, or a custom tag. andy -Original Message- From: Robert Harrison [mailto:rob...@austin-williams.com] Sent: Thursday

RE: CF9 Developer on Windows 7 Home Premium?

2010-08-03 Thread andy matthews
As I understand it, when you "upgrade" from one version of Windows 7 to another, all it's really doing is unlocking features already on your machine. andy -Original Message- From: Matt Robertson [mailto:websitema...@gmail.com] Sent: Tuesday, August 03, 2010 3:01 PM To:

RE: HTML spec for mobile devices

2010-08-02 Thread Andy Matthews
You might also head over to Dan Vega's blog. He just gave a mobile session at CFUnited that was really well attended: http://www.danvega.org/blog/ -Original Message- From: Marc Funaro [mailto:subscripti...@advantex.net] Sent: Monday, August 02, 2010 9:14 AM To: cf-talk Subject: SOT: H

RE: Need a west coast (US) based CF host

2010-07-29 Thread Andy Matthews
Awesome. Sometimes it's just a matter of looking at it from a different perspective. andy -Original Message- From: Charlie Griefer [mailto:charlie.grie...@gmail.com] Sent: Thursday, July 29, 2010 3:34 PM To: cf-talk Subject: Re: Need a west coast (US) based CF host Hey Andy:

RE: Need a west coast (US) based CF host

2010-07-29 Thread Andy Matthews
Can I throw out a suggestion? Consider a trigger on the database that updates a new record and changes it's timestamp when it's inserted or updated? Then you don't need to migrate. andy -Original Message- From: Charlie Griefer [mailto:charlie.grie...@gmail.com] Sent:

RE: jQuery calling cfc question

2010-07-29 Thread Andy Matthews
lts of the query variable to see what IT returns. andy -Original Message- From: Scott Stewart [mailto:webmas...@sstwebworks.com] Sent: Thursday, July 29, 2010 9:50 AM To: cf-talk Subject: Re: jQuery calling cfc question Richard, I blogged about this process a while back http://www.sstwe

RE: www.cbo.gov down. CF to blame?

2010-07-28 Thread Andy Matthews
They at least have cfm pages exposed in the URL, although I've heard that it's just ASP.NET included, or called, by ColdFusion. andy -Original Message- From: Robert Harrison [mailto:rob...@austin-williams.com] Sent: Wednesday, July 28, 2010 8:17 AM To: cf-talk S

RE: www.cbo.gov down. CF to blame?

2010-07-28 Thread Andy Matthews
There's NO language that's "Scalable" right out of the box. It all has to do with HOW the site is written. andy -Original Message- From: Greg Luce [mailto:luce...@gmail.com] Sent: Wednesday, July 28, 2010 6:57 AM To: cf-talk Subject: www.cbo.gov down. CF to blame?

RE: Windows File Replication: Suggestions?

2010-07-28 Thread andy matthews
If you can wait for DFS I recommend that. We use that method on our systems to great effect. andy -Original Message- From: Dominic Watson [mailto:watson.domi...@googlemail.com] Sent: Wednesday, July 28, 2010 4:53 AM To: cf-talk Subject: Windows File Replication: Suggestions? We have

RE: Regex Help

2010-07-27 Thread Andy Matthews
fter category/ and pass it to index.cfm as verb=category&term=jQuery andy -Original Message- From: Robert Harrison [mailto:rob...@austin-williams.com] Sent: Tuesday, July 27, 2010 10:24 AM To: cf-talk Subject: RE: Regex Help > Why not use url rewrite instead? If it

RE: Regex Help

2010-07-27 Thread Andy Matthews
He'd still want to change all of his existing URLs so that they're "correct" moving forward. However, you're right, he could use ISAPI Rewrite (IIS) or mod_rewrite (Apache) and let the web server take care of it andy -Original Message- From: Michael Grant [mail

RE: Regex Help

2010-07-26 Thread andy matthews
- From: Andy Matthews [mailto:li...@commadelimited.com] Sent: Monday, July 26, 2010 3:03 PM To: cf-talk Subject: RE: Regex Help [Completely irrelevant link removed] :) ~| Order the Adobe Coldfusion Anthology now! http

RE: Regex Help

2010-07-26 Thread Andy Matthews
http://www.cftagstore.com/tags/cfreextract.cfm :) -Original Message- From: Robert Harrison [mailto:rob...@austin-williams.com] Sent: Monday, July 26, 2010 1:00 PM To: cf-talk Subject: Regex Help I want to replace any occurrence of multiple -- in string so the entire string only conta

RE: What has happened to my Firebug?

2010-07-20 Thread Andy Matthews
I'll deathmatch you during your presentation tomorrow night. Heckling throughout the entire duration. :) andy -Original Message- From: Raymond Camden [mailto:rcam...@gmail.com] Sent: Tuesday, July 20, 2010 4:33 PM To: cf-talk Subject: Re: What has happened to my Firebug?

RE: What has happened to my Firebug?

2010-07-20 Thread Andy Matthews
Absolutely. There is no comparison. andy -Original Message- From: Rick Faircloth [mailto:r...@whitestonemedia.com] Sent: Tuesday, July 20, 2010 4:29 PM To: cf-talk Subject: RE: What has happened to my Firebug? Yeah, I do a lot of AJAX work/debugging...so Firebug is superior in that

RE: What has happened to my Firebug?

2010-07-20 Thread Andy Matthews
Chrome's developer tools are not bad, but they're nothing compared to Firebug. It's the only thing I ever open Firefox any more these days. andy -Original Message- From: Rick Faircloth [mailto:r...@whitestonemedia.com] Sent: Tuesday, July 20, 2010 1:27 PM To: cf-t

RE: Extracting part of a string (part 2)

2010-07-20 Thread Andy Matthews
+1 for the RegExr site. Skinner is awesome. -Original Message- From: Che Vilnonis [mailto:ch...@asitv.com] Sent: Tuesday, July 20, 2010 12:12 PM To: cf-talk Subject: RE: Extracting part of a string (part 2) Thanks Charlie. I found that (\$\d+(\.\d+)?) works as well. The RegExr site w

RE: Extracting part of a string

2010-07-20 Thread Andy Matthews
Glad to help. -Original Message- From: Rick Sanders [mailto:c...@webenergy.ca] Sent: Tuesday, July 20, 2010 11:40 AM To: cf-talk Subject: RE: Extracting part of a string Thank you Andy, this was most helpful! -Original Message- From: Andy Matthews [mailto:li

RE: Extracting part of a string

2010-07-20 Thread Andy Matthews
Assuming there's nothing more to your search, then this regex would do you fine: \[y\](.+)\[/y\] -Original Message- From: Rick Sanders [mailto:c...@webenergy.ca] Sent: Tuesday, July 20, 2010 9:23 AM To: cf-talk Subject: Extracting part of a string Hey All, What I need is simple,

RE: CF Query to WDDX to Javascript. Possible?

2010-07-20 Thread Andy Matthews
Make sure to check the casing of your returned variables. If you're using dot notation in any of your CF code, ColdFusion will force upper case on keys that it returns. andy -Original Message- From: Will Blake [mailto:willbl...@printelect.com] Sent: Tuesday, July 20, 2010 8:33

RE: Export CF app as HTML files to save on cd

2010-07-20 Thread Andy Matthews
Another SUPER easy way to do this is to use HTTrack: http://www.httrack.com/ It spiders a website and creates a local copy. Lots of config options too. andy -Original Message- From: Mark Mandel [mailto:mark.man...@gmail.com] Sent: Tuesday, July 20, 2010 8:23 AM To: cf-talk Subject

Re: Best conference?

2010-07-14 Thread Andy Allan
When the shit hit the fan in 2008, it was right after our biggest SotR to date. But we made a 5 year plan: 2009: we would take the conference on tour across the UK and Europe as a series of one day events to keep delegate and sponsor costs low. 2010: do a 2 day conference at a real low cost

Re: Best conference?

2010-07-14 Thread Andy Allan
Always nice to see someone give us a vote. Having been to CFUnited (twice), MAX (3 times), FOWD and of course SotR, they all have their own nuances that makes them all unique. Ultimately you need to decide on; cost, location, content. Andy On 14 July 2010 09:34, Will Swain wrote: > >

RE: ColdFusion Blogging Engines

2010-07-12 Thread Andy Matthews
n interface with tumblr. http://tumblrcfc.riaforge.org/ andy -Original Message- From: Jake Churchill [mailto:reyna...@gmail.com] Sent: Monday, July 12, 2010 11:58 AM To: cf-talk Subject: Re: ColdFusion Blogging Engines Yeah, I agree. I'm no designer either, but I enjoy a slick UI. I'l

RE: (ot) CF/Verity: What is the synonym for it in PHP ?

2010-07-12 Thread Andy Matthews
Apache offers the Solr search engine, which in fact replaces Verity in ColdFusion 9. If you want more info about Solr you can check their docs, or look for some of Shannon Hicks' presentations on his website: http://www.iotashan.com/?s=solr andy -Original Message- From:

RE: Looking for a CF Recipe script!

2010-07-07 Thread Andy Matthews
That's a little vague wouldn't you say? You're going to need to be more specific as to what you're looking for. -Original Message- From: Ennio Bozzetti [mailto:en...@medrise.com] Sent: Wednesday, July 07, 2010 10:34 AM To: cf-talk Subject: Re: Looking for a CF Recipe script! :) a scr

RE: Looking for a CF Recipe script!

2010-07-07 Thread Andy Matthews
Can you be a little more clear? What do you mean by recipe script? -Original Message- From: Ennio Bozzetti [mailto:en...@medrise.com] Sent: Wednesday, July 07, 2010 6:31 AM To: cf-talk Subject: Looking for a CF Recipe script! Does anyone know a good Recipe Script?

RE: Hosting Inquiry

2010-07-03 Thread andy matthews
I use Gearhost and love them. The account I have offers 10 ips with additional one for $1 or $2 apiece. They also offer MSSQL (and MySQL). I don't know about SSL. andy -Original Message- From: Jim Helmbrecht [mailto:jhelmbre...@gmail.com] Sent: Friday, July 02, 2010 9:17 PM T

RE: issues preserving the case of the key

2010-07-01 Thread andy matthews
x27;s happening. ColdFusion itself could care less if the variables are uppercase, lowercase, or some mixture. andy -Original Message- From: Glyn Jackson [mailto:glyn.jack...@newebia.co.uk] Sent: Thursday, July 01, 2010 5:11 AM To: cf-talk Subject: issues preserving the case of the key

RE: Order By question

2010-06-30 Thread andy matthews
You might even consider a subquery to get those two id values: SELECT * FROM judges ORDER BY CASE WHEN judge_id IN ( SELECT id FROM users WHERE some criteria ) THEN 1 ELSE 0 END, judge_lname Then you wouldn't have to hard code them. andy -Original Me

RE: JSON response need a little help

2010-06-30 Thread Andy Matthews
Well, remember that JSON is a string representation of a complex object, not the object itself. So if you plan on passing the variable below through SerializeJSON, or ColdFusion's built in JSON returnformat then you'd be okay. andy -Original Message- From: Gl

RE: JSON response need a little help

2010-06-30 Thread Andy Matthews
You can do implicit array and structure creation in ColdFusion since v8. Only on CF 9 however can you do this -Original Message- From: Glyn Jackson [mailto:glyn.jack...@newebia.co.uk] Sent: Wednesday, June 30, 2010 10:18 AM To: cf-talk Subject: Re: JSON response need a little h

RE: ColdFusion Builder Auto-Indent

2010-06-29 Thread andy matthews
Matt... When I installed CFB auto-indenting was turned on by default. -Original Message- From: Matt Quackenbush [mailto:quackfu...@gmail.com] Sent: Tuesday, June 29, 2010 12:42 AM To: cf-talk Subject: ColdFusion Builder Auto-Indent I am giving CFBuilder a whirl, and am having difficul

RE: Contact for FullAsAGoog?

2010-06-28 Thread Andy Matthews
He's a mystery, wrapped in an enigma. -Original Message- From: Jeff Chastain [mailto:li...@admentus.com] Sent: Monday, June 28, 2010 4:53 PM To: cf-talk Subject: Contact for FullAsAGoog? Is it just me or is there no contact information on the FullAsAGoog web site? I was looking for

RE: Is it time for Adobe to Rebrand Cold Fusion?

2010-06-22 Thread Andy Matthews
The flip side of that is it's also too easy to tell how out of date you are. :) -Original Message- From: Raymond Camden [mailto:rcam...@gmail.com] Sent: Tuesday, June 22, 2010 8:48 AM To: cf-talk Subject: Re: Is it time for Adobe to Rebrand Cold Fusion? Ok, I'm now straying into OT a

Re: Is it time for Adobe to Rebrand Cold Fusion?

2010-06-22 Thread Andy Allan
Trivia fact: Macromedia did consider rebranding the product for 6.0, which as we all know was the first version to be built on Java. On 22 June 2010 05:39, Sean Corfield wrote: > > On Mon, Jun 21, 2010 at 12:44 PM, Robert Harrison > wrote: >> Because the best links I got out of my previous emai

Re: php.org is written in ColdFusion

2010-06-21 Thread Andy Allan
It's just a resource site sitting on a CF shared host. Now if it was php.net that was running on ColdFusion, that would be something to get interested in. Andy On 21 June 2010 21:15, Justin Scott wrote: > >> "http://php.org/ appears to be written completely in ColdFusion.&

RE: Pathing Problem

2010-06-21 Thread Andy Matthews
You might also need to use UNC pathing if it's a network drive. \\\images Instead of E:\Images andy -Original Message- From: Richard Steele [mailto:r...@photoeye.com] Sent: Monday, June 21, 2010 8:14 AM To: cf-talk Subject: Pathing Problem Our images reside on a separate

RE: jQuery alternative to cfwindow?

2010-06-18 Thread andy matthews
If you're writing an entire app then you might consider jQuery UI which has widgets like that. Alternately ExtJS (now Sencha) offers the same widgets along with a LOT more stuff. andy -Original Message- From: Joe None [mailto:drue...@comcast.net] Sent: Friday, June 18, 2010 6:14

RE: Gmail/Facebook Style jQuery Chat

2010-06-18 Thread andy matthews
I recently gave a presentation to the New York CFUG where I demoed a jquery chat app that I wrote. It's not a finished product by any means but it might get you started in the right direction. http://snurl.com/x0kq3 andy -Original Message- From: Les Irvin [mailto:les.cft...@gmai

Re: CF Hosting in Europe

2010-06-14 Thread Andy Allan
Centinated (Switzerland) http://www.centinated.ch/en/ Flint Hosts (UK) http://www.flinthosts.com And if you don't care whether they officially support CF or not, Rackspace UK http://www.rackspace.co.uk Andy On 15 June 2010 00:54, Dave Hatz wrote: > > We have a client that is

RE: Finding the value of a key in a nested structure

2010-06-14 Thread Andy Matthews
When working with structures nested that deeply you might consider IsDefined instead. It's not a best practice necessarily, but it would prevent a whole bunch of StructKeyExists calls. andy -Original Message- From: Tom King [mailto:mailingli...@oxalto.co.uk] Sent: Monday, Ju

RE: RegEx help

2010-06-07 Thread Andy Matthews
If you can always depend on Age: before the desired string, and what looks like a tab afterwards, then it's trivial: Age:[0-9a-Z]+\t That assumes that the age will be any combination of letters and numbers, and also allows for upper and lower case. andy -Original Message-

RE: HTML 5, has anyone done anything more than "played" with it

2010-06-02 Thread andy matthews
FYI I upgraded from XP to Windows 7 and have had zero issues. andy -Original Message- From: Les Mizzell [mailto:lesm...@bellsouth.net] Sent: Tuesday, June 01, 2010 11:25 PM To: cf-talk Subject: Re: HTML 5, has anyone done anything more than "played" with it > It

RE: HTML 5, has anyone done anything more than "played" with it

2010-06-01 Thread Andy Matthews
On a side note, here's a dissenting viewpoint: http://ishtml5ready.com/ -Original Message- From: Scott Stewart [mailto:webmas...@sstwebworks.com] Sent: Tuesday, June 01, 2010 2:11 PM To: cf-talk Subject: HTML 5, has anyone done anything more than "played" with it I'm starting to dig

RE: HTML 5, has anyone done anything more than "played" with it

2010-06-01 Thread Andy Matthews
n XSLT doc while you wait until it's ready: http://ishtml5readyyet.com/ andy -Original Message- From: Scott Stewart [mailto:webmas...@sstwebworks.com] Sent: Tuesday, June 01, 2010 2:11 PM To: cf-talk Subject: HTML 5, has anyone done anything more than "played" with it I&#x

RE: referencing #application.applicationname#

2010-05-31 Thread andy matthews
Yes, it was a joke. And while I don't always learn specifics from Barney's or Sean's posts, I almost always find out about topics of which I've never heard. So keep it up Barney/Sean...you guys spur the rest of us onwards. andy -Original Message- From: Da

RE: referencing #application.applicationname#

2010-05-30 Thread andy matthews
Are you and Barney speaking English? -Original Message- From: Barney Boisvert [mailto:bboisv...@gmail.com] Sent: Sunday, May 30, 2010 4:39 PM To: cf-talk Subject: Re: referencing #application.applicationname# CFLOCK is only required to serialize access to prevent race conditions. For

RE: CF regex question [SOT]

2010-05-28 Thread Andy Matthews
Per the good Jason Dean at www.12robots.com: Tested against these: And the first three match. andy -Original Message- From: Greg Morphis [mailto:gmorp...@gmail.com] Sent: Friday, May 28, 2010 1:39 PM To: cf-talk Subject: CF regex question [SOT] I just ran into a problem

RE: Error trapping

2010-05-18 Thread andy matthews
That probably means there's a coldfusion error in your error page. Try removing all CF code and just put text on the page. See if that gets emailed to you then slowly work back in your error logic. andy -Original Message- From: Rick Sanders [mailto:c...@webenergy.ca] Sent: Tu

RE: How to show a work-in-progress icon while waiting for a web service

2010-05-12 Thread andy matthews
One simple way to do it is just to disable the submit button and change it's text to something like "Loading data...". That way you give instant feedback to the user and it's someplace they're already looking. andy -Original Message- From: John Pullam [mailto:

RE: Which is more efficient?

2010-05-08 Thread andy matthews
Performance wise you'd probably only see a difference in the milliseconds. Memory wise you might see a difference in the last one because of the extra variable storage, but only on sites with really high traffic. That's my guess that is. andy -Original Message- From: Chu

RE: Downloading mp3s

2010-05-08 Thread andy matthews
You can do one of a few things. Serve up the MP3 file through ColdFusion like so: http://lab.artlung.com/coldfusion-force-download/ Or you can set up your web server to deliver MP3 files as downloads instead of playing them. andy -Original Message- From: Rob Voyle [mailto:r

RE: How are other developers handling big SVN repositories?

2010-05-06 Thread Andy Matthews
That's pretty much how we handle it. We have a single branch that gets created at the beginning of each week, forked from the trunk. All minor changes get committed to that branch during the week, then merged into the trunk. When a new project is created, changes are committed to it, then merged

RE: CF9 Developer Edition and Verity?

2010-05-06 Thread Andy Matthews
http://projects.apache.org/projects/solr.html -Original Message- From: Jason Fisher [mailto:ja...@wanax.com] Sent: Thursday, May 06, 2010 9:58 AM To: cf-talk Subject: re: CF9 Developer Edition and Verity? No, it comes with Solr, an instance of Lucene.

RE: query for experts?

2010-05-05 Thread andy matthews
M To: cf-talk Subject: Re: query for experts? azadi - your query works for a qty of 4 but not anything between 5 and 10. rick - not possible as qty's range massively per product type andy - cannot get this query to work, outputs wrong price

RE: query for experts?

2010-05-05 Thread andy matthews
If the minimum quantity is 5 for an item, then you should consider not letting them place only 4 in their cart. If you're still wanting to move in that direction then a query like this should do the trick: SELECT FLOOR(price * CEILING(cart.qty/ min_qty) ) AS price FROM tblPricing WHERE id = 123

RE: jquery $.ajax - need help with json syntax

2010-04-29 Thread Andy Matthews
I don't believe that's a legit method of transmitting data via AJAX. The API docs say that if you pass an array to a value then it will concatenate: a: ['one','two']; Amounts to ?a=one&a=two -Original Message- From: Rick Faircloth [mailto:r...@whitestonemedia.com] Sent: Thursday, Apri

<    1   2   3   4   5   6   7   8   9   10   >