Re: Open source ColdFusion forums

2011-03-29 Thread Raymond Camden
I know I mentioned this earlier, but why not contribute to an existing project? Galleon could use help. Many CF projects could use additional developers. On Tue, Mar 29, 2011 at 11:54 AM, Justin Scott wrote: > > I'd like to thank everyone for the feedback regarding an open source > ColdFusion pr

Re: CFSEARCH puzzle

2011-03-29 Thread Raymond Camden
ng.com.au > m: 0418 815 527 > > ++ > > http://au.linkedin.com/in/krparker > > > -Original Message- > From: Raymond Camden [mailto:rcam...@gmail.com] > Sent: Tuesday, 29 March 2011 09:05 > To: cf-talk > Subject: Re: CFSEARCH puzzle > > > Y

Re: CFSEARCH puzzle

2011-03-28 Thread Raymond Camden
Your looking at the context result in the query, right? Not the summary column, but the context column. On Sun, Mar 27, 2011 at 4:52 AM, Kevin Parker wrote: > > Does anyone have any insight into why CFSEARCH (CF8) might ignore > contexthighlightbegin and contexthighlightend - it seems to be igno

Re: Open source ColdFusion forums

2011-03-26 Thread Raymond Camden
m > application.  The goal would be something comparable to vBulletin or > PHPBB done in ColdFusion, done in open source style, completely free. > -- =========== Raymond Camden, ColdFusion Jedi Master Email    : r...@camd

Re: Converting regular date to a Spectra formatted database date?

