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

2010-04-29 Thread Andy Matthews
I find that it's easier, and more self-documenting, to enumerate the variables in data directly: $.ajax({ url: "cfc/mycfc.cfc?method=dbupdate", dataType: 'json', data: { a: 'andy'

RE: Can this be done?

2010-04-19 Thread Andy Matthews
There are several things which could be wrong. - Unidentified, or incorrect, color profile - Image is in CMYK. ColdFusion might not mind this, but many browsers won't display these images. andy -Original Message- From: Eric Nicholas Sweeney [mailto:n...@bigfatdesigns.com]

RE: Does cflocation pass through request type and variables?

2010-04-16 Thread Andy Matthews
Well, in almost every case, if not all cases, with a 3rd party URL, we don't care about passing the variables. We wouldn't even have a problem with this one if it wasn't for the fact that the third party URL is blocking POST requests. andy -Original Message- From: M

Does cflocation pass through request type and variables?

2010-04-16 Thread Andy Matthews
If you examine the request, you'll also see that the third party site is blocking the POST request, but you can also see the values we're submitting. My question is, is it possible to convert a POST request to a GET request before passing the user

RE: Getting frame name in Coldfusion

2010-04-14 Thread andy matthews
Unless you're reading in the HTML with a cfhttp call, or you're setting the frame name IN ColdFusion, then no. That's a client side thing, so you'd have to use JavaScript to get that. andy -Original Message- From: funand learning [mailto:funandlrnn...@gmail.c

RE: form testing

2010-04-13 Thread Andy Matthews
Disable JavaScript would be an easy one. You could also create your own form on a stand alone page, and just point the action attribute of your new form to the action attribute of the form to be tested. -Original Message- From: succ...@ramonecung.com [mailto:succ...@ramonecung.com] Sen

Re: ColdFusion Builder Research

2010-04-09 Thread Andy Allan
Why not fill out the survey and suggest that... On 9 April 2010 15:22, Casey Dougall wrote: > > On Fri, Apr 9, 2010 at 10:09 AM, Adrocknaphobia > wrote: > >> ColdFusion Builder 2 > > > > Fill out a survey? Depends, is this going to be a free upgrade form 1.0? > > > ~~~

RE: storing a cfinput inside of a variable

2010-04-08 Thread Andy Matthews
The only option would be to evaluate the variable, and even that might not work: #Evaluate(config.formFieldA)# -Original Message- From: Steve Logan [mailto:st...@sagescholars.com] Sent: Thursday, April 08, 2010 1:37 PM To: cf-talk Subject: storing a cfinput inside of a variable Is t

RE: CFDocs

2010-04-07 Thread Andy Matthews
You should probably consider using http://www.cfquickdocs.com/cf9/ Has access to 7, 8, and 9 docs. andy -Original Message- From: Dave Sueltenfuss [mailto:dsueltenf...@gmail.com] Sent: Wednesday, April 07, 2010 11:31 AM To: cf-talk Subject: CFDocs Does anyone know if the creator

RE: using cfhttp

2010-04-07 Thread Andy Matthews
http://aremysitesup.com/ Run by Chris Coyier of CSS-tricks.com andy -Original Message- From: Matthew Smith [mailto:chedders...@gmail.com] Sent: Wednesday, April 07, 2010 8:25 AM To: cf-talk Subject: Re: using cfhttp Can you recommend any? On Wed, Apr 7, 2010 at 7:00 AM, Brian

RE: using cfhttp

2010-04-06 Thread Andy Matthews
Yep. I use that to ping a site with an AJAX call too. -Original Message- From: Charlie Griefer [mailto:charlie.grie...@gmail.com] Sent: Tuesday, April 06, 2010 11:35 AM To: cf-talk Subject: Re: using cfhttp On Tue, Apr 6, 2010 at 9:24 AM, Andy Matthews wrote: > > Additional

RE: external css not displaying

2010-04-06 Thread Andy Matthews
Have you tried using Firebug to see if the file is indeed failing to load? andy -Original Message- From: Greg Morphis [mailto:gmorp...@gmail.com] Sent: Tuesday, April 06, 2010 11:42 AM To: cf-talk Subject: SOT: external css not displaying We just renewed the IIS certs on our

RE: using cfhttp

2010-04-06 Thread Andy Matthews
Additionally you can make the request a little lighter by just making a HEAD request instead of a get or post. http://www.andymatthews.net"; method="head"> It doesn't return the entire body of the site in the filecontent key. andy -Original Message

RE: default for numeric argument

2010-04-05 Thread Andy Matthews
Yes. -Original Message- From: Matthew Smith [mailto:chedders...@gmail.com] Sent: Monday, April 05, 2010 9:10 AM To: cf-talk Subject: default for numeric argument I am not passing it in. I am getting: The APP_USER_ID argument passed to the check_item_quantities function is not of ty

RE: Flash on iPhone

2010-04-01 Thread andy matthews
It's April Fools day remember. andy -Original Message- From: John M Bliss [mailto:bliss.j...@gmail.com] Sent: Wednesday, March 31, 2010 8:43 PM To: cf-talk Subject: Flash on iPhone And heck froze over: http://www.macworld.com.au/iphone/view/apple-introduces-flash-for-iphone-

RE: ColdFusion SIG's in Milwaukee?

2010-03-30 Thread Andy Matthews
Have you checked the Adobe website? http://www.adobe.com/communities/usergroups/ -Original Message- From: Dan Barrett [mailto:dbarr...@brooksource.com] Sent: Tuesday, March 30, 2010 9:34 AM To: cf-talk Subject: ColdFusion SIG's in Milwaukee? Hey does anyone know of any ColdFusion Int

RE: Ajax, Json, and two clueless programmers

2010-03-28 Thread andy matthews
Just to clarify that CF ONLY returns JSON in all caps if you use dot notation. Try it out yourself. Dot notation VARIABLES.myStruct.myKey -> VARIABLES.MYSTRUCT.MYKEY Bracket notation VARIABLES['myStruct']['myKey'] -> VARIABLES.myStruct.myKey -Original Message- From: Dave l [mailto:cf

RE: ColdFusion Builder Released!

2010-03-26 Thread Andy Matthews
I believe I'd heard about AIR for Android devices, but I'd be utterly shocked if AIR made it to the iPhone. That sort of goes against their terms, stating that additional runtimes may not be included. andy -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Se

RE: ColdFusion Builder Released!

2010-03-26 Thread Andy Matthews
Dave... Where did you get the information about the AIR runtime coming soon for the iPhone? andy -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Friday, March 26, 2010 9:51 AM To: cf-talk Subject: Re: ColdFusion Builder Released! > What happened to export

RE: Differences between MySQLs?

2010-03-24 Thread Andy Matthews
Could be a case sensitivity issue. What's the OS of you, and of your host? On *nix systems table names are case sensitive. -Original Message- From: Phillip Vector [mailto:vec...@mostdeadlygame.com] Sent: Wednesday, March 24, 2010 2:03 PM To: cf-talk Subject: Differences between MySQLs?

Re: ColdFusion Builder Released!

2010-03-24 Thread Andy Allan
Sorry I thought it did cover unemployment too ... guess not. I'm going to speak to Adobe about it. On 24 March 2010 15:03, Rick Faircloth wrote: > > I was curious and check out the link below, Andy, but see nothing > about employment status... ??? > > Rick > > -Or

Re: ColdFusion Builder Released!

2010-03-24 Thread Andy Allan
https://freeriatools.adobe.com/cfbuilder/ On 24 March 2010 14:01, Emmit Larson wrote: > >>> b) recently laid off - both of whom can get it for free, > > That is for Flash builder. Not CF Builder... unless you know something we > don't. > > EL > > On Wed, Mar 24, 2010 at 9:46 AM, Raymond Camden

Re: ColdFusion Builder Released!

2010-03-23 Thread Andy Allan
And you've got 60 days at no cost (other than your own time) to decide if it is indeed worth the $299 (£171+vat in the UK). Andy On 23 March 2010 16:53, Will Swain wrote: > > A 1 year sub to Zend Studio with upgrades and support, a PHP IDE which looks > like a fairly equitable pr

RE: ColdFusion Builder Released!

2010-03-23 Thread Andy Matthews
As much as it kills me to say that Eric is right, and it does, I think he's right. A developer in another language isn't gonna pay MORE for something they don't need, and probably wouldn't use. ;) andy -Original Message- From: Eric Cobb [mailto:cft...@ecartech

RE: ColdFusion Builder Released!

2010-03-22 Thread andy matthews
You're already buying a bundle for your car...they just don't tell you about it. Got a stereo in the last car you bought? What about power windows? Power locks? -Original Message- From: Rick Faircloth [mailto:r...@whitestonemedia.com] Sent: Monday, March 22, 2010 5:13 PM To: cf-talk Sub

RE: ColdFusion Builder Released!

2010-03-22 Thread andy matthews
I just wanted to point out that technically Aptana is free. They do have a a Pro version, Aptana Studio, but you can use Aptana for free straight off their site. andy -Original Message- From: Wil Genovese [mailto:jugg...@visi.com] Sent: Monday, March 22, 2010 5:01 PM To: cf-talk

RE: ColdFusion Builder Released!

2010-03-22 Thread Andy Matthews
Two years ago my company of 60+ was spending almost $20k a year on coffee. andy -Original Message- From: Jochem van Dieten [mailto:joch...@gmail.com] Sent: Monday, March 22, 2010 2:27 PM To: cf-talk Subject: Re: ColdFusion Builder Released! On Mon, Mar 22, 2010 at 6:13 PM, Jake

RE: ColdFusion Builder Released!

2010-03-22 Thread Andy Matthews
n making since the thread started. ColdFusion, and CFBuilder, makes you more productive. andy -Original Message- From: Kris Sisk [mailto:ks...@gckschools.com] Sent: Monday, March 22, 2010 1:47 PM To: cf-talk Subject: Re: ColdFusion Builder Released! >You guys are a bunch of whiner

RE: ColdFusion Builder Released!

2010-03-22 Thread Andy Matthews
What does that have to do with it? That's a pretty lame excuse. I could say "why should you charge for a website when Microsoft or Apache built the web server your site runs on?" andy -Original Message- From: Eric Roberts [mailto:ow...@threeravensconsulting.com] Sent

Tumblr loves me!

2010-03-18 Thread Andy Matthews
I recently released a ColdFusion library for tumblr called tumblrCFC: http://tumblrcfc.riaforge.org/ The tumblr staff found out about it and added it to their their 3rd party apps page under “Desktop + Mobile Applications”. http://www.tumblr.com/docs/en/apps Woohoo! andy

RE: CF, Flex and EXTJS

2010-03-18 Thread Andy Matthews
nt to use Ext JS. Bear in mind that both are free to develop in, but Flex Builder, the preferred IDE for Flex developers, is not free. andy -Original Message- From: Richard White [mailto:rich...@j7is.co.uk] Sent: Thursday, March 18, 2010 11:41 AM To: cf-talk Subject: CF, Flex and EXTJS

New open source API: tumblrCFC

2010-03-16 Thread andy matthews
that decide to start using it. andy ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/m

RE: linkedin api

2010-03-15 Thread Andy Matthews
Sounds like the world needs someone to build a ColdFusion wrapper for the LinkedIn API Hugo. You up to the challenge? andy -Original Message- From: Hugo Ahlenius [mailto:hugo.ahlen...@nordpil.com] Sent: Monday, March 15, 2010 11:08 AM To: cf-talk Subject: linkedin api Hi, I was

RE: Easy Regex question?

2010-03-12 Thread andy matthews
Should be able to do this: REMatchNoCase('[^>]+', myString) -Original Message- From: Carol F [mailto:cfcn...@gmail.com] Sent: Friday, March 12, 2010 6:52 PM To: cf-talk Subject: Re: Easy Regex question? do you mind sharing the solution please? On Fri, Mar 12, 2010 at 1:28 PM, Che Vi

RE: Development Apps - Does anyone use homesite still?

2010-03-09 Thread Andy Matthews
prove your development, then why bother...seriously. If Homesite works for you, and your development needs, then why switch? andy -Original Message- From: Ben Alembick [mailto:benalemb...@gmail.com] Sent: Tuesday, March 09, 2010 6:58 AM To: cf-talk Subject: Development Apps - Does anyone us

RE: OT JS question

2010-03-04 Thread Andy Matthews
parseInt might do the trick. parseInt(var) -Original Message- From: Chad Gray [mailto:cg...@careyweb.com] Sent: Thursday, March 04, 2010 1:37 PM To: cf-talk Subject: OT JS question Anyone know if there is an equivalent to CF's val() in Javascript? I want to check a JS variable and s

RE: How to handle large ResultSet, so that it can also be reused?

2010-03-04 Thread Andy Matthews
across all users then you might be able to cache the query on the server side. Alternately you could look at possibly storing it in the Application or Server scopes. I'm sure other, more experienced, developers have better suggestions. andy -Original Message- From: sandeep saini [m

RE: Prevent Cross-Site Scripting in ColdFusion 5

2010-03-02 Thread Andy Matthews
It's easy enough to write your own function for this sort of thing. Here's the basis of how I might approach it: At that point you could do anything you wanted to with REQUEST.key or REQUEST.value. andy -Original Message- From: Donni

RE: Custom 404 Page

2010-02-25 Thread Andy Matthews
I think your best bet is to change your 404 handler to point to a coldfusion page. Then it can handle everything. 404.cfm -Original Message- From: Robert Harrison [mailto:rob...@austin-williams.com] Sent: Thursday, February 25, 2010 8:37 AM To: cf-talk Subject: Custom 404 Page Hi, I

RE: Best subversion repository

2010-02-24 Thread Andy Matthews
Are you not considering using Subversion? We've been using it here at Dealerskins for over 2 years and have been very pleased. We run our own repositories out of our staging server. So as far as cost goes it's free, if you have the machine already. -Original Message- From: Michael Dinowi

RE: attendance sheet

2010-02-23 Thread Andy Matthews
Oops. That would put the days of the week in each col next to the students name. Not the right way, but I think you get the idear. -Original Message- From: Andy Matthews [mailto:li...@commadelimited.com] Sent: Tuesday, February 23, 2010 8:52 AM To: cf-talk Subject: RE: attendance sheet

RE: attendance sheet

2010-02-23 Thread Andy Matthews
Pull your students from the db, have a hardcoded list for the days of the week. Loop over the students record, then inside that loop, iterate over the days of the week variable. Pseudo code to follow: #student_name# #d#

RE: jquery find/replace on an entire body DOM

2010-02-19 Thread Andy Matthews
] Sent: Friday, February 19, 2010 2:14 PM To: cf-talk Subject: Re: jquery find/replace on an entire body DOM >Anything you could do to make jQuery have to do less work will be >beneficial. > Andy, This works great for form actions. I've played around with doing the exact same thi

RE: jquery find/replace on an entire body DOM

2010-02-18 Thread Andy Matthews
have to do less work will be beneficial. andy -Original Message- From: Will Tomlinson [mailto:w...@wtomlinson.com] Sent: Thursday, February 18, 2010 8:29 AM To: cf-talk Subject: Re: jquery find/replace on an entire body DOM >Your problem is twofold. > >1) change $(this) t

