Re: Preserve HTML format when inserting into HTML

2010-09-08 Thread Raymond Camden
#x.root.child[1].xmltext# p #s# /cfoutput cffile action=write file=#expandPath('foo.xml')# output=#toString(x)# On Wed, Sep 8, 2010 at 8:38 PM, Raymond Camden rcam...@gmail.com wrote: I'm digging. This came up 3 years ago too: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid

Re: CFDUMP not allowed in CFTHREAD in 9 - allowed in 8

2010-09-07 Thread Raymond Camden
I'm not seeing any issue with it: cfthread name=doit cfset sleep(2000) cfdump var=#url# /cfthread cfset threadJoin(doit) cfdump var=#cfthread# This works fine for me, On Tue, Sep 7, 2010 at 4:27 AM, Stephen Cassady stephen.cass...@lopedia.com wrote: This was new, just

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

2010-09-07 Thread Raymond Camden
This should work fine: cfif structKeyExists(somestruct, #y#head) You don't need IIF at all. On Tue, Sep 7, 2010 at 3:04 PM, Michael Grant mgr...@modus.bz wrote: If my var y = myCell and I want to know if the key myCellHead exists in a struct how do I do it? I thought that the following

Re: Preserve HTML format when inserting into HTML

2010-09-07 Thread Raymond Camden
When you cfdump something, it escapes it. So if you view source it, you are seeing cfdump's escape. In other words, it isn't the REAL value. On Tue, Sep 7, 2010 at 3:08 PM, Jake Munson jmun...@idahopower.com wrote: When verifying the dumped text throughout the process, you're looking at the

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

2010-09-07 Thread Raymond Camden
...@modus.bz wrote: I know, but I want it inline of an html tag, so that's why I wanted IIF instead of an if/else block. On Tue, Sep 7, 2010 at 4:15 PM, Raymond Camden rcam...@gmail.com wrote: This should work fine: cfif structKeyExists(somestruct, #y#head) You don't need IIF at all

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

2010-09-07 Thread Raymond Camden
statement and got the effect I desired, but I don't get why the above code wouldn't work. Even though I've moved on I'd still love to know why it's not working. Thanks. On Tue, Sep 7, 2010 at 4:48 PM, Raymond Camden rcam...@gmail.com wrote: It works for me: cfset x = {} cfset y = all

Re: Preserve HTML format when inserting into HTML

2010-09-07 Thread Raymond Camden
So wait - you put the string into an XML object? Maybe you can pastebin more of the code. On Tue, Sep 7, 2010 at 3:52 PM, Jake Munson jmun...@idahopower.com wrote: When you cfdump something, it escapes it. So if you view source it, you are seeing cfdump's escape. In other words, it isn't the

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

2010-09-07 Thread Raymond Camden
Bah - I hacked away at it for 10 minutes before remembering why I hated IIF/DE in the first place. ;) On Tue, Sep 7, 2010 at 4:04 PM, Michael Grant mgr...@modus.bz wrote: Try running this: cfset x = {} cfset y = all cfoutput #iif(StructKeyExists(x,#y#head),DE('yes'),DE('no'))# /cfoutput

Re: Preserve HTML format when inserting into HTML

2010-09-07 Thread Raymond Camden
Normally when you put HTML into an XML node, it has to be within cdata. So maybe CF is fixing the HTML for you? On Tue, Sep 7, 2010 at 4:40 PM, Jake Munson jmun...@idahopower.com wrote: So wait - you put the string into an XML object? Maybe you can pastebin more of the code. I have developed

Re: Preserve HTML format when inserting into HTML

2010-09-07 Thread Raymond Camden
, 2010 at 8:13 PM, Raymond Camden rcam...@gmail.com wrote: Normally when you put HTML into an XML node, it has to be within cdata. So maybe CF is fixing the HTML for you? On Tue, Sep 7, 2010 at 4:40 PM, Jake Munson jmun...@idahopower.com wrote: So wait - you put the string into an XML object? Maybe

Re: Preserve HTML format when inserting into HTML

2010-09-05 Thread Raymond Camden
As far as I know, CF will not encode HTML unless you tell it to. Are you 100% sure you aren't using htmlEditFormat on the data? On Fri, Sep 3, 2010 at 3:06 PM, Jake Munson jmun...@idahopower.com wrote: I have an XML object that was populated from an XML file.  This XML comes from an external

Re: Is there an anchor in a URL String