2011-03-24 Thread Raymond Camden
Don't forget - Spectra is just CFML. You should be able to find the function that is doing the conversion. On Thu, Mar 24, 2011 at 10:19 AM, Kym Kovan wrote: > > On 25/03/2011 2:11 AM, Dorioo wrote: >> >> Well, I've found that the code below will give me the first part before the >> period ("40

Re: Using CFCHART with time values

2011-03-20 Thread Raymond Camden
Have you looked at the chart editor that ships with CF? It's a java based program you can find in the charting directory and allows for a great deal of customization. It generates an XML file you can load in via cfchart. If you search my blog for cfchart, you will see a butt load of examples of th

Re: jQuery and Session Timeout

2011-03-19 Thread Raymond Camden
I don't think your issue is 1.4.2 versus 1.5. Did you read the followup linked to from the article? http://www.coldfusionjedi.com/index.cfm/2010/9/15/Handling-session-timeouts-in-Ajax-applications--Follow-up On Fri, Mar 18, 2011 at 10:14 AM, Steve Milburn wrote: > > Hello all. > > I've been us

Re: Solr Summary Text

2011-03-17 Thread Raymond Camden
into any way > that I can tweak this, it would be greatly appreciated. > > Thanks, > > Dean > > On Thu, Mar 17, 2011 at 7:06 AM, Raymond Camden wrote: >> >> On Wed, Mar 16, 2011 at 3:42 PM, Dean Lawrence wrote: >>> Unfortunately, the contextPassages does

Re: Solr Summary Text

2011-03-17 Thread Raymond Camden
On Wed, Mar 16, 2011 at 3:42 PM, Dean Lawrence wrote: > Unfortunately, the contextPassages does not seem to work with Solr. > When using it against a verity collection, but the summary and context > columns are populated with the same text which is properly being > controlled by the contextPassag

Re: Do people still name their UPDATE, INSERT & DELETE queries?

2011-03-15 Thread Raymond Camden
's the current "take" on this (old?) practice? If I have a CFC function > that deletes a record, and that CFC contains a single query, do you find it > necessary to scope that query with a name? > -- ======

Re: cf & jquery mobile

2011-03-14 Thread Raymond Camden
I would also _strongly_ urge you not to mix CF's built in JS stuff with any other JS framework. You can do it - but most of the time it leads to trouble. If you are experienced enough to be working with JQM, you probably do not need the built-in CF client side form validation. Use a good jQuery pl

Re: Riaforge down?

2011-03-08 Thread Raymond Camden
I'm back, but also on vacation. I'm "officially" back in the office Wednesday. If you still have issues, let me know. On Mon, Mar 7, 2011 at 12:04 AM, Maureen wrote: > > I think Ray is Scotland at the conference. > > On Sun, Mar 6, 2011 at 4:35 PM, Bobby Hartsfield > wrote: >> >> I've been ha

Re: string function???

2011-02-15 Thread Raymond Camden
Well you have multiple ways you can do this - but you may want to try reMatch. Given a regex it will return all the matches. On Tue, Feb 15, 2011 at 11:05 AM, Richard White wrote: > > i understand them to a certain extent but not sure how to split a string > using them. do you have any pointers

Re: string function???

2011-02-15 Thread Raymond Camden
Regular expressions. Have you looked into them? On Tue, Feb 15, 2011 at 10:57 AM, Richard White wrote: > > Hi, > > i have various strings in the following format: > > '({name1}+{name2})/365.25' > > i need to get all the names from in between the curly brackets {} and place > them in an array. (

Re: CF 9.01 S3:// not working

2011-02-10 Thread Raymond Camden
lTo your directory list issue - I have good news. For some reason, directoryList() works fine. Just don't use listinfo=query. On Thu, Feb 10, 2011 at 9:32 AM, Raymond Camden wrote: > You got me then. Looks right to me. > > On Thu, Feb 10, 2011 at 8:57 AM, Stefan Richter > w

Re: CF 9.01 S3:// not working

2011-02-10 Thread Raymond Camden
You got me then. Looks right to me. On Thu, Feb 10, 2011 at 8:57 AM, Stefan Richter wrote: > > Ah ok. > I tested with the inline credentials - same error. > >             An error occurred when performing a file operation listFiles on > file /. > > The cause of this exception was: org.apache.co

Re: CF 9.01 S3:// not working

2011-02-10 Thread Raymond Camden
In my testing all I did was do a cfdirectory on a bucket. In my case I emdedded the auth stuff in the dir. I basically had: Where s3.coldfusionjedi.com was my bucket. Ignoring the fact that I put my auth in there - does your code use a similar dir, specifically s3://bucket/ On Thu, Feb 10,

Re: CF 9.01 S3:// not working

2011-02-10 Thread Raymond Camden
ut my bucket not being a folder. I made > sure to re-init those vars. > > Regards, > > Stefan > > > > > > On 10 Feb 2011, at 13:23, Raymond Camden wrote: > >> >> No, you said a script based App.cfc worked, but not tag based. I'd >>

Re: CF 9.01 S3:// not working

2011-02-10 Thread Raymond Camden
No, you said a script based App.cfc worked, but not tag based. I'd like to see your tag based App.cfc that failed. On Thu, Feb 10, 2011 at 7:09 AM, Stefan Richter wrote: > > Sure, it is simply this: > > > > > Is that what you need? > > The above worked yesterday (falling over on the modified d

Re: CF 9.01 S3:// not working

2011-02-10 Thread Raymond Camden
So while it won't help, can you show the tag based code you used that did not work - the complete code please. On Thu, Feb 10, 2011 at 6:18 AM, Raymond Camden wrote: > Dangit - I can verify the bug too. I made a folder in the s3 console, > it had no last modified, and CF borked on

Re: CF 9.01 S3:// not working

2011-02-10 Thread Raymond Camden
date fields :-/ > > Any pointers welcome. > > Regards, > > Stefan > > > > > > On 10 Feb 2011, at 02:07, Raymond Camden wrote: > >> >> DId you run that code in the "constructor" area of the CFC? >> >> >> On Wed, Feb 9,

Re: CF 9.01 S3:// not working

2011-02-09 Thread Raymond Camden
DId you run that code in the "constructor" area of the CFC? On Wed, Feb 9, 2011 at 1:59 PM, Stefan Richter wrote: > > Warming up an old thread as I've had the same issue. > It seems to me that the following did not work in my App.cfc: > > > >         >         > > ... > > > However using this

Re: refreshing application variables

2011-02-07 Thread Raymond Camden
When I do this, I typically also do a cflocation right after to reload it for me. So I'll go to ?reinit=1 and get relocated back to ? after the applicationStop() call. (Hopefully that made sense.) On Mon, Feb 7, 2011 at 8:43 PM, Sean Corfield wrote: > > Call applicationStop() - assuming you're

Re: Query of query help

2011-01-31 Thread Raymond Camden
Um, did you try the where clause? You said it didn't work - how did it not work? Can you show us the full code and the error? On Mon, Jan 31, 2011 at 11:48 AM, Stefan Richter wrote: > > Hi all, > hoping for some advice with querying a query - at least I think that's what's > a good fit here bu

Re: cffile within cflayout doesn't work?

2011-01-31 Thread Raymond Camden
When you have a form inside a cflayout, CF auto translates it to a Ajax based form. You can't (*) to file uploads with Ajax-based forms. * There are - of course - work arounds. On Mon, Jan 31, 2011 at 10:01 AM, Tim Do wrote: > > Has anyone run into an issue when uploading a file within a cflay

Re: why is cf_builder so expensive?

2011-01-29 Thread Raymond Camden
Spectra did sell well. I don't have the sales #s but it was a good seller - especially in Europe I believe. Allaire did not cancel it - Macromedia did. On Sat, Jan 29, 2011 at 7:14 AM, Scott Brady wrote: > > To be fair to Adobe, two of the products you mentioned they killed off were > a result o

Re: why is cf_builder so expensive?

2011-01-27 Thread Raymond Camden
Here we go: http://twitter.com/#!/adrocknaphobia/status/2757809574144 The @Aptana acquisition shouldn't have any effect on #ColdFusion Builder On Thu, Jan 27, 2011 at 11:14 AM, Raymond Camden wrote: > On Thu, Jan 27, 2011 at 11:04 AM, Larry Lyons wrote: >> That said I&#

Re: why is cf_builder so expensive?

2011-01-27 Thread Raymond Camden
On Thu, Jan 27, 2011 at 11:04 AM, Larry Lyons wrote: > That said I've also started using CFBuilder more. However I do have some > concerns. As I noted CFBuilder is based on Aptana Studio. With the recent > announcement that Aptana has been acquired by Appcelerator, how is this going > to affec

Re: why is cf_builder so expensive?

2011-01-27 Thread Raymond Camden
On Thu, Jan 27, 2011 at 9:28 AM, DURETTE, STEVEN J (ATTASIAIT) wrote: > I also think that it is funny that the confirmation page is > "https://freeriatools.adobe.com/cfbuilder/thankyou.php";.  PHP for stuff > dealing with ColdFusion?!?!?  REALLY?!?!?!?! There are multiple places on Adobe.com tha

Re: why is cf_builder so expensive?

2011-01-27 Thread Raymond Camden
You're right man. Builder doesn't run anywhere. Seriously. All of us using it are just pretending and are manipulating code with the raw power of our big heads. Seriously though - have you checked to see you are running the latest version? Have you tried tech support? On Thu, Jan 27, 2011 at 8:3

Re: why is cf_builder so expensive?

2011-01-26 Thread Raymond Camden
On Wed, Jan 26, 2011 at 6:39 PM, Andrew Scott wrote: > > ColdFusion and ColdFusion Builder get let me see 1 update, in other words CFB has had one update, yes. CF9 has had multiple updates. Both before 901 and _after_ 901. Multiple. You do know that, right? > unless you pay for the support to

Re: why is cf_builder so expensive?

2011-01-26 Thread Raymond Camden
On Wed, Jan 26, 2011 at 4:05 PM, Dave Long wrote: > none the less. Oh well, they were told at Harvard that "greed is good!" Bill > Gates set the standard and they all want to be him at the expense of their > customers. Why settle for being millionaires when you can soak your > customers and be bi

Re: why is cf_builder so expensive?

2011-01-26 Thread Raymond Camden
Who is being flippant? It's a fact of life that some developer tools cost money. That isn't unusual, it is a fact of life. I was going to say just us developers, but I'm sure in most industries there are tools you end up having to pay for to help you get your job done. On Wed, Jan 26, 2011 at 8:0

Re: why is cf_builder so expensive?

2011-01-26 Thread Raymond Camden
Be sure to check out the Extensions library at RIAForge: http://www.riaforge.org/index.cfm?event=page.category&id=14 49 free and open source tools like var scoping and query param scanning. On Wed, Jan 26, 2011 at 7:41 AM, Michael Firth wrote: > > I just finished downloading the trial and get

Re: why is cf_builder so expensive?

2011-01-26 Thread Raymond Camden
On Wed, Jan 26, 2011 at 2:21 AM, Andrew Scott wrote: > Personally I find that the features that would make me more productive, have > the most bugs that well let's say are not fixed and look like might not > being fixed in the next release, I am not holding my breath, because I > actually know th

Re: why is cf_builder so expensive?

2011-01-26 Thread Raymond Camden
I'll also add that you will not hear from people when a product works. You _will_ hear when it doesn't work. On Tue, Jan 25, 2011 at 9:13 PM, Sean Corfield wrote: > > On Tue, Jan 25, 2011 at 7:05 PM, Michael Firth wrote: >> Based on the feedback I am getting Builder seems to be very stable cont

Re: why is cf_builder so expensive?

2011-01-25 Thread Raymond Camden
I think Charlie here has the best point. If a tool works for you - makes you productive - then it's worth a lot more than a tool that is not. No one editor will be good for every developer. Period. If CFBuilder doesn't help you work faster than don't stress over it. Shoot - if you can get things d

Re: why is cf_builder so expensive?

2011-01-25 Thread Raymond Camden
There is a whole PDF on why - http://www.adobe.com/products/coldfusion/whitepapers/pdf/cfb_overview.pdf Warning - I'm the author - but as I said above - I'm biased. On Tue, Jan 25, 2011 at 8:48 PM, Michael Firth wrote: > > M.  So how exactly does one afford the best tools when they don't hav

Re: why is cf_builder so expensive?

2011-01-25 Thread Raymond Camden
Yeah, I'm biased - but define expensive? 299 bucks is nothing for some - a lot for others. At the end of the day you have to ask if you feel the tool is worth the money - not if it's expensive. Something can cost 5 bucks and not be worth even that. To me - CFBuilder is well worth the price. I make

Re: File Upload Security

2011-01-18 Thread Raymond Camden
> "This configuration would require moving custom tags into the server-wide > custom tags path." > > If you use to call your tags instead of the syntax, > you do not need to move the tags into the server-wide custom tags path.  It > is for this exact reason that I always use . But of course - a

Re: wireframe for developers

2011-01-18 Thread Raymond Camden
http://wireframesketcher.com/ I reviewed it here: http://www.coldfusionjedi.com/index.cfm/2010/12/21/Review-WireframeSketcher On Tue, Jan 18, 2011 at 7:52 AM, John M Bliss wrote: > > What's your current favorite wireframe development tool? > > -- > John Bliss - http://about.me/jbliss > > > ~~

Re: cfimage write problems

2011-01-17 Thread Raymond Camden
pending &ext=.gif to the URL then... > > Thanks. > > > On 17 Jan 2011, at 14:41, Raymond Camden wrote: > >> >> I think - stress think - CF handles the result based on the file name >> in the URL. So if CF had seen foo.gif at the end, it would have >> ass

Re: cfimage write problems

2011-01-17 Thread Raymond Camden
I think - stress think - CF handles the result based on the file name in the URL. So if CF had seen foo.gif at the end, it would have assumed a gif. In your case there is no obvious extension so maybe CF didn't know what to assume. On Mon, Jan 17, 2011 at 7:31 AM, Stefan Richter wrote: > > Stil

Re: Is Coldfusion losing it biggest asset?

2011-01-13 Thread Raymond Camden
Most languages won't be a service. CF is a language + a platform. Stuff like Perl, Ruby, etc, would be just a set of files to let you run stuff. Much like Java by itself isn't a service. On Thu, Jan 13, 2011 at 11:51 AM, Dominic Watson wrote: > > Just a thought: I bought the book and haven't ye

Re: any good Model-Glue Gesture tutorials?

2011-01-13 Thread Raymond Camden
Did you try the quick start? On Thu, Jan 13, 2011 at 7:17 AM, Greg Morphis wrote: > > I really like the plant-o-matic tutorial but it's already given to > you, and the code is "replace this with this".. do reason why. Guess > I'm looking for a dummy's guide, a beginner's guide. I saw the > tutor

Re: any good Model-Glue Gesture tutorials?

2011-01-13 Thread Raymond Camden
, > do that" I'm on section 3 and haven't learned much > -- ======= Raymond Camden, ColdFusion Jedi Master Email    : r...@camdenfamily.com Blog      : www.coldfusionjedi.com AOL IM : cfjedimaster Keep up

Re: Is Coldfusion losing it biggest asset?

2011-01-12 Thread Raymond Camden
y, January 12, 2011 10:11 AM >> To: cf-talk >> Subject: Re: Is Coldfusion losing it biggest asset? >> >> -- === Raymond Camden, ColdFusion Jedi Master Email    : r...@camdenfamily.com

Re: Issues with CF Document

2011-01-04 Thread Raymond Camden
wrote: > > I should learn to not trust all the code in the help examples. Good call > Raymond and Thank You! > Terry > > -Original Message----- > From: Raymond Camden [mailto:rcam...@gmail.com] > Sent: Tuesday, January 04, 2011 10:24 AM > To: cf-talk > Subjec

Re: Template Page Not Found Errors

2011-01-04 Thread Raymond Camden
Sorry - cgi.script_name. I meant _ not -. On Tue, Jan 4, 2011 at 12:45 PM, Raymond Camden wrote: > cgi.script-name > > > On Tue, Jan 4, 2011 at 12:35 PM, Richard  Steele wrote: >> >> Our error handler captures information about a page not found. >> >>

Re: Template Page Not Found Errors

2011-01-04 Thread Raymond Camden
cgi.script-name On Tue, Jan 4, 2011 at 12:35 PM, Richard Steele wrote: > > Our error handler captures information about a page not found. > > For example, it logs the following: > Referrer: "" > Query String: "id=3273&MoreImages=1" > Browser/version: Mozilla/5.0 (compatible; YandexBot/3.0; >

Re: Issues with CF Document

2011-01-04 Thread Raymond Camden
Isn't the tag and not ? On Tue, Jan 4, 2011 at 11:36 AM, Terry Troxel wrote: > > I pasted in the example from the CF Documentation and added in my own jpg > image. > When I run the cfm file it shows ONLY the text "bird" with a red background > and no image. > When I comment out the cfdocument

Re: SerializeJSON return different between CF8 and CF9

2010-12-30 Thread Raymond Camden
Dumb question. But you are doing something like this: but _also_ adding returnFormat=json? If so - you are double serializing the JSON. On Thu, Dec 30, 2010 at 8:09 PM, Kris Jones wrote: > > Okay, finally figured this out: To make this work in CF8 (w/ chf4 > applied), I had to change the re

Re: How do I get a save/download window using Ajax?

2010-12-27 Thread Raymond Camden
I don't believe what you want to do is possible. A plugin is used to display PDF data. You can't simply tell the plugin to render arbitrary binary data via JS. I'd recommend modifying your JS so that it moves the window to a location (new url) that serves up the PDF. On Mon, Dec 27, 2010 at 4:56

Re: What Notable Differences are there between Railo, Open Bluedragon, and Adobe Coldfusion? [Stackoverflow.com]

2010-12-20 Thread Raymond Camden
hem and I want to contribute, but because some > visitors use them and I need to have my product compatible. > > The more undocumented free gadgets on the market, the more trouble for us > developers. -- ==========

Re: CF Chart Label

2010-12-14 Thread Raymond Camden
Just confirmed - I see a format option for the xais that includes integer. On Tue, Dec 14, 2010 at 2:22 PM, Raymond Camden wrote: > Not to sound like a broken record - but did you try the chart editor? > > On Tue, Dec 14, 2010 at 12:17 PM, Robert Harrison > wrote: >> >>

Re: CF Chart Label

2010-12-14 Thread Raymond Camden
Not to sound like a broken record - but did you try the chart editor? On Tue, Dec 14, 2010 at 12:17 PM, Robert Harrison wrote: > > I have CFChart showing $ (Y) against time (X). > > I've converted the $ to whole dollar amounts:     round((myval*100)/100) so > all my data point are integers. > >

Re: CF Chart

2010-12-13 Thread Raymond Camden
That doesn't matter though. It generates XML for the style which you can use in your CFM pages. On Mon, Dec 13, 2010 at 2:06 PM, Russ Michaels wrote: > > Me either never seen that before, will have to have a play now. I notice it > only generates JSP and not CFML though. > > Russ > > -Origin

Re: CF Chart

2010-12-13 Thread Raymond Camden
In your cfinstall there is a charting folder. In there is a webcharts.bat or webcharts.sh executable. This launches a chart designer. cfchart supports the XML styles it generates. Search my blog for charts and you will see that 99% of my blog entries on "How do I do X with cfchart" involve using t

Re: CF Chart

2010-12-13 Thread Raymond Camden
Try using the chart editor. It allows for a great level of customization. On Mon, Dec 13, 2010 at 1:45 PM, Robert Harrison wrote: > > Is there a way to get some spacing between my Y Axis Title and my Y Axis > Labels? > > CF is putting the title but up against the data. > > > Robert B. Harrison

Re: coldfusion json truncates leading zeroes

2010-12-13 Thread Raymond Camden
There was some... "issues" with CF and JSON. For the most part, they should be completely fixed in you use CF 901 + CHF. The CHF is the critical part. On Mon, Dec 13, 2010 at 10:10 AM, Brook Davies wrote: > > I've run into things like this aswell, like true/false false values being > converted

Re: CF9 + == Log Every Request?!?!

2010-12-01 Thread Raymond Camden
Don't feel bad - this was one of the new features in 901. Not a lot of press on it. On Tue, Nov 30, 2010 at 2:54 PM, Matt Quackenbush wrote: > > /facepalm > > Thanks, rex.  I have no idea why I did not see that.  I mean, I looked at it > 82,421 times, but it just did not click.  Geez.  LOL @ me.

Re: (OT) IIS 7 Wonkiness with BlogCFC and cgi.path_info

2010-11-24 Thread Raymond Camden
Hmm. Both make use of cgi.path_info - although they do slightly different things with the data after. Question - if you make page.cfm a home page (like index.cfm and default.cfm etc) does it react differently? On Wed, Nov 24, 2010 at 7:56 AM, Eric Cobb wrote: > > I just moved my blog over to a

Re: CF8 Autosuggest doesn't work

2010-11-21 Thread Raymond Camden
About 5 minutes ago I helped someone with an Ajax issue and Firebug solved it in 20 seconds. (Technically not Firebug but the dev tools in Chrome.) Folks - PLEASE - if are you having _any_ Ajax issues, you must take the time to learn how to use a network tool like Firebug and see what's going on

Re: cfscript based components formatting

2010-11-16 Thread Raymond Camden
Sorry - what? On Mon, Nov 15, 2010 at 10:33 PM, Andrew Scott wrote: > > No annotations in the comments was mentioned to be slower than using the > other way. > > Regards, > Andrew Scott > http://www.andyscott.id.au/ > ~| Order

Re: cfscript based components formatting

2010-11-15 Thread Raymond Camden
I would assume _any_ metadata would make parsing the CFC slower. So this: is slower than However - I'd question if it was _significantly_ slower. My guess would be no. I'd imagine the 'slower' one would be <1ms slower probably. On Mon, Nov 15, 2010 at 9:01 PM, Andrew Scott wrote: > > Don'

Re: cfscript based components formatting

2010-11-15 Thread Raymond Camden
I agree too - although in this case the comments just impact metadata. displayname/description/hint are only used in auto-display. On Mon, Nov 15, 2010 at 4:42 PM, Charlie Griefer wrote: > > /* This is me agreeing */ > > I agree! > > On Mon, Nov 15, 2010 at 3:35 PM, Matt Quackenbush wrote: > >>

Re: CF 9.01 S3:// not working

2010-11-14 Thread Raymond Camden
Don't you want to list the bucket, and not a folder underneath it? Try just directoryList("s3://mybuck/") On Sun, Nov 14, 2010 at 3:03 PM, Brook Davies wrote: > > Okay, I've been banging my head against this for a while. It looks so easy! > I am trying to simply list a directories contents u

Re: A search with special characters in Solr

2010-11-09 Thread Raymond Camden
Right, so parse the text for the ~ words. You can use rematch to get them easily enough. You can then use that list of words as your body when you add it to your index. On Tue, Nov 9, 2010 at 12:27 PM, Mary Jo Sminkey wrote: > >> What I mean by parsing is that you use the tildes to determine wha

Re: CF Blog software

2010-11-09 Thread Raymond Camden
To Dave's suggestion of replacing createObject w/ cfinvoke - I believe (stress - believe) other BlogCFC users have done it in the past. It isn't officially supported by BlogCFC, Inc (aka me) but I believe it can be done. On Tue, Nov 9, 2010 at 12:59 PM, Alan Rother wrote: > > Ah, that does make

Re: A search with special characters in Solr

2010-11-09 Thread Raymond Camden
Ok - so then if you use tildes like Muareen suggested, you can parse for them when you index the data. Do you have control over the code that does the indexing? On Tue, Nov 9, 2010 at 9:27 AM, Mary Jo Sminkey wrote: > >>I'm confused - why not just add a form field to their content editor >>wher

Re: A search with special characters in Solr

2010-11-09 Thread Raymond Camden
I'm confused - why not just add a form field to their content editor where they can enter the tags there? On Mon, Nov 8, 2010 at 11:08 AM, Mary Jo Sminkey wrote: > > I have an unusual request from my client, they want to be able to have their > people in the field put "tags" in their reports t

Re: Coldfusion Search

2010-11-02 Thread Raymond Camden
If I had to guess I'd say Verity is ignoring the code as it looks like HTML. On Mon, Nov 1, 2010 at 3:45 PM, Paul Alkema wrote: > > Hi All, > > I've created a file index of all of my ColdFusion files so I can quickly > search the files and find what I'm looking for. So far, it's working great >

Re: OOP vs cfinvoke

2010-10-29 Thread Raymond Camden
Maybe I'm reading you wrong, but your message implies that you can only return something from a method if you have a real instance of it. That is not true. While it typically isn't recommended to use cfinvoke with the name attribute since it 'throws away' the instance, you certainly can do that an

Re: CF based Poll?

2010-10-22 Thread Raymond Camden
Odd - I don't have any emails from you with your feedback. :) Seriously though - if Soundings was horrible, you could have let me know. Perhaps there was something I could have added, or perhaps you could have contributed something to improve the product. As a free, and open source solution, it ca

Re: CF based Poll?

2010-10-22 Thread Raymond Camden
I normally consider a poll a one question thing. Ie, do you support X. Soundings is meant to be more a survey. That's my opinion anyway. On Tue, Oct 12, 2010 at 12:24 PM, Michael Grant wrote: > > Hey thanks ever so much! > > NOTE: This result does NOT come up when you search Poll or Polling. Ray

Re: OOP vs cfinvoke

2010-10-22 Thread Raymond Camden
No - cfinvoke can be used with an instantiated component. Why would you bother? Well if a method has a complex API, you may find it nicer to do in tags (cfinvoke+cfinvokeargument). Then again, a method with a complex API is probably asking for a refactoring. On Fri, Oct 22, 2010 at 9:47 AM,

Re: Microsoft rumored to be buying Adobe

2010-10-07 Thread Raymond Camden
Nothing probably since the product is ColdFusion. ;) On Thu, Oct 7, 2010 at 3:42 PM, Jeff Gladnick wrote: > > http://sanfrancisco.cbslocal.com/2010/10/07/adobe-shares-soar-on-rumor-of-microsoft-bid/ > > What's that mean for Coldfusion!? > > ~

Re: Any way to prevent storing methods inside of an array

2010-10-05 Thread Raymond Camden
What you want is a serialized form of your CFC. You need to write a method, perhaps called serialization, or maybe toStruct(), that returns a struct containing the data you want. On Tue, Oct 5, 2010 at 4:12 PM, Tony Bentley wrote: > > I have a cfc that gets instantiated and then stored in an ar

Re: CFMAP and the no longer needed api key

2010-10-05 Thread Raymond Camden
CF definitely uses V2. You can see it in the JS libraries requested. You can always just use Google Maps "naked" - I did for the first time last weekend: http://www.coldfusionjedi.com/index.cfm/2010/10/2/Centering-a-map-when-you-dont-know-where-to-center-it On Tue, Oct 5, 2010 at 9:02 AM, Dav

Re: Text Similarity Algorithm

2010-10-02 Thread Raymond Camden
How about: http://www.cflib.org/udf/levDistance On Sat, Oct 2, 2010 at 9:46 AM, Larry Lyons wrote: > >>You can use my new Similarity Algorithm based on WikipediA (SAWA): >>http://tinyurl.com/sawa-filannino >> >>Try it and say me what do you think! > > I'd love to try it but got 404'd. > > ~~

Re: CF9... Extending CFMap

2010-09-30 Thread Raymond Camden
If you want to do anything with a map generated by CFMap, you will need to use the JS API CF provides you to get access to the core Map object: ColdFusion.Map.getMapObject On Thu, Sep 30, 2010 at 1:50 PM, Matt S wrote: > > I am new to CFMAP and I have a situation where my query can return far

Re: Using CF to manage ads shown on Blogger

2010-09-24 Thread Raymond Camden
The JS is output in the admin. Ie, when you run the ad manager it gives you the JS to embed. In horrible Flash Forms. I apologize. ;) On Fri, Sep 24, 2010 at 8:49 AM, Richard Steele wrote: > > Sorry, I'm missing this in the Harlan code. I see where it's designed for > coding ads for a Coldfu

Re: Using CF to manage ads shown on Blogger

2010-09-23 Thread Raymond Camden
If you look at how Harlan does it (harlan.riaforge.org), you embed a JS into your site. The JS points to a CFM file. The output of that is JS that writes out the HTML for both the image and link at the same time. On Thu, Sep 23, 2010 at 3:10 PM, Richard Steele wrote: > > Next problem... To make

Re: Using CF to manage ads shown on Blogger

2010-09-22 Thread Raymond Camden
ducts as a certain Mr. > Camden is. ;-0 > > -- ======= Raymond Camden, ColdFusion Jedi Master Email    : r...@camdenfamily.com Blog      : www.coldfusionjedi.com AOL IM : cfjedimaster Keep up to date

Re: Using CF to manage ads shown on Blogger

2010-09-22 Thread Raymond Camden
or X that they found on RIAForge when > authorX won't respond to support email. > > Just sayin'. > > > On Wed, Sep 22, 2010 at 9:14 AM, Raymond Camden wrote: > >> >> Just trying to remind folks. Far too often I see people post here >> looking for a CF

Re: Using CF to manage ads shown on Blogger

2010-09-22 Thread Raymond Camden
Just trying to remind folks. Far too often I see people post here looking for a CF solution to do X when X readily exists on RIAForge. On Wed, Sep 22, 2010 at 3:58 AM, Russ Michaels wrote: > > Ray the exchange has far more in it than riaforge, especially in this > particular category. > > > > O

Re: Using CF to manage ads shown on Blogger

2010-09-21 Thread Raymond Camden
The exchange? Really? :) Why not search RIAForge instead. ;) I know Harlan does what you want - but it is a bit dated - and I apologize for the Flash Forms. On Tue, Sep 21, 2010 at 4:26 PM, Russ Michaels wrote: > > you actually call a cfm file not a jpg file and deliver the image using > cfcon