RE: jquery find/replace on an entire body DOM

2010-02-17 Thread Andy Matthews
Your problem is twofold. 1) change $(this) to this $('body') (assuming that the text will only appear within the body tag. 2) Your replace might be working, but it's only acting upon the string within your temp variable. You'd really need to break the second line into two parts like so: var reg

RE: jquery ajax tabs & cfinclude

2010-02-17 Thread Andy Matthews
route, make sure you document where that URL var is coming from. andy -Original Message- From: Sachin Mohan [mailto:send.sac...@yahoo.com] Sent: Wednesday, February 17, 2010 12:26 PM To: cf-talk Subject: Re: jquery ajax tabs & cfinclude Apologies, I found what I was doing wrong

RE: jquery ajax tabs & cfinclude

2010-02-17 Thread Andy Matthews
If CF is telling you that it can't find your file, then your pathing is wrong. Double check mappings, and remember relative pathing vs server pathing based on where the file is being called. andy -Original Message- From: Sachin Mohan [mailto:send.sac...@yahoo.com] Sent: Wedn

RE: Possible switch to CFEclipse

2010-02-11 Thread Andy Matthews
Aptana also has a plugin which allows you to code for Adobe AIR. http://andymatthews.net/category/AIR/ andy -Original Message- From: Gerald Guido [mailto:gerald.gu...@gmail.com] Sent: Thursday, February 11, 2010 12:39 PM To: cf-talk Subject: Re: Possible switch to CFEclipse >&g