2010-09-02 Thread Raymond Camden
As far as I know, no. You would need to do it client side. On Thu, Sep 2, 2010 at 1:50 PM, Robert Harrison rob...@austin-williams.com wrote: I need to know if there is an anchor in a URL string (e.g., http://mylink.cfm#thisanchor). Doing a CF dump and listing of every cgi var I know of does

Re: Is there an anchor in a URL String

2010-09-02 Thread Raymond Camden
Ugh sorry - for some reason GMail put this msg above the earlier thread. On Thu, Sep 2, 2010 at 2:03 PM, Raymond Camden rcam...@gmail.com wrote: As far as I know, no. You would need to do it client side. On Thu, Sep 2, 2010 at 1:50 PM, Robert Harrison rob...@austin-williams.com wrote: I

Re: optimizing CFIDE for cfform

2010-08-31 Thread Raymond Camden
I'm a huge fan of jQuery as well - but remember that for a _lot_ of folks, jQuery is going to be far too difficult. CF's Ajax stuff provide a _super_ easy way to do Ajaxy stuff. :) On Tue, Aug 31, 2010 at 10:13 AM, Gerald Guido gerald.gu...@gmail.com wrote: The only way to reduc ethat is you

Re: Excluding characters from verity search

2010-08-30 Thread Raymond Camden
VerityClean: http://www.cflib.org/udf/verityClean On Mon, Aug 30, 2010 at 11:31 AM, Richard Steele r...@photoeye.com wrote: Someone wrote a nice little cffunction, cfmodule or cfc to use with Verity searches to exclude illegal characters from the search routine. I've tried to find it

Re: Alternatives to CFFM?

2010-08-19 Thread Raymond Camden
And as a side note - if you switched to Chrome because it's 100x faster then Firefox (grin), it has similar tools built in. On Thu, Aug 19, 2010 at 8:53 AM, Rick Root rick.r...@gmail.com wrote: On Thu, Aug 19, 2010 at 9:36 AM, Andrew Scott andr...@andyscott.id.au wrote: For what it is worth,

Re: Preventing use of remote method by other sites

2010-08-16 Thread Raymond Camden
Don't forget you can easily set those headers yourself. I could setup cfhttp to use that header and hit your resource. On Fri, Aug 13, 2010 at 3:31 PM, Andy Matthews li...@commadelimited.com wrote: Works perfectly Tony. I simplified the conditional tho' cfif

Re: Preventing use of remote method by other sites

2010-08-16 Thread Raymond Camden
- 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 could setup cfhttp to use that header and hit your resource. On Fri, Aug

Re: Preventing use of remote method by other sites

2010-08-16 Thread Raymond Camden
get our JS guy to also pass in a session id. Then I could compare that with the actual session ID for the user and go from there. -Original Message- From: Raymond Camden [mailto:rcam...@gmail.com] Sent: Monday, August 16, 2010 11:42 AM To: cf-talk Subject: Re: Preventing use of remote

Re: Forums using CFCs?

2010-08-10 Thread Raymond Camden
Did you search RIAForge? Found 6 http://www.riaforge.org/index.cfm?event=page.search#forum_catid=1 On Tue, Aug 10, 2010 at 9:17 AM, Jake Pilgrim j...@pilgrimwebshop.com wrote: Lol... Sorry, I didn't mean to start a debate on whether-or-not Galleon is CFC based (I never stated it wasn't).

Re: Forums using CFCs?

2010-08-10 Thread Raymond Camden
As a quick FYI, RIAForge is having issues today. I've had to restart it a few times and won't have time to really dig until tonight. So, if it is down, say a few quick prayers and reload in 10 minutes. On Tue, Aug 10, 2010 at 9:27 AM, Raymond Camden rcam...@gmail.com wrote: Did you search

Re: Forums using CFCs?

2010-08-09 Thread Raymond Camden
Eh? Galleon isn't CFC based? On Mon, Aug 9, 2010 at 3:43 PM, Matt Quackenbush quackfu...@gmail.com wrote: He said he was specifically looking for *CFC-based forums*.  The aforementioned are not CFC-based.  In other words, and perhaps I am wrong, but I do not think he was saying the others

Re: Forums using CFCs?

2010-08-09 Thread Raymond Camden
If I need to add more CFCs to Galleon, I can. ;) cowbell.cfc oop.cfc viewSystemDextrousHandlerSupreme.cfc On Mon, Aug 9, 2010 at 3:47 PM, Mark Drew mark.d...@gmail.com wrote: Galleon is cfc based tho? Sent from my iPhone (apologies for my brevity!) On 9 Aug 2010, at 21:43, Matt

Re: Forums using CFCs?

2010-08-09 Thread Raymond Camden
than seeing it installed on certain sites (ColdBox forums, Mura forums, etc).  Since I know that it does the things the OP listed, and based upon the that post, I assumed it was not CFC-based.  shrug -- === Raymond Camden

Re: onApplicationStart

2010-08-04 Thread Raymond Camden
That's by design. CF knows when an application starts. You can 'force' it a few ways. 1) In CF9, within onRequestStart, add a check for url.init (or some such), and run applicationStop(), you then need to reload the current request. 2) Or even simpler, within onRequestStart, add a check for a

Re: Is attributeCollection broken in CF 9 ?