Re: Saving files locally

2010-09-15 Thread Raymond Camden
I believe what you tried to do (an ajax call to a url that used cfcontent) is not possible. Stress - I believe. I think your document.location was the right way to do it. Please take with a grain of salt the size of my big head. On Wed, Sep 15, 2010 at 8:45 AM, Chad Baloga wrote: > > I was abl

Re: Saving files locally

2010-09-15 Thread Raymond Camden
Oh yeah, that's definitely possible. Show us your code - that shoulda worked fine. On Wed, Sep 15, 2010 at 7:57 AM, Chad Baloga wrote: > > Ok, thanks Ray. Is it possible to use cfheader/cfcontent in my cffunction to > prompt the user with the file download box?  I tried it but nothing seems to

Re: Saving files locally

2010-09-15 Thread Raymond Camden
Nope, you can't with a traditional web based app. You can with AIR easily enough. On Wed, Sep 15, 2010 at 7:00 AM, Chad Baloga wrote: > > Does anyone know how to save a file to a users local machine?  I am writing > some code to export data to various file types and I have an input where a >

Re: ImageUtils.cfc and CFImage

2010-09-13 Thread Raymond Camden
Btw - if you guys find anything, please please please let Ben and I know if we can update our code. On Mon, Sep 13, 2010 at 9:17 AM, Leigh wrote: > > Any chance you are using a style other than "plain" (ie bold, italics, > etcetera)? I think the logic needs a slight adjustment for those styles