RE: Possible switch to CFEclipse

2010-02-10 Thread Andy Matthews
eel comfortable with it, but now it would be hard to imagine using anything other than an Eclipse based IDE. andy -Original Message- From: Terry Troxel [mailto:te...@it-werks.com] Sent: Wednesday, February 10, 2010 8:24 PM To: cf-talk Subject: Possible switch to CFEclipse I do not w

REReplaceNoCase and dynamic query columns

2010-02-01 Thread Andy Matthews
e, but it's just not working. Is it possible to dynamically evaluate the temp variable from the regular expression and use it as a ColdFusion variable? Andy matthews ~| Want to reach the ColdFusion community with somethin

RE: (ot) Adobe error messages

2010-01-25 Thread Andy Matthews
You only get Allaire errors because you code is really sucky. Minor code problems get you Adobe messages. Major code problems get you Macromedia errors. Quit your day job code problems give you Allaire errors. andy -Original Message- From: Eric Cobb [mailto:cft...@ecartech.com] Sent

RE: regex

2010-01-25 Thread Andy Matthews
/\w+/ should work \w matches all "word" characters including letters (upper and lower), numbers, and some punctuation. Here's a really good beginners guide to regex that I wrote. http://andymatthews.net/read/2009/10/22/A-beginner's-guide-to-regular-expres sions andy -