2010-07-28 Thread Raymond Camden
Are you use that is supported in CFX tags? From what I know, that feature was only supported for CFML custom tags. On Wed, Jul 28, 2010 at 1:07 PM, wrote:  Why don't you paste the full error message and the code. I already posted it in my first post. The full error message is The tag

Re: can there be an error structure without tagcontext

2010-07-26 Thread Raymond Camden
I want to say I have - but I have no proof. Why not just use an arrayLen and structKeyExists check to be safe? On Mon, Jul 26, 2010 at 4:01 PM, Michael Dinowitz mdino...@houseoffusion.com wrote: I'm rewriting an email alert system for errors and part of it is pinpointing the error location

Re: Salesforce CFC?

2010-07-23 Thread Raymond Camden
How did the contact form break for you on RIAForge? On Thu, Jul 22, 2010 at 2:07 PM, Billy Cox bi...@oldworldspices.com wrote: Hey Brad. I have tried more than once to contact Tom de Manincor through the riaforge.com site, and the contact mechanism seemed to be broken. I tried commenting on

Re: What has happened to my Firebug?

2010-07-20 Thread Raymond Camden
Don't forget if you switch to Chrome you've got pretty much the same toolset built in. On Tue, Jul 20, 2010 at 11:36 AM, Rick Faircloth r...@whitestonemedia.com wrote: Well, thanks anyway... I just uninstalled Firebug and all customizations, then reinstalled, and everything is back to

Re: What has happened to my Firebug?

2010-07-20 Thread Raymond Camden
. Liking Chrome these days, are we Ray? :o) Rick -Original Message- From: Raymond Camden [mailto:rcam...@gmail.com] Sent: Tuesday, July 20, 2010 1:44 PM To: cf-talk Subject: Re: What has happened to my Firebug? Don't forget if you switch to Chrome you've got pretty much the same

Re: What has happened to my Firebug?

2010-07-20 Thread Raymond Camden
Ive been growing my beard in preparation. On Tuesday, July 20, 2010, Andy Matthews li...@commadelimited.com wrote: I'll deathmatch you during your presentation tomorrow night. Heckling throughout the entire duration. :) andy -Original Message- From: Raymond Camden

CF901 Released

2010-07-13 Thread Raymond Camden
! -- === Raymond Camden, ColdFusion Jedi Master Email    : r...@camdenfamily.com Blog      : www.coldfusionjedi.com AOL IM : cfjedimaster Keep up to date with the community: http://www.coldfusionblogger

Re: ColdFusion Blogging Engines

2010-07-12 Thread Raymond Camden
Woot - ball back to BlogCFC - what better recommendation can I ask for? ;) In all seriousness though - did you check RIAForge? http://www.riaforge.org/index.cfm?event=page.search#blog_catid=1 I turned up -59- results. Now many of those are plugins - but there is more than BlogCFC and Mango.

Re: Looking for a CF Recipe script!

2010-07-08 Thread Raymond Camden
on to explain the whole 0 based thing. -- === Raymond Camden, ColdFusion Jedi Master Email: r...@camdenfamily.com Blog : www.coldfusionjedi.com AOL IM : cfjedimaster Keep up to date with the community: http

Re: cfwindow - dynamically setting window title using javascript?

2010-07-07 Thread Raymond Camden
Don't use cfwindow. Use the JS API CF gives you to make cfwindow's dynamically. On Wed, Jul 7, 2010 at 8:08 AM, Pete Ruckelshaus pruckelsh...@gmail.com wrote: Is there a way to dynamically set the cfwindow title using JavaScript?  What I mean is, I have the cfwindow's title attribute set to

Re: cfwindow - dynamically setting window title using javascript?

2010-07-07 Thread Raymond Camden
Paul got it. It is also in your CFML Reference. On Wed, Jul 7, 2010 at 8:30 AM, Pete Ruckelshaus pruckelsh...@gmail.com wrote: Ray, do you have any example code? Thanks Pete On Wed, Jul 7, 2010 at 9:26 AM, Raymond Camden rcam...@gmail.com wrote: Don't use cfwindow. Use the JS API CF

Re: cfwindow - dynamically setting window title using javascript?

2010-07-07 Thread Raymond Camden
No, you only open the window the user asks for it (based on whatever UI event you set up). On Wed, Jul 7, 2010 at 8:49 AM, Pete Ruckelshaus pruckelsh...@gmail.com wrote: That doesn't solve my problem. I would need to create hundreds of cfwindow instances just to have a cfwindow title match

Re: Deleting Verity Collections

2010-07-06 Thread Raymond Camden
cfcollection tag. On Tue, Jul 6, 2010 at 10:02 AM, Robert Nurse rnu...@gmail.com wrote: Hi, Is there a way of deleting a verity collection outside of the CF Administrator?  I'm getting errors when I try to optimize, purge or delete a collection.

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