Re: Marilynn Monroe (not really - cfinput but no one answered before)

2010-09-12 Thread Raymond Camden
There is no json object. JSON is a string format, so it is always a string. While there were changes in _how_ things were formatted in CF9 (and 01, and the last updater), it is still a string. On Sat, Sep 11, 2010 at 7:28 PM, Ketan Jetty wrote: > > for returnformat="JSON", CF8 returns escaped JS

Re: ImageUtils.cfc and CFImage

2010-09-11 Thread Raymond Camden
Ben wrote that portion of imageUtils, but I can say I've seen some oddities as well. It's using some Java libraries so it may make sense to google against them and see if you find anything. I believe it's the JAI library. (Don't forget - all RIAForge projects have a Contact link which give you a

Re: Preserve HTML format when inserting into HTML

2010-09-10 Thread Raymond Camden
PM, Raymond Camden wrote: > Woot! Found it: > > http://www.mail-archive.com/cf-talk@houseoffusion.com/msg312892.html > > I have _never_ seen this in use, but it works perfectly: > > > foo"> > > > > > > > > > > > #x.root.chil

Re: Preserve HTML format when inserting into HTML

2010-09-08 Thread Raymond Camden
Woot! Found it: http://www.mail-archive.com/cf-talk@houseoffusion.com/msg312892.html I have _never_ seen this in use, but it works perfectly: foo"> #x.root.child[1].xmltext# #s# On Wed, Sep 8, 2010 at 8:38 PM, Raymond Camden wrote: > I'm digging. This came up