RE: AJAX Question

2010-01-22 Thread Andy Matthews
er to stay consistent and use jQuery for everything rather than drop into a different implementation and syntax. andy -Original Message- From: b...@bradwood.com [mailto:b...@bradwood.com] Sent: Friday, January 22, 2010 12:06 PM To: cf-talk Subject: RE: AJAX Question I appreci

RE: AJAX Question

2010-01-22 Thread Andy Matthews
One thing I forgot to mention. If you use the below method, then you'd reference the values on the ColdFusion page in the URL scope. URL.key1 URL.key2 Etc. If you need a POST then you'd just change the var references to the FORM scope, and change $.get to $.post andy -Origin

RE: AJAX Question

2010-01-22 Thread Andy Matthews
Bear in mind that you do not insert values into a database with AJAX. AJAX is merely way to pass said values to the processing page of your choice without page refresh. So assuming you know how to do a database insert with ColdFusion, you'd just need to know how to pass the values from your clie

RE: Why i fear ColdFusion is on its last legs

2010-01-21 Thread Andy Matthews
We have hired one remote developer, Russ johnson. We'd prefer to have in house guys as it makes collab so much easier, but it never hurts to put in your resume. dev...@dealerskins.com or you can send it to me and I'll forward it on. andy -Original Message- From: Er