2010-06-22 Thread Raymond Camden
Ok, I'm now straying into OT area, but I must be the only who liked the idea of PRODUCT YEAR as a brand. Ie, Windows 95, Windows 98, Windows 2000. To me it was a very clear way to know the release of the version you are using. On Tue, Jun 22, 2010 at 8:30 AM, Justin Scott

Re: jQuery alternative to cfwindow?

2010-06-18 Thread Raymond Camden
I'll ditto the jQuery UI suggestion. Here is a blog article on it that may help: http://www.coldfusionjedi.com/index.cfm/2009/2/2/Creating-a-Dialog-with-jQuery-UI-2 On Fri, Jun 18, 2010 at 6:24 AM, andy matthews li...@commadelimited.com wrote: If you're writing an entire app then you might

Re: ColdFusion 9 CSS Reset Warning

2010-06-18 Thread Raymond Camden
Yep - this is a known issue. I just saw a blog entry on it a little while ago - and it had a good workaround too. Give me a minute to dig it up. On Fri, Jun 18, 2010 at 8:56 AM, Paul Alkema paulalkemadesi...@gmail.com wrote: Hi All, I just upgraded one my old sites to CF9 and was surprised

Re: ColdFusion 9 CSS Reset Warning

2010-06-18 Thread Raymond Camden
http://nm1m.blogspot.com/2009/11/cfwindow-css-bug-workaround.html On Fri, Jun 18, 2010 at 8:59 AM, Raymond Camden rcam...@gmail.com wrote: Yep - this is a known issue. I just saw a blog entry on it a little while ago - and it had a good workaround too. Give me a minute to dig it up. On Fri

Re: list of declared functions

2010-06-18 Thread Raymond Camden
You can do a simple isDefined. Combine it with isCustomFunction to complete. cfif isDefined(makeCowbell) and isCustomFunction(makeCowbell) On Fri, Jun 18, 2010 at 10:01 AM, daniel kessler dani...@umd.edu wrote: I am receiving the error Routines cannot be declared more than once, which is

Re: State of cffileupload

2010-06-17 Thread Raymond Camden
Could it be the disk itself? My external HD is... FAT I think which had a 4GB limit. On Thu, Jun 17, 2010 at 9:38 AM, Thomas Harper harpe...@upmc.edu wrote: It's my understanding that file uploads cannot exceed the amount of available memory (might be an old wives' tale, but it makes sense).  

Re: best way to see url vars from cfhttp?

2010-06-16 Thread Raymond Camden
: -- === Raymond Camden, ColdFusion Jedi Master Email: r...@camdenfamily.com Blog : www.coldfusionjedi.com AOL IM : cfjedimaster Keep up to date with the community: http://www.coldfusionbloggers.org ~| Order

Re: Check for remote CFC call in CF 8

2010-06-15 Thread Raymond Camden
Just to be clear - checking the header works when the library used for calls uses it. It's not 100% correct (but speaking practically, it is safe). On Tue, Jun 15, 2010 at 10:23 AM, Azadi Saryev azadi.sar...@gmail.com wrote:  specifically for detecting jquery ajax calls to remote cfc functions

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

2010-06-14 Thread Raymond Camden
Evaluate is slow - comparatively. It isn't horrible though. The main reason I will complain about evaluate is when it isn't strictly necessary. Technically it isn't in your case. You could break up the string into parts and check the existence of each - but I think your code is fine (and a hell

Re: Bizarre capitalisation issue with bookmarkTitles in CFPDF with DDX

2010-06-14 Thread Raymond Camden
, CF inexplicably makes the first 'C' be lower case.  This does not affect any other letters of the alphabet. -- === Raymond Camden, ColdFusion Jedi Master Email: r...@camdenfamily.com Blog

Re: Bizarre capitalisation issue with bookmarkTitles in CFPDF with DDX

2010-06-14 Thread Raymond Camden
be Cover Page, CF inexplicably makes the first 'C' be lower case.  This does not affect any other letters of the alphabet. -- == = Raymond Camden, ColdFusion Jedi Master Email    : r...@camdenfamily.com Blog

Re: CF9: How pass cfgrid values to a cfm page?

2010-06-13 Thread Raymond Camden
On Fri, Jun 11, 2010 at 9:00 PM, Azadi Saryev azadi.sar...@gmail.com wrote:  On 11/06/2010 23:40, Raymond Camden wrote: You've made your button use CF's navigate function, which is NOT going to pass the form fields along actually, it IS going to pass them if you specify form's name or id

Re: CF9: How pass cfgrid values to a cfm page?

2010-06-11 Thread Raymond Camden
You've made your button use CF's navigate function, which is NOT going to pass the form fields along. Why not just get rid of that and use a normal submit? On Fri, Jun 11, 2010 at 8:16 AM, Joy Rose joycer...@gmail.com wrote: I get  Element RCP_ID is undefined in FORM when I run the code below:

Re: CF8 Component/Cfinvoke performance

2010-06-09 Thread Raymond Camden
Did you use something like cfinvoke component=foo method=goo returnVariable=result ? If so, then you are recreating the component on each request. You can, and probably should, store the CFC one time in a persistant scope. Your Application.cfc's onApplicationStart could do something like this:

Re: UPS calculator

2010-06-09 Thread Raymond Camden
I'm assuming you didn't search RIAForge? http://cfups.riaforge.org/ On Wed, Jun 9, 2010 at 12:06 PM, Matthew Friedman m...@hozgroup.com wrote: Does anyone know of a Coldfusion UPS calculator. We have weight, from address and to address. looking to get the cost to ship ground. thank you

Re: imageRead plus imagepaste plus imageGetBlob issue

2010-06-04 Thread Raymond Camden
for an event gateway if the offer still stands. -Original Message- From: Raymond Camden [mailto:rcam...@gmail.com] Sent: Thursday, June 03, 2010 12:01 PM To: cf-talk Subject: Re: imageRead plus imagepaste plus imageGetBlob issue FYI, I've got some sample code to show how you can use

Re: imageRead plus imagepaste plus imageGetBlob issue

2010-06-04 Thread Raymond Camden
http://www.coldfusionjedi.com/index.cfm/2010/6/4/Automating-watermarking-of-images-with-ColdFusion On Fri, Jun 4, 2010 at 6:40 AM, Raymond Camden rcam...@gmail.com wrote: Code is written - just ran into some other stuff yesterday which prevented me from blogging it. Will be the first thing I

Re: CFAJAXPROXY - Getting NULL as the result sent to the callback.

2010-06-04 Thread Raymond Camden
as a NULL. In my callback I have alert(res) as the only item and I expect to see [object] as the alert, but instead I get null. -- === Raymond Camden, ColdFusion Jedi Master Email: r...@camdenfamily.com Blog

Re: CFAJAXPROXY - Getting NULL as the result sent to the callback.

2010-06-04 Thread Raymond Camden
: getExactMatch , arguments: {propForm:{unitNum:,streetNum:157,streetName:Langarth,streetType:STREET,streetDir:East,city:London}} info:*LogReader*: LogReader initialized info:*global*: Logger initialized On Fri, Jun 4, 2010 at 11:26 AM, Raymond Camden rcam...@gmail.com wrote: So I assume you used

Re: CFAJAXPROXY - Getting NULL as the result sent to the callback.

2010-06-04 Thread Raymond Camden
So that tells you that your CFC isn't returning anything. Are you on CF8? Do you have an Application.cfc that makes use of onRequest? On Fri, Jun 4, 2010 at 11:40 AM, Michael Grant mgr...@modus.bz wrote: *Here's the dev tools resource output for when I call getExcatMatch(). The Content tab

Re: imageRead plus imagepaste plus imageGetBlob issue

2010-06-03 Thread Raymond Camden
FYI, I've got some sample code to show how you can use a scheduled task to do this, or an event gateway. On Thu, Jun 3, 2010 at 10:48 AM, DURETTE, STEVEN J (ATTASIAIT) sd1...@att.com wrote: Why don't you use a hybrid...  Drop the files in a directory, then when it's that files turn, check to

Re: Home Site+ and Windows 7

2010-06-03 Thread Raymond Camden
I know this was for Sean, but I'd like to chime in too. ;) Since you can add custom dictionaries and you can tell CFB which is active, couldn't the Railo folks simply create and share a library? On Thu, Jun 3, 2010 at 11:02 AM, Judah McAuley ju...@wiredotter.com wrote: Hey Sean, how do you

Re: Home Site+ and Windows 7

2010-06-03 Thread Raymond Camden
On Thu, Jun 3, 2010 at 9:10 AM, Raymond Camden rcam...@gmail.com wrote: I know this was for Sean, but I'd like to chime in too. ;) Since you can add custom dictionaries and you can tell CFB which is active, couldn't the Railo folks simply create and share a library? On Thu, Jun 3, 2010 at 11

Re: imageRead plus imagepaste plus imageGetBlob issue

2010-06-02 Thread Raymond Camden
Never saw the issue myself. You know - as fast as CF is - there really is no reason to be doing this on every request. When you've made the watermarked version, you should save it. In fact, I'd just do a one time script to generate them and then dynamically pick from there. Also - I'd consider

Re: imageRead plus imagepaste plus imageGetBlob issue

2010-06-02 Thread Raymond Camden
of the images drastically to see if file size was playing a factor. -Original Message- From: Raymond Camden [mailto:rcam...@gmail.com] Sent: Wednesday, June 02, 2010 6:22 AM To: cf-talk Subject: Re: imageRead plus imagepaste plus imageGetBlob issue Never saw the issue myself. You know