Re: Preserve HTML format when inserting into HTML

2010-09-08 Thread Raymond Camden
I'm digging. This came up 3 years ago too: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:32864 On Wed, Sep 8, 2010 at 4:54 PM, Jake Munson wrote: > > Ray, > > In addition to my previous email with proof of concept code, I am able to > reproduce my problem using your code bel

Re: Creating a custom ajax error

2010-09-08 Thread Raymond Camden
Remove the dump perhaps. On Wed, Sep 8, 2010 at 1:58 PM, Tony Bentley wrote: > >   My post above is wrong. Here is what I wanted to happen: > >   >         >           >           >           StructFind(requestHeaders,"X-Requested-With") eq "XMLHttpRequest"> >             >             >    

Re: Creating a custom ajax error

2010-09-08 Thread Raymond Camden
So I plan a blog entry on this, but taking my example of ajaxSetup: $.ajaxSetup({ error:function(x,e){ if(x.status == 500 && x.statusText == "SessionTimeout") { alert("Your session has timed out.");

Re: Creating a custom ajax error

2010-09-08 Thread Raymond Camden
FYI, blog entry on the work so far: http://www.coldfusionjedi.com/index.cfm/2010/9/8/Example-of-handling-session-time-outs-in-an-Ajax-application On Wed, Sep 8, 2010 at 12:16 PM, Raymond Camden wrote: > Hmm. Good followup! > > So I'd say you would a) want to handle the issue f

Re: Creating a custom ajax error

2010-09-08 Thread Raymond Camden
Hmm. Good followup! So I'd say you would a) want to handle the issue for sure, but b) probably not tell the user too much. So assuming that you normally have an error handler that say something vague (or maybe it shows the full error, whatever, point is, you handle it), we need a version for Aja

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