RE: Why i fear ColdFusion is on its last legs

2010-01-21 Thread Andy Matthews
Too bad you couldn't convince them to migrate to ColdFusion 9 which has built in Sharepoint integration out of the box. abdy -Original Message- From: Scott Stewart [mailto:sstwebwo...@bellsouth.net] Sent: Thursday, January 21, 2010 12:03 PM To: cf-talk Subject: RE: Why i fear ColdFusi

RE: Why i fear ColdFusion is on its last legs in Australia

2010-01-21 Thread Andy Matthews
Australia On Fri, Jan 22, 2010 at 1:21 AM, Andy Matthews wrote: > > Actually Adobe has been saying since cf.Objective 2009 (I was there in > person) that their user based has grown 300% over the last 5 years. > From 250k users around 2004 to over 800k users in 2008/2009. > In Aus

RE: Why i fear ColdFusion is on its last legs in Australia

2010-01-21 Thread Andy Matthews
nless it's for a white paper. Have you gone to the Adobe site to see if they've released white papers? It just seems like that unless you're personally looking for a CF job and can't find one, why do you care if other people think CF is dead? Andy matthews -Original Mes

RE: Why i fear ColdFusion is on its last legs

2010-01-21 Thread Andy Matthews
no growth in CF, it most likely means that the economy is bad and no one is hiring period. On the other hand my company in Nashville TN has hired 2 CF developers in the last 3 months and is looking to hire 2 more. Take from that what you will. Andy Matthews Dealerskins -Original Message-

Re: Why i fear ColdFusion is on its last legs

2010-01-20 Thread Andy Allan
, England, Germany, Switzerland, Italy, Netherlands and Belgium For 2010 I know Ben Forta is coming back, because the Netherland CFUG has announced a date in March, and Scotch on the Rocks is back to running in a single location on May 24/25 in London. Andy 2010/1/21 Sean Corfield : > >

RE: For the old time ColdFusion developers on the list.

2010-01-14 Thread Andy Matthews
the list. On 1/14/2010 10:26 AM, Andy Matthews wrote: > That'll be your problem. If you're trying to use a CFC on ColdFusion > 4.5 it's going to fail. > > Versions of CF before CF MX didn't support CFCs. > > > andy > > And thus Andy poin

RE: For the old time ColdFusion developers on the list.

2010-01-14 Thread Andy Matthews
That'll be your problem. If you're trying to use a CFC on ColdFusion 4.5 it's going to fail. Versions of CF before CF MX didn't support CFCs. andy -Original Message- From: mark [mailto:m...@mdprofinish.com] Sent: Thursday, January 14, 2010 10:49 AM To: cf-talk