Re: imageRead plus imagepaste plus imageGetBlob issue

2010-06-02 Thread Raymond Camden
On Wed, Jun 2, 2010 at 7:38 AM, Bobby Hartsfield bo...@acoderslife.com wrote: Yeah, but then I wouldn't get the satisfaction in knowing that it is magic every time I load the page! Haha Perfect! ;) You are right though, I am most likely headed to a solution that involves watermarking the

Re: Coldfusion Builder Stored Procedures

2010-06-01 Thread Raymond Camden
I don't believe it is supported. I did a quick search on the CFBuilder public bug tracker and this was the closest related bug: http://cfbugs.adobe.com/bugreport/flexbugui/cfbugtracker/main.html#bugId=75148 It seems a bit broad though. I'd consider adding a very specific bug. I'd vote for it.

Re: Homesite 9 project

2010-06-01 Thread Raymond Camden
When done, you should also consider hosting it on RIAForge. We have a misc category. On Tue, Jun 1, 2010 at 10:31 AM, Michael Dinowitz mdino...@houseoffusion.com wrote: I'll be updating Homesite to the latest (CF9) docs. If anyone has any suggestions, requests, whatever, please let me know.

Re: CF CAPTCHA?

2010-06-01 Thread Raymond Camden
You need to write the code to pick the string and then do the validation. cfimage simply handles taking your text and making it look funky. This article may help: http://www.coldfusionjedi.com/index.cfm/2008/3/29/Quick-and-Dirty-ColdFusion-8-CAPTCHA-Guide On Tue, Jun 1, 2010 at 2:06 PM,

Re: Can anyone see what's wrong with this cfc method?

2010-06-01 Thread Raymond Camden
You must put var statements (and other CFML) after any cfargument tag. On Tue, Jun 1, 2010 at 4:00 PM, Rick Faircloth r...@whitestonemedia.com wrote: I'm getting this error:     Context validation error for the cffunction tag.     The start tag must have a matching end tag.  An explicit

Re: CF CAPTCHA?

2010-06-01 Thread Raymond Camden
Yeah, I'll +1 this. When I switched to it on my blog (and used akismet/honeypot), I was able to turn off captcha completely. I still get spam, but maybe one or two a week. On Tue, Jun 1, 2010 at 5:20 PM, Mary Jo Sminkey mary...@cfwebstore.com wrote: Before I go writing my own CAPTCHA

Re: dynamic price range

2010-05-31 Thread Raymond Camden
I'd say you want to do something like this - pseudo-code select distinct price from products This returns a list like 9.99, 12.99, 25, 69, 70, 120, 199.99 Then assuming you want to use ranges like 0-10, 10-20, etc, up to some end point, like 200+, you can loop use a query of query to see if a

Re: referencing #application.applicationname#

2010-05-31 Thread Raymond Camden
Do you remember what chapter that is? I'm 99% sure CFWACK makes it clear that locks aren't necessary for simple reads. I remember writing those updates myself a few revs back but I'd like to confirm the current text is clear. On Sun, May 30, 2010 at 4:29 PM, Matthew P. Smith

Re: pdf metadata

2010-05-28 Thread Raymond Camden
No, pdfutils uses DDX via cfpdf. Of course, in CF9 you don't need that. On Fri, May 28, 2010 at 1:13 PM, Leigh cfsearch...@yahoo.com wrote: The FAQ's say OpenBD comes with pdfbox (as well as iText 2.x).  Between the two of them you should be able to work with the metadata.

Re: Software Recommendations

2010-05-14 Thread Raymond Camden
I definitely prefer BlogCFC. ;) On Thu, May 13, 2010 at 4:07 PM, Will Swain w...@hothorse.com wrote: Are people generally preferring Mango to Ray's BlogCFC nowadays? I've done a few blogs with blogCFC, but haven't tried Mango yet. -Original Message- From: Christopher Stowell

Re: ColdFusion 9 binding cfgrid

2010-05-10 Thread Raymond Camden
What does Firebug or Chrome's Dev Tools show you in the HTTP request? Is CF Debugging on? On Sun, May 9, 2010 at 2:41 PM, Alteria ljschab...@verizon.net wrote: I am having some issues figuring this one out. The code was all working with ColdFusion 8, then we moved to a CF 9 server and

Re: Return single pages from a PDF

2010-05-10 Thread Raymond Camden
Well, you can get the text from PDFs, and this is per page, so you could index that. It's trivial in CF9, slightly harder in CF8 unless you use pdfUtils.cfc from RIAForge. On Sun, May 9, 2010 at 10:44 PM, Dave Watts dwa...@figleaf.com wrote: The pdf is over 30K pages, i need to return the

Re: Style Classic Debugging File in CFIDE