RE: question about javascript

2010-01-04 Thread Andy Matthews
Javascript cannot change the file itself, but it can apply filters client-side to an image using CSS. andy -Original Message- From: Clint Tredway [mailto:grum...@gmail.com] Sent: Monday, January 04, 2010 2:43 PM To: cf-talk Subject: question about javascript I do not know where else

RE: admin

2009-12-07 Thread Andy Matthews
I'd suggest a search of the HoF mailing list. Probably the quickest way to start. -Original Message- From: Orlini, Robert [mailto:rorl...@hwwilson.com] Sent: Monday, December 07, 2009 11:12 AM To: cf-talk Subject: admin I know this has been touched on many times before, but how do I r

RE: Find city/state by IP Address?

2009-12-04 Thread Andy Matthews
dress? Thanks for the link. I'm in the same boat as that person. This is a low traffic site, so I'm looking for something dirty cheap, or free. I should have specified that initially. :) -Original Message- From: Andy Matthews [mailto:li...@commadelimited.com] Sent: Friday, De

RE: Find city/state by IP Address?

2009-12-04 Thread Andy Matthews
Found this: http://askville.amazon.com/Free-IP-address-Location-API-country-state-provin ce/AnswerViewer.do?requestId=56161316 -Original Message- From: Jason Durham [mailto:jdur...@cti-stl.com] Sent: Friday, December 04, 2009 10:05 AM To: cf-talk Subject: Find city/state by IP Address

RE: FreeAgent Progress - cross-framework applications

2009-12-04 Thread Andy Matthews
That's 7 FWIW. -Original Message- From: s. isaac dealey [mailto:i...@turnkey.to] Sent: Friday, December 04, 2009 2:16 AM To: cf-talk Subject: FreeAgent Progress - cross-framework applications Hello everyone. A couple weeks ago we started work on a community project called FreeAgent,

Re: Amazon S3 - HTTPS and Live Stats

2009-11-22 Thread Andy Mandy
If you are looking for serving static content from Amazon S3 and CloudFront you may want to check out CloudBerry Explorer freeware that helps managing all aspects of S3 and CloudFront on Windows . It is a freeware. http://cloudberrylab.com/ There is also a couple of blog post explaining how to

RE: cfc output=yes

2009-11-20 Thread Andy Matthews
The primary reason for that attribute is whitespace. And I would suggest against outputting from a CFC. Better to return a variable, then output THAT. -Original Message- From: Chad Gray [mailto:cg...@careyweb.com] Sent: Friday, November 20, 2009 8:58 AM To: cf-talk Subject: cfc output=

RE: 'Tis a sad, sad day...jQuery kills FireFox but works great in IE!

2009-11-13 Thread Andy Matthews
Eric. I've tried to do showing and hiding table rows with jQuery before and it's not that great. It has to do with the way JavaScript considers TR tags and all. Try taking a look at this example I wrote for Psychic Sales a long time ago: http://andymatthews.net/code/tablefilter/ -Original Me

RE: 'Tis a sad, sad day...jQuery kills FireFox but works great in IE!

2009-11-13 Thread Andy Matthews
Josh... That's not true. Everything I've read says that the less specific you are, the faster your code will run. In your example, it has to search through a whole bunch of stuff rather than just going and finding items with a class of oldUsers. andy -Original Message-

RE: OT - MySQL List

2009-11-12 Thread Andy Matthews
Sitepoint.com's MySQL forums are well traveled and have lots of good posters and information. -Original Message- From: Won Lee [mailto:won...@gmail.com] Sent: Thursday, November 12, 2009 3:47 PM To: cf-talk Subject: Re: OT - MySQL List http://lists.mysql.com/

RE: Form Insanity

2009-11-04 Thread Andy Matthews
#x27;s there before using it. andy -Original Message- From: Timothy Laureska [mailto:tlaure...@dhmh.state.md.us] Sent: Wednesday, November 04, 2009 12:00 PM To: cf-talk Subject: Form Insanity Hello: Can somebody tell me why this from select box form and processing template produce t

Re: where to buy cfmx7 standard linux licenses

2009-10-30 Thread Andy Allan
You can buy CF9 and contact Adobe, and ask for a CF7 license key. Just contact one of the folks on the following link: http://www.adobe.com/products/coldfusion/buy/ Andy 2009/10/30 Jeff Gladnick : > > It seems impossible to purchase new CFMX 7 licenses, and for the project I am >