2010-05-10 Thread Raymond Camden
Nope, just Firebug. On Mon, May 10, 2010 at 10:43 AM, Azadi Saryev azadi.sar...@gmail.com wrote:  isn't coldfire only usable in firefox browser? does it work with firebug lite? Azadi On 10/05/2010 23:30, Rob Barthle wrote: On a local development box, I see no reason to not use ColdFire.

Re: Multi-axis charts in CF8?

2010-04-19 Thread Raymond Camden
Like so? http://www.coldfusionjedi.com/index.cfm/2008/11/11/Ask-a-Jedi-Two-yAxis-for-ColdFusion-Charts On Mon, Apr 19, 2010 at 9:58 AM, marc -- m...@marcbakker.com wrote: Hi, Just wondering - I know that in Coldfusion 8 you can have a chart with multiple data series. BUT is it also

Re: CF Code in CMS Database Not Executed

2010-04-16 Thread Raymond Camden
Don't forget you can also write it to the VFS in CF9. One could easily make a UDF called render() that would do it for you. On Fri, Apr 16, 2010 at 11:56 AM, Matt Quackenbush quackfu...@gmail.com wrote: John's solution is also valid, to be sure.  And if you're doing a lot of this type of

Re: CF Code in CMS Database Not Executed

2010-04-16 Thread Raymond Camden
Of course, to use the VFS for this you would also need to create a mapping for it so the cfinclude can work. THen again, that is also pretty trivial in CF9. On Fri, Apr 16, 2010 at 1:50 PM, Raymond Camden rcam...@gmail.com wrote: Don't forget you can also write it to the VFS in CF9. One could

Re: DateDiff() and Minutes Wierdness

2010-04-13 Thread Raymond Camden
Um, aren't those times like 50 seconds or so apart? Isn't 50 seconds 1 minute? Therefore 0 full minutes? On Tue, Apr 13, 2010 at 7:32 AM, Bradley Stone b...@nb9m.com wrote: All: Feeding DateDiff() dates which are more than 24 hours apart yields minutes: cfoutput #DateDiff(n, 2010-04-08

Re: DateDiff() and Minutes Wierdness

2010-04-13 Thread Raymond Camden
seconds Around 3 days, 28 minutes, 58 seconds apart? (No coffee yet, so results may be skewed!) And what does the first decimal place in 36.0 represent, anyway? A tenth of a second?  Never worked with time and decimal places. -Original Message- From: Raymond Camden [mailto:rcam

Re: ColdFusion 9 WACK

2010-04-06 Thread Raymond Camden
On Tue, Apr 6, 2010 at 9:32 PM, Eric . mister...@mistergin.net wrote: BTW, to your reply to Maureen - b3 == Book 3? Yep! ~| Want to reach the ColdFusion community with something they want? Let them know on the House of

Re: ColdFusion 9 WACK

2010-04-03 Thread Raymond Camden
Remember that the book is for beginners, so a 'rehash of the basics' is a bit unfair. If you _know_ CF, then you probably want to wait till the 3rd volume where more advanced topics are. If you _dont_ know CF, then I think the 1st volume is excellent. Of course, I'm fairly biased. On Fri, Apr 2,

Re: ColdFusion 9 WACK

2010-04-03 Thread Raymond Camden
Check the TOC for b3 Maureen. It may be what you need. (Which I don't think is live yet - so you may have to wait.) On Sat, Apr 3, 2010 at 9:37 AM, Maureen mamamaur...@gmail.com wrote: Is there a book for people who already know CFML but need to learn the advanced stuff, like configuring

Re: ColdFusion 9 WACK

2010-04-03 Thread Raymond Camden
Personally, I prefer teaching and writing to just doing code. I love to write code as well, but sharing CF (and AIR, jQuery,etc) with others to me is just much more rewarding. :) On Sat, Apr 3, 2010 at 9:39 AM, Roger Austin raust...@nc.rr.com wrote: On 4/3/2010 10:33 AM, Raymond Camden wrote

Re: ColdFusion 9 WACK

2010-04-02 Thread Raymond Camden
All I know is - my 20 chapters are done and I'm never going to agree to write a book again. At least not this year. On Thu, Apr 1, 2010 at 5:17 PM, Alan Rother alan.rot...@gmail.com wrote: Hey Joshua, The rough cut for Volume 1 is up right now. I'm not 100% sure when it go on sale as a

Re: Strange form field behavior based on its name

2010-04-01 Thread Raymond Camden
Which, thankfully, CF9 finally gave us a way to turn off. On Thu, Apr 1, 2010 at 9:51 AM, Dave Watts dwa...@figleaf.com wrote: Are out_start and out_end reserved keywords for form fields?  I looked for documentation found no references.  When I output their value after submission, they're

Re: cflib.org errors

2010-03-29 Thread Raymond Camden
FYI, this is due to a bug in MG that was fixed in the recent update. I haven't updated my copy of MG yet - I need to when I get a spare minute. :) Anyway, CFLib should be back up and happy. On Mon, Mar 29, 2010 at 3:23 AM, James Holmes james.hol...@gmail.com wrote: Ray Camden is the right

Re: CFBuilder RDS Query Viewer max rows

2010-03-25 Thread Raymond Camden
No, but the SQL Editor view has no limit. That's both good and bad obviously. ;) But if you want more than 50, just use it instead. I'd still use a TOP/LIMIT though so you don't get thousands of records. On Thu, Mar 25, 2010 at 9:12 AM, Rob Barthle r...@barthle.com wrote: Is there a setting

Re: CFBuilder RDS Query Viewer max rows

2010-03-25 Thread Raymond Camden
, Raymond Camden rcam...@gmail.com wrote: No, but the SQL Editor view has no limit. That's both good and bad obviously. ;) But if you want more than 50, just use it instead. I'd still use a TOP/LIMIT though so you don't get thousands of records. What SQL Editor view? RDS Query Viewer

Re: CFBuilder RDS Query Viewer max rows

2010-03-25 Thread Raymond Camden
It is a SQL Editor. You can write _anything_. On Thu, Mar 25, 2010 at 10:11 AM, wrote:  Inside a cfquery, right click and do SQL Editor. Thanks for the tip. The video show how to build a select with an ORDER BY clause. Is there any provision for more complex clauses and queries like

Re: CFBuilder RDS Query Viewer max rows

2010-03-25 Thread Raymond Camden
Right - it gives hinting for table/cols,and color coding. It is not a Visual Query Builder. On Thu, Mar 25, 2010 at 10:52 AM, wrote:  You can write _anything_. Ok, so, if I understand well the editor will just help you to select tables and column names, the rest of the syntax, commands,

Re: CFBuilder RDS Query Viewer max rows

2010-03-25 Thread Raymond Camden
, Raymond Camden rcam...@gmail.com wrote: Right - it gives hinting for table/cols,and color coding. It is not a Visual Query Builder. ok skip sql editor... where is autoComplete / tag insite inside cfquery       cfquery name=UpdateLog datasource=#request.dsn#            Update Log

Re: CFBuilder RDS Query Viewer max rows

2010-03-25 Thread Raymond Camden
...@uberwebsitesolutions.com wrote: On Thu, Mar 25, 2010 at 12:30 PM, Raymond Camden rcam...@gmail.com wrote: I know code insight works for table/col names. I also see CI for cfqueryparam. For example, it showed the arguments, and when I picked cfsqltype, it gave me a list of types. when  I start

Re: ColdFusion Builder Released!

2010-03-24 Thread Raymond Camden
300 bucks though? That's 6 XBox games. ;) Seriously though - if you budget $$ for hardware I'd assume you also budget something for software. I'd assume that types of folks who can't afford this are a) students and b) recently laid off - both of whom can get it for free, so problem solved. On

Re: ColdFusion Builder Released!

2010-03-24 Thread Raymond Camden
On Wed, Mar 24, 2010 at 9:37 AM, Dave Watts dwa...@figleaf.com wrote: It's not so much that $300 is a trivial amount, but rather that it's well within the expected range of prices for the tools you buy as a software developer, and it's at the low end of that range. Again, this brings me back

Re: ColdFusion Builder Released!

2010-03-23 Thread Raymond Camden
Both CF and CFB are free for education. On Tue, Mar 23, 2010 at 1:55 PM, Roger Austin raust...@nc.rr.com wrote: Mary Jo Sminkey mary...@cfwebstore.com wrote: Having said that, I really am thrilled to hear that they are giving it for free for educational use. That certainly is a big

Re: CF Education (was: ColdFusion Builder Released!)

2010-03-23 Thread Raymond Camden
But there are good academic prices though: http://www.adobe.com/education/purchasing/education_pricing.html On Tue, Mar 23, 2010 at 2:44 PM, b...@bradwood.com wrote: To be clear, educational use in my understanding means you can teach a CFML class using the server and IDE in the classroom

Re: CF Education (was: ColdFusion Builder Released!)

2010-03-23 Thread Raymond Camden
academic pricing available? I'm guessing it just hasn't made it up there yet as the Flex Builder version they list is still version 3. Judah On Tue, Mar 23, 2010 at 12:54 PM, Raymond Camden rcam...@gmail.com wrote: But there are good academic prices though: http://www.adobe.com/education

Re: CF Education (was: ColdFusion Builder Released!)

2010-03-23 Thread Raymond Camden
The price is 199. See the comment from Terry on this blog post: http://www.terrenceryan.com/blog/post.cfm/coldfusion-builder-and-flash-builder-free-for-education On Tue, Mar 23, 2010 at 3:12 PM, Raymond Camden rcam...@gmail.com wrote: I have seen a price for the academic version, but I don't

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