RE: After the fact: SQL Injection Scanner

2009-10-21 Thread Andy Matthews
Mark's right. If you have the SQL injection code, you can essentially reverse engineer it and use it as a blueprint to fix the problems. andy -Original Message- From: Mosh Teitelbaum [mailto:mosh.teitelb...@evoch.com] Sent: Wednesday, October 21, 2009 2:10 PM To: cf-talk Su

RE: javascript and coldfusion

2009-10-20 Thread Andy Matthews
I don't think that YUI is still in development is it? ExtJS is what used to be YUI. It's almost always a good choice to select a library that has a robust developer community. jQuery has that in spades, and ExtJS is not far behind (if it is behind at all). andy -Origin

RE: javascript and coldfusion

2009-10-20 Thread Andy Matthews
y far your best choice. andy -Original Message- From: Richard White [mailto:rich...@j7is.co.uk] Sent: Tuesday, October 20, 2009 8:55 AM To: cf-talk Subject: javascript and coldfusion Hi, we are doing a review of the best javascript components libraries to use with coldfusion, e.g. jqu

RE: Debugging jquery post to coldfusion

2009-10-01 Thread Andy Matthews
Fiddler is good, but for the most part, Firebug is better. -Original Message- From: Gerald Guido [mailto:gerald.gu...@gmail.com] Sent: Thursday, October 01, 2009 9:20 AM To: cf-talk Subject: Re: Debugging jquery post to coldfusion I ran into Fiddler a while back. Pretty freaking aweso

RE: Debugging jquery post to coldfusion

2009-10-01 Thread Andy Matthews
A really good way to debug jQuery to CF mechanics is to use Firefox and Firebug. In Firebug you can see AJAX calls. Right click on that line in FB then select copy with parameters, and paste that into a new tab. It'll store all of your passed in vars, and let you see what CF is doing.

RE: CFC Question

2009-09-24 Thread Andy Matthews
Putting CFCs in the App scope is perfectly acceptable. You just have to know that's where they're stored. With our enterprise app, we store about 2 dozen CFCs in various scopes. Server, App, Session, etc. Each stored in the scope most appropriate for it's use. It's helped us save memory, processin

RE: CFC Question

2009-09-24 Thread Andy Matthews
reateObject? >> >> >> >> >>Are you getting an error? >> >> >>andy >> >>So for the meantime, I've put my cfc directory in the web root on the >>development server I use. >> >>I have the following code to call the cfc &g

RE: CFC Question

2009-09-24 Thread Andy Matthews
So you're calling this file from within ColdFusion directly right? What happens if you create it using CreateObject? Are you getting an error? andy -Original Message- From: Phillip Vector [mailto:vec...@mostdeadlygame.com] Sent: Thursday, September 24, 2009 1:31 PM To: cf

RE: cfc's above the webroot

2009-09-24 Thread Andy Matthews
only with using to a cfc that extends another one - cf does not create js functions for any remote methods from the extended cfc. Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ On 24/09/2009 23:34, Andy Matthews wrote: > That's not true. We do this sort of thing all the time in our co

RE: cfc's above the webroot

2009-09-24 Thread Andy Matthews
but called from the CFC inside the web root. andy -Original Message- From: Azadi Saryev [mailto:az...@sabai-dee.com] Sent: Thursday, September 24, 2009 10:31 AM To: cf-talk Subject: Re: cfc's above the webroot Mark, I am afraid that in CF8 (at least; and I know in CF9 this has bee

RE: cfc's above the webroot

2009-09-24 Thread Andy Matthews
Ben Nadel wrote a blog post about doing this sort of thing: http://www.bennadel.com/index.cfm?dax=blog:1125.view -Original Message- From: Phillip Vector [mailto:vec...@mostdeadlygame.com] Sent: Thursday, September 24, 2009 9:49 AM To: cf-talk Subject: cfc's above the webroot I woul

RE: Getting URL from URL address bar!

2009-09-23 Thread Andy Matthews
REFERRER isn't just for search engines. It's whatever page they were last on. -Original Message- From: David Torres [mailto:djt...@yahoo.com] Sent: Wednesday, September 23, 2009 1:30 PM To: cf-talk Subject: Re: Getting URL from URL address bar! Thank you guys for the prompt reply, but

RE: Custom scopes

2009-09-21 Thread Andy Matthews
No, that's not quite true. ColdFusion allows you to implicitly create a structure, and give it a new key in the same line: Works just fine. andy -Original Message- From: Rick Sanders [mailto:c...@webenergy.ca] Sent: Monday, September 21, 2009 12:31 PM To: cf-talk Subjec

RE: malware patterns

2009-09-17 Thread Andy Matthews
Super thorough research Brad. While I'm not affected, I appreciate your level of expertise. -Original Message- From: b...@bradwood.com [mailto:b...@bradwood.com] Sent: Thursday, September 17, 2009 2:47 PM To: cf-talk Subject: RE: malware patterns Michael, a quick nMap shows the follow

RE: houseoffusion.com down?

2009-09-17 Thread Andy Matthews
Looks like Forta's site might be having the same problem Michael. Todd Rafferty just got the danger warning from http://forta.com/ andy -Original Message- From: Michael Dinowitz [mailto:mdino...@houseoffusion.com] Sent: Thursday, September 17, 2009 8:41 AM To: cf-talk Subjec

RE: houseoffusion.com down?

2009-09-17 Thread Andy Matthews
Most likely Michael has taken it offline to complete the cleansing of infected files. -Original Message- From: Paul Alkema [mailto:paulalkemadesi...@gmail.com] Sent: Thursday, September 17, 2009 8:08 AM To: cf-talk Subject: houseoffusion.com down? I've noticed that houseoffusion.com i

RE: HoF invaded

2009-09-15 Thread Andy Matthews
Is it the actual file itself? That means someone got into your site via FTP. I told you that you shouldn't have left the password as 1234. :) But seriously. Sorry to hear about that Michael. Keep us posted. -Original Message- From: b...@bradwood.com [mailto:b...@bradwood.com] Sent: T

RE: How to handle CF variables in JS (jQuery) external files...

2009-09-09 Thread Andy Matthews
, username, password, etc) there in the VARIABLES scope. andy -Original Message- From: Rick Faircloth [mailto:r...@whitestonemedia.com] Sent: Wednesday, September 09, 2009 2:51 PM To: cf-talk Subject: RE: How to handle CF variables in JS (jQuery) external files... Thanks, Tony... ---

Re: Hot Fixes Explained

2009-09-07 Thread Andy Allan
Note that the latest security fixes are NOT included in 8010003. Andy 2009/9/7 Mike Chabot : > > The latest hotfix is 8010003. http://kb2.adobe.com/cps/511/cpsid_51180.html > > The cumulative hotfix 3 contains all the prior hotfixes, so delete > everything else in that folder t

Re: Determining CF8's UNIX Account

2009-09-02 Thread Andy Allan
start myinstance, then it'll use whichever user account you are currently logged in as. Andy 2009/9/2 Robert Nurse : > > Hi All, > > Does anyone know how to determine the UNIX account under which CF8 is > running?  We're using CFFILE to upload files to the server.  The

RE: Coldfusion + Flex

2009-08-21 Thread Andy Matthews
FlexBuilder is the same as running Flex within CFEclipse. They're both built on Eclipse. CFBuilder won't let you build Flex apps as it's not Flex Builder. andy -Original Message- From: Agha Mehdi [mailto:aghaime...@gmail.com] Sent: Friday, August 21, 2009 11:35

RE: Replacing characters in a string

2009-08-19 Thread Andy Matthews
by a > This wouldn't match anchor tags with upper case, but could be changed like so: ]*> And I think it might be best to use a lazy match: ]+> The plus says "one or more" rather than "zero or more" like the kleene star. Andy matthews -Origi

RE: keeping a session alive

2009-08-14 Thread Andy Matthews
Technically the server can know, via headers. http://www.developertutorials.com/learn-ajax/custom-http-headers-2643.php At least if you're using jQuery I believe that it adds this to the header automatically. -Original Message- From: b...@bradwood.com [mailto:b...@bradwood.com] Sent: F

Re: OT javascript

2009-07-30 Thread Andy Matthews
Chad... Here's what I'd suggest...leave the name value as is, even though that's not the best idea. Add an ID attribute to each, with an increasing numeric value: cb1, cb2, cb3, etc. Give each combobox the same class, comboBox or something like that. Then, you could try something like this:

RE: OT javascript

2009-07-30 Thread Andy Matthews
Are you the originator of the code? I mean can you change the source code? Because having two objects on the page with the same ID is bad mojo. I think you're going to run into lots of problems, and inconsistencies in different browsers if you keep them named the same. andy -Ori

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