Re: Forums?

2007-09-20 Thread Raymond Camden
Come on Rick - we can do that (add mailing list/newsgroup). How hard can it be? ;) On 9/20/07, Rick Root <[EMAIL PROTECTED]> wrote: > On 9/20/07, Andy Chen <[EMAIL PROTECTED]> wrote: > > > > No one likes FuseTalk? Too bad they don't have the source code version > > anymore. > > > > Yes, it's not

Re: cffeed read problem

2007-09-19 Thread Raymond Camden
Yes. This is the way it works: CFFEED supports multiple platforms of feed types. When you suck down a feed into a query, you will always get AT LEAST ONE SET OF COLUMNS - the set being detailed in the CFML Reference for CFFEED. This set of columns will contain everything possible that an Atom or

Re: cffile action="copy" nameconflict="in_your_wildest_dreams"

2007-09-19 Thread Raymond Camden
I won't pretend to speak for Adobe - but the thinking MAY have been - with the upload action, you have no idea what the file is - therefore name conflicts may occur more often. With a copy you _do_ know the file. As a general FYI, I'm sure you know there are multiple ways to handle this problem yo

Re: Forums?

2007-09-19 Thread Raymond Camden
. Thanks > to everyone who made suggestions on the forums apps. > > -- ======= Raymond Camden, Camden Media Email: [EMAIL PROTECTED] Blog : www.coldfusionjedi.com AOL IM : cfjedimaste

Re: CF coding standards

2007-09-19 Thread Raymond Camden
http://livedocs.adobe.com/wtg/public/coding_standards/index.html ? > -- ======= Raymond Camden, Camden Media Email: [EMAIL PROTECTED] Blog : www.coldfusionjedi.com AOL IM : cfjedimaster K

Re: Forums?

2007-09-18 Thread Raymond Camden
Rick Root's forums has BB support right now. Galleon will have BB support in v2. (I may have the public RC tonight.) On 9/18/07, Bryan Stevenson <[EMAIL PROTECTED]> wrote: > Can't quite recall the name, but 2 things strike me > > 1) something like cf_bb > > 2) pretty sure Ray Camden is involv

Re: Forums?

2007-09-18 Thread Raymond Camden
Also - in general - if you need to find an app, I'd recommend RIAForge: http://www.riaforge.org There are currently 230 OS CF projects at RIAForge: http://www.riaforge.org/index.cfm?event=page.category&id=1 On 9/18/07, Raymond Camden <[EMAIL PROTECTED]> wrote: > > Galleon &

Re: Forums?

2007-09-18 Thread Raymond Camden
Galleon galleon.riaforge.org About to launch V2 in a week or so On 9/18/07, Justin Scott <[EMAIL PROTECTED]> wrote: > Can anyone make recommendations on a decent ColdFusion-based forum > application similar to phpBB or vBulletin. Free is preferred, but I > don't mind dropping some $$$ on a dec

Re: Cffeed - creating RSS Feeds and guid

2007-09-17 Thread Raymond Camden
via a struct, you use the literal values. (Frankly, I don't know how much CFFEED helps you at this point as you are doing more work than you would if you generated the XML by hand. ;) On 9/17/07, Raymond Camden <[EMAIL PROTECTED]> wrote: > Jayesh - what about my comment about usin

Re: Cffeed - creating RSS Feeds and guid

2007-09-17 Thread Raymond Camden
Jayesh, I was able to create a NPE by not supplying isPermaLink: // Create the feed data structure and add the metadata. myStruct = StructNew(); mystruct.link = "http://www.cnn.com";; myStruct.title = "CNN"; mystruct.description = "This... is... CNN"; mystruct.pubDate = Now(); mystruct.version =

Re: Cffeed - creating RSS Feeds and guid

2007-09-17 Thread Raymond Camden
Jayesh - what about my comment about using "ID" in query? It worked there. And the docs plainly say that ID means GUID in query data. If ID works for query, but GUID works for struct, then I'd consider that a bug - and confusing at that. On 9/17/07, Nathan C. Smith <[EMAIL PROTECTED]> wrote: > O

Re: CFFEED?

2007-09-16 Thread Raymond Camden
Yep, there is a bug. You have to use uppercase for the column names. http://www.coldfusionjedi.com/index.cfm/2007/7/29/Columnmap-Gotcha-with-CFFEED On 9/16/07, Brian Peddle <[EMAIL PROTECTED]> wrote: > I'm trying to do something pretty basic with CFFEED ... basically from > the docs I get this

Re: Cffeed - creating RSS Feeds and guid

2007-09-16 Thread Raymond Camden
I found it. If you look in the CFML 8 Reference, page 191, there is a giant table that lists all of the query columns and what they mean. If you find ID, you will see that it means GUID for RSS 2. I specified ID for my test and it worked fine, I got a GUID in my feed. (But note I tested with a que

Re: Blogcfc: feeling stupid

2007-09-16 Thread Raymond Camden
I should also point out - I don't read cf-talk everyday. You may wan to consider using the BlogCFC forums here: http://www.coldfusionjedi.com/forums/forums.cfm?conferenceid=CBD210FD-AB88-8875-EBDE545BF7B67269 On 9/15/07, Eric Hoffman <[EMAIL PROTECTED]> wrote: > Okay, I am setting up a blog syste

Re: Blogcfc: feeling stupid

2007-09-16 Thread Raymond Camden
What kind of errors are you getting? Do you have any files in domain.com/blog? If so - you don't need them. If your blogs are in the sub dirs, then each of them have a copy of the CLIENT folder from the zip. Anyway - please post the error you are getting. On 9/15/07, Eric Hoffman <[EMAIL PROTECTE

Re: Cffeed - creating RSS Feeds and guid

2007-09-14 Thread Raymond Camden
Don't feel too bad. The docs for CFFEED leave a _lot_ out. This blog article is a good example: http://www.coldfusionjedi.com/index.cfm/2007/8/22/Metadata-properties-for-CFFEED So as to your problem, I looked here: http://feedvalidator.org/docs/rss2.html#ltguidgtSubelementOfLtitemgt and I see

Re: PHP or .Net?

2007-09-14 Thread Raymond Camden
Bah. More fun to write it in CF. So I did. ;) http://www.coldfusionjedi.com/index.cfm/2007/9/14/Logo-for-ColdFusion--CFImage-Demo On 9/14/07, John Paul Ashenfelter <[EMAIL PROTECTED]> wrote: > Isn't that pretty much the same as Flash ;) > > On 9/13/07, Raymond Camden <[

Re: PHP or .Net?

2007-09-13 Thread Raymond Camden
Hey - someone should write a cf interperter for logo. Ie commands here On 9/13/07, Dinner <[EMAIL PROTECTED]> wrote: > On 9/6/07, John Paul Ashenfelter <[EMAIL PROTECTED]> wrote: > > On 9/6/07, Dinner <[EMAIL PROTECTED]> wrote: > > > On 9/6/07, John Paul Ashenfelter wrote:... > > > > > > > I

Re: SPRY Problem

2007-09-12 Thread Raymond Camden
Didn't you write this earlier? I responded there but I'll respond here. Make sure yo use the proper cfcontent tag. Mozilla is more forgiving than IE. On 9/12/07, Chad McCue <[EMAIL PROTECTED]> wrote: > I have a SPRY application that returns and lists results. It works fine > in mozilla but does

Re: cf8 book by Ben Forta - release date?

2007-09-12 Thread Raymond Camden
Book by Ben Forta... and others. ;) On 9/12/07, David Morgan <[EMAIL PROTECTED]> wrote: > > Amazon had the date as being today but I called my local store and they have > the date as Oct 15th. Anyone know a real date when its available? > > thx :) > > David > > > >

Re: SPRY not working in IE 6

2007-09-12 Thread Raymond Camden
Make sure your cfcontent type is correct. IE is more anal about that. On 9/12/07, Chad McCue <[EMAIL PROTECTED]> wrote: > I have a SPRY application that returns and lists results. It works fine > in mozilla but does not display the contents of the generated XML in IE > 6. In IE 6 it always remains

Re: multi-level coldfusion menu that reads from a database

2007-09-11 Thread Raymond Camden
Did you look at the docs for cfmenu? On 9/11/07, Ali Majdzadeh <[EMAIL PROTECTED]> wrote: > Hi everybody: > I have a problem and I believe you experts can help me. > I need to make a dynamic manu which generates the menu from a database > conetnt and has three levels. It means something like that

Re: CFWINDOW form action?

2007-09-11 Thread Raymond Camden
Err, so wait. You said even if you use cfform, the whole page refreshes? That isn't right. On 9/11/07, Asim . <[EMAIL PROTECTED]> wrote: > if I use the regular form submission, my whole page shows the confirmation > page, not just the windows, infact I am using cfform. > > > > >If you use submitF

Re: CFWINDOW form action?

2007-09-11 Thread Raymond Camden
If you use submitForm, then you are doing an AJAX request. If you want something to change in the display, you have to do it yourself. You may want to NOT use submitForm() and just use cfform and post to the confirmation page. On 9/11/07, Asim . <[EMAIL PROTECTED]> wrote: > onclick button event I

Re: How to protect this query?

2007-09-11 Thread Raymond Camden
I'd change the select * to a specific list of columns, and replace the '%... with a cfqueryparam as you well know. On 9/11/07, Les Mizzell <[EMAIL PROTECTED]> wrote: > I'm working my way through some legacy sites that have queries that need > a little securing from SQL injection attacks. Most of

Re: CFWINDOW form action?

2007-09-11 Thread Raymond Camden
Use cfform. Or use ColdFusion.Ajax.submitForm. On 9/11/07, Asim Manzur <[EMAIL PROTECTED]> wrote: > I have a form inside cfwindow, when the form submit, it refresh the main > page, not just the window. how can I just limit the form submission just > only inside the cfwindow? > > Thanks, > > > ~~

Re: Solved: CFTHREAD - naming threads when you dont care (too much) about the name

2007-09-09 Thread Raymond Camden
If you want to see a real world example of this, check out Paragator (paragator.riaforge.org). It is my RSS Aggregator CFC written for CF8. It also 'helps' make CFFEED a bit more friendlier by collapsing columns from Atom and RSS into common columns so you don't have to check the metadata. (End of

Re: Solved: CFTHREAD - naming threads when you dont care (too much) about the name

2007-09-09 Thread Raymond Camden
You could also use a request counter. On 9/9/07, Paul Vernon <[EMAIL PROTECTED]> wrote: > I just found this... > > http://www.firemoss.com/blog/index.cfm?mode=entry&entry=BC614E9B-3048-55C9-4 > 32594FC1E443986 > > Paul > > > > > ~~~

Re: List of Coldfusion Bloggers

2007-09-07 Thread Raymond Camden
Um, no. But if someone wants to volunteer to do that for all 300+ blogs, be my guest. ;) On 9/7/07, Judah McAuley <[EMAIL PROTECTED]> wrote: > Raymond Camden wrote: > > And in case you can't find it on the site, you can see a visual list here: > > > > http://www.

Re: List of Coldfusion Bloggers

2007-09-07 Thread Raymond Camden
And in case you can't find it on the site, you can see a visual list here: http://www.coldfusionbloggers.org/feeds.cfm and an OPML feed here: http://www.coldfusionbloggers.org/opml.cfm I can also get you the list spelled out on a cake. But that may take longer. (And I may eat the first few blog

Re: CFTHREAD w/o CFJOIN

2007-09-07 Thread Raymond Camden
routine tasks that have to run > pretty much on an ongoing basis. For example, I have a scheduled > task that runs every 90 seconds to see if there are any pending > messages. Others handle some other tasks. > -- ==========

Re: Owner of fancybread.com?

2007-09-07 Thread Raymond Camden
m is your friend: > http://www.betterwhois.com/bwhois.cgi?verification=6278&domain=fancybread.co > m > -- =========== Raymond Camden, Camden Media Email: [EMAIL PROTECTED] Blog : www.coldfusionjedi.com AOL IM

Re: Dynamic named CFC and method

2007-09-07 Thread Raymond Camden
Ah yes - you are right, and your method would work just fine. I think people forget cfinvoke can take an instance, not just the name of a cfc. On 9/7/07, Josh Nathanson <[EMAIL PROTECTED]> wrote: > > You don't have to get that complex. Just do > > > > > > I think he said the component name was dy

Re: Dynamic named CFC and method

2007-09-07 Thread Raymond Camden
You don't have to get that complex. Just do No need to copy it to a local variable. On 9/7/07, Qasim Rasheed <[EMAIL PROTECTED]> wrote: > I believe this will work > > > > > > .. your arguments here > > > HTH > > > On 9/7/07, Andrew Grosset <[EMAIL PROTECTED]> wrote: > > > > >Have you tr

Re: BlogCFC

2007-09-07 Thread Raymond Camden
As a general FYI, I don't read CF-Talk every day. The best way to reach me specifically is the Contact tab on my web site. Thanks for covering for me Brian. :) On 9/6/07, Eric Roberts <[EMAIL PROTECTED]> wrote: > Thanks...I thought it did for some reason... > > Eric > > -Original Message-

Re: structKeyExists() - Ok, this is freakin me out....

2007-09-04 Thread Raymond Camden
I'm not seeing that myself. I think you have something else going on. On 9/4/07, Will Tomlinson <[EMAIL PROTECTED]> wrote: > CF8 - just buildin a simple cfform inside a div on a page. Nuthin special. > > So I do my usual routine of processing the form on the same page. > > > > > process form > >

Re: cflocation to cflayout

2007-09-04 Thread Raymond Camden
Use JavaScript. ColdFusion.navigate(...) Check the docs on the exact syntax. On 9/4/07, Steve Sequenzia <[EMAIL PROTECTED]> wrote: > Anyone know if it is possible to use to redirect a page inside > of a to a ? I don't want it to break the page out. > > Thanks in advance for any help. > > ~~

Re: binding a cfselect to a grid

2007-08-31 Thread Raymond Camden
Ok, got a demo done. It isn't too difficult. http://www.coldfusionjedi.com/index.cfm/2007/8/31/Updating-a-drop-down-based-on-an-HTML-Grid-Selection On 8/31/07, Raymond Camden <[EMAIL PROTECTED]> wrote: > Ok, so I tried. YOu can't. I'm working on a demo now for my blog.

Re: binding a cfselect to a grid

2007-08-31 Thread Raymond Camden
Ok, so I tried. YOu can't. I'm working on a demo now for my blog. On 8/31/07, Raymond Camden <[EMAIL PROTECTED]> wrote: > You can certainly bind to a grid - what I haven't tried is doing it in > a select. Try it and let us know. > > If it doesn't work wi

Re: binding a cfselect to a grid

2007-08-31 Thread Raymond Camden
You can certainly bind to a grid - what I haven't tried is doing it in a select. Try it and let us know. If it doesn't work with a simple bind=, then consider using cfajaxproxy with bind. You can tell the tag to run a JS function when th egrid changes. The JS function then could simply update the

Re: CF8 & AJAX

2007-08-31 Thread Raymond Camden
You've lost me. Are you syaing you want the cfinput to bind to the select? Did you try bind="{proj_id}" in the text input? On 8/31/07, Asim Manzur <[EMAIL PROTECTED]> wrote: > I have cfselect statement: > > bind="cfc:MyCfcPath.MyCFCFunction(#session.userid#)" > value="project_id" display="proje

Re: AJAX Security

2007-08-31 Thread Raymond Camden
derstand, it won't break > anything either right? Sort of like the supress white space function. > > > Have you seen my blog posts on CF8 and Ajax Security? > > -- =========== Raymond Camden, Camden

Re: AJAX Security

2007-08-30 Thread Raymond Camden
Have you seen my blog posts on CF8 and Ajax Security? http://www.coldfusionjedi.com/index.cfm/2007/7/31/ColdFusion-8-Ajax-Security-Features On 8/30/07, Andy Chen <[EMAIL PROTECTED]> wrote: > Not sure how many attended but I attended today's eSeminar - Beyond HTML: > using Ajax, PDF, and more to

Re: Homesite+ Update

2007-08-30 Thread Raymond Camden
Yes. http://download.macromedia.com/pub/coldfusion/8/homesiteupdate/cf8_tags_for_hs.zip FYI - you can find this link, and others, at www.coldfusionportal.org. On 8/30/07, Bruce Sorge <[EMAIL PROTECTED]> wrote: > Does anyone know if the most recent CF tags are available for HS+? I tried > to app

Re: Verity returning limited results

2007-08-29 Thread Raymond Camden
ins 'stable' or 'stables' 3 times, so I > would expect verity to pick it up, but it is not returned in the search. > > And I hear you on the refresh and like statements, they were mostly used for > trying to figure out this issue. > -- ======

Re: Verity returning limited results

2007-08-29 Thread Raymond Camden
Just to be clear - a refresh will delete existing data before adding - so are you completely refilling the collection again? If you check the document count, does it match what you think it should? LIKE searches are not the same as Verity searches. For example, where lower(name) like '%ray%' wil

Re: cfflush in CF 8

2007-08-29 Thread Raymond Camden
Apache. :) On 8/29/07, Doug Arthur <[EMAIL PROTECTED]> wrote: > Ray, are you using IIS6 or IIS7? > > -Original Message- > From: Raymond Camden [mailto:[EMAIL PROTECTED] > Sent: Tuesday, August 28, 2007 9:09 AM > To: CF-Talk > Subject: Re: cfflush in CF 8 >

Re: CF8 returns float value in query

2007-08-28 Thread Raymond Camden
But did you see my question though. Is this output ONLY in cfdump? If you output it in a normal cfoutput does it output ok? On 8/28/07, Asim Manzur <[EMAIL PROTECTED]> wrote: > Thanks for your reply Ray, > The problem is my values changed here in CF8. > > This query runs on CF7 and returns me val

Re: CF8 returns float value in query

2007-08-28 Thread Raymond Camden
If it is just a dump change, then why do you care? Ie, is it still ok in a simple cfoutput? cfdump is a debugging tool and changes from version to version, so expectations on how it looks/displays may not always be a good idea. On 8/28/07, Asim Manzur <[EMAIL PROTECTED]> wrote: > I have a same ru

Re: Auto refresh new form field

2007-08-28 Thread Raymond Camden
Have you looked at CF8's ajax stuff? It would allow for this. Otherwise - you can try Spry as well. On 8/28/07, Jim Harmer <[EMAIL PROTECTED]> wrote: > I'm a beginner and I'm having the hardest time with inserting a record to the > database from a form. The problem is that I want the site to be

Re: cfflush in CF 8

2007-08-28 Thread Raymond Camden
in yours? > > I just downloaded CF8 from Adobe's website over the weekend and installed it > as a Multiserver JRun4 install. > > Thanks, > - Doug ======= Raymond Camden, Camden Media Email: [EMAIL PROTE

Re: Problem uploading file from form in cfdiv

2007-08-28 Thread Raymond Camden
I hate to suggest it- but the only thought that comes to mind is a popup window. PLEASE know that I bet there is a better solution - I just don't know it. On 8/27/07, Steve Sequenzia <[EMAIL PROTECTED]> wrote: > Ray, > > Thanks for the help. That makes sense, but I have a pretty big issue. I am >

Re: Railo 2 Released

2007-08-28 Thread Raymond Camden
ayToStruct()? > > Our function matrix containing the functions regarding lists, structs, > arrays and queries is as complete as possible. > -- =========== Raymond Camden, Camden Media Email: [EMAIL PROTECTED] Blog

Re: cfflush in CF 8

2007-08-27 Thread Raymond Camden
doesn't work in IE or FireFox! > > The page does not render until all page processing is complete. Any ideas? > > Code: > > > About to sleep for 5 seconds... > > Done sleeping. > > -Original Message- > From: Raymond Camden [mailto:[EMAIL PROTECTED] &g

Re: Problem uploading file from form in cfdiv

2007-08-27 Thread Raymond Camden
cfform posts that are within an Ajax UI element are posted asynch. You can't do file uploads asynch. On 8/27/07, Steve Sequenzia <[EMAIL PROTECTED]> wrote: > I am having issues with trying to upload a file when the form that has the > cfinput in it is nested inside of a cfdiv. Here is a simple ve

Re: Coldfusion 8 and AJAX

2007-08-27 Thread Raymond Camden
going to look into cfajaxproxy. I want to try what Andy suggest too > though - returning a structure. > > > Any other ideas? -- =========== Raymond Camden, Camden Media Email: [EMAIL PROTECTED] Blog : www.coldfus

Re: Coldfusion 8 and AJAX

2007-08-27 Thread Raymond Camden
So if I read you right - what you want is NOT the autosuggest feature itself - or actually - you want to do something AFTER the user has picked a value. Ie, I type in "Ra", your autocomplete returns a set of possibilities, one of which is "Ray", I select Ray, you then load your other form fields wi

Re: Return File Extension

2007-08-27 Thread Raymond Camden
You can treat it like a list. If "f" is a file name: Of course, this assumes a file has an extension, "foo" is a valid filename. If you use the code above, it will return foo, so you probably want to combine it with: On 8/27/07, Robert Harrison <[EMAIL PROTECTED]> wrote: > Using CF, h

Re: CF Installations provides link to CF7 demos

2007-08-27 Thread Raymond Camden
I would say always use the go/wish form. On 8/27/07, Brad Wood <[EMAIL PROTECTED]> wrote: > I just noticed last night that when I installed CF8 on my home (Windows) > computer, the "Getting Started" link it placed on my start menu takes me > to page labeled "ColdFusion MX7" code samples. > > > > T

Re: Railo 2 Released

2007-08-26 Thread Raymond Camden
bout the 6.1 compatibility. > http://dev.railo.ch/en/index.cfm?treeID=106 > > NB: I don't work for Railo, just interested in a fair argument! :-) -- ======= Raymond Camden, Camden Media Email: [EMAIL PROTECTED] Blog

Re: cfdiv query output

2007-08-25 Thread Raymond Camden
Sure, bind the cfdiv to another page that loads data based on the value of the drop down. What I mean is - if the drop down was named categories, you could use a bind of getdata.cfm?category={category} On 8/24/07, David Mineer <[EMAIL PROTECTED]> wrote: > Can I gind a cfdiv to a query so that th

Re: cfgrid bind method with null values

2007-08-25 Thread Raymond Camden
dow. I > don't even see the query execution in regular cfdebug output either (but i > guess thats because of the way bind calls my query). > -- =========== Raymond Camden, Camden Media Email: [EMAIL PROTECTED] Blo

Re: cfgrid bind method with null values

2007-08-24 Thread Raymond Camden
Are all the values null or only your custom ones? On 8/24/07, Jaysheel Bhavsar <[EMAIL PROTECTED]> wrote: > Hey guys, > I am having huge difficulty figuring this out. I am trying to get cfgrid > to work with bind attriute, along with format=html. I am trying to pass some > values to the func

Re: cfgrid and bind attribute cf8

2007-08-23 Thread Raymond Camden
et2 function is not of type numeric. > -- =========== Raymond Camden, Camden Media Email: [EMAIL PROTECTED] Blog : www.coldfusionjedi.com AOL IM : cfjedimaster Keep up to date with the community: http://www.coldfusionbloggers.org ~|

Re: best way to store search terms entered on a website?

2007-08-23 Thread Raymond Camden
Sure it's helpful. I want to know how many times people search for terms as it helps me figure out what people are searching for. Having times also is important. Ajax may be super important this year, but may fall next year. On 8/23/07, stylo stylo <[EMAIL PROTECTED]> wrote: > >I just log the term

Re: cfgrid and bind attribute cf8

2007-08-23 Thread Raymond Camden
As far as I know, you can't use named positions when doing a bind. You have to use positional arguments. Again - afaik. On 8/23/07, Jaysheel Bhavsar <[EMAIL PROTECTED]> wrote: > hey guys I have being trying to use cfgrid to display my information and I > have run into several problems I have att

Re: question

2007-08-23 Thread Raymond Camden
And as a general reminder, don't forget for HTML links, if you use the AjaxLink function it will also keep the content inside the layout. On 8/22/07, Jim Rising <[EMAIL PROTECTED]> wrote: > there you go. :) > > -jim > > > On 8/22/07, Brian Kotek <[EMAIL PROTECTED]> wrote: > > > > If you use cfform

Re: best way to store search terms entered on a website?

2007-08-23 Thread Raymond Camden
I just log the term and the date. So one row per search. This then lets me do stuf like top ten search phrases. On 8/23/07, stylo stylo <[EMAIL PROTECTED]> wrote: > Any suggestions on how best to store search terms entered on a website? > > If the database, then see if used already and increment,

Re: <cflayout> question

2007-08-23 Thread Raymond Camden
Sorry I should have posted an example. If you go to my youtube demo (www.coldfusionjedi.com/demos/yt), the right box uses cflayout type = hbox. the comments are outside the hbox. That is content outsie of cflayout. The video title is also outside the layout. On 8/23/07, Raymond Camden <[EM

Re: <cflayout> question

2007-08-23 Thread Raymond Camden
I've been able to put stuff above and below layouts. On 8/22/07, Will Tomlinson <[EMAIL PROTECTED]> wrote: > Another weird thing about is it looks like they're the only thing > that can go on the page. > > You don't put'em between body tags? When I tried it, major problems. I > stripped out all

Re: CFMBB and Locking

2007-08-23 Thread Raymond Camden
lication scoped stuff. > > > > For example, there are many places where I do this: > > > > > > -- === Raymond Camden, Camden Media Email: [EMAIL PROTECTED] Blog : www.coldf

Re: cfimage resize running very slow

2007-08-21 Thread Raymond Camden
Fair enough - I just wanted to make sure you tried those options. On 8/21/07, Jim Wright <[EMAIL PROTECTED]> wrote: > On 8/21/07, Raymond Camden <[EMAIL PROTECTED]> wrote: > > Again though Jim - you can't just look at speed - but quality of > > output. Remember

Re: cfimage resize running very slow

2007-08-21 Thread Raymond Camden
Again though Jim - you can't just look at speed - but quality of output. Remember that Adobe erred on the side of quality over speed, but lets you change the quality to speed up performance. On 8/21/07, Jim Wright <[EMAIL PROTECTED]> wrote: > I had done some tests recently to try to determine if I

Re: cfimage resize running very slow

2007-08-21 Thread Raymond Camden
lity) that the standard Java stuff > can't. > -- =========== Raymond Camden, Camden Media Email: [EMAIL PROTECTED] Blog : www.coldfusionjedi.com AOL IM : cfjedimaster Keep up to date

Re: CF Administrator weekly scheduled task

2007-08-21 Thread Raymond Camden
You could use weekly and do a start date of one particular Monday. I'm not quite sure that will work though. Another way is to just do it daily, and in your code, check the day of the week. In theory this means you are "wasting" time 6 days a week, but as it will take about 1 ms to determine the da

Re: ajax cfgrid and custom buttons

2007-08-21 Thread Raymond Camden
1187662029846 > > which changes at every new instance of the grid. i assumed that the 'name' > attribute for cfgrid would also be the ID? > > Jim Rising > Sr. Cold Fusion Developer > ICGLink Inc. > www.icglink.com > > > On 8/20/07, Raymond Camden <[EMA

Re: ajax cfgrid and custom buttons

2007-08-20 Thread Raymond Camden
It is definitely ColdFusion.getElementValue. The first arg would be the name of the grid, and the second the column name. On 8/20/07, Jim Rising <[EMAIL PROTECTED]> wrote: > I have a grid that i'm trying to add buttons beneath using suggestions found > on forta's blog: > > http://www.forta.com/blo

Re: CF Extensions for eclipse

2007-08-20 Thread Raymond Camden
I spoke to Dean about this. This is his response: We don't have any dependencies on that plugin, that's an error from eclipse that has nothing to do with our stuff. End Dean's response. So you may want to maybe double check that you don't have something else wrong. Perhaps uninstall/reinstall the

Re: Custom tags per application in CF 8

2007-08-20 Thread Raymond Camden
Looks like James beat me to it, but I'll add a few more links as well. http://www.coldfusionjedi.com/index.cfm/2007/7/31/ColdFusion-8-Ajax-Security-Features http://www.coldfusionjedi.com/index.cfm/2007/8/7/More-on-VerifyClient--ColdFusion-8-Ajax-Security-Feature On 8/19/07, James Holmes <[EMAIL P

Re: Custom tags per application in CF 8

2007-08-18 Thread Raymond Camden
And onApplicationEnd, and onRequest. And the Ajax security related features I mentioned earlier. Seriously - just use Application.cfc. ;) On 8/18/07, James Holmes <[EMAIL PROTECTED]> wrote: > You'd still be missing onSessionEnd, which provides functionality that > simply isn't available in an app

Re: QueryConvertForGrid removes leading zero

2007-08-17 Thread Raymond Camden
If you are right - you could also do a QofQ to select all the cols and use cast there. So basically a select a,b,c with no filter at all. On 8/17/07, Brian Kotek <[EMAIL PROTECTED]> wrote: > Write a function that returns the data in the same format the > QueryConvertForGrid does, but keeps your le

Re: QueryConvertForGrid removes leading zero

2007-08-17 Thread Raymond Camden
Also, don't forget to log a bug for this! www.adobe.com/go/wish On 8/17/07, Raymond Camden <[EMAIL PROTECTED]> wrote: > If you are right - you could also do a QofQ to select all the cols and > use cast there. So basically a select a,b,c with no filter at all. > > On 8/17/

Re: Custom tags per application in CF 8

2007-08-17 Thread Raymond Camden
is NOT the recommended way to work with applications now - Application.cfc is. Therefore they added the feature there. There are other examples as well - two of the new ways to secure Ajax stuff only work in App.cfc, not . If you are coding for MX7 and higher, you really should be using App.cfc (

Re: IsUserInRole() Question

2007-08-16 Thread Raymond Camden
am using CFLOGIN for > the authentication/permissions piece of it. What I want to do is make the > included navigation dynamically show the admin links based on the users > role. -- =========== Raymond Camden, Camden Media

Re: Crud. I've never actually USED a custom tag...

2007-08-16 Thread Raymond Camden
to get a LITTLE clearer. Now that I've got > workable paths, things seem to be getting a little easier to > understand. > > Once I get beyond the path errors, I think I'll be okay. > > On 8/16/07, LHWH Interactive <[EMAIL PROTECTED]> wrote: > > On 8/16/07, R

Re: Crud. I've never actually USED a custom tag...

2007-08-16 Thread Raymond Camden
Lots of questions here. First off - no, you do not need to use the core custom tags path. When you do: cf_foo CF will... Look in your current folder. Look in the custom tags folder. Note that you can define multiple folders in the CF Admin, and in CF8 you can specify folders at runtime. The p

Re: New 2 CFFEED - simple example - throwing error

2007-08-15 Thread Raymond Camden
ps.title > >is a struct. You want myprops.title.value. > > > >On 8/14/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > >-- > >=== > >Raymond Camden, Camden Media > > > >Email: [EMAIL PROTECTED] > >Blog : www.coldfusionjedi.com > >

Re: Scrape pages from RSS Feed

2007-08-15 Thread Raymond Camden
http://cfrss.riaforge.org/ Also - CFFEED in CF8. -- === Raymond Camden, Camden Media Email: [EMAIL PROTECTED] Blog : www.coldfusionjedi.com AOL IM : cfjedimaster Keep up to date with the community: http

Re: (ColdFusion 8) Struct to XML

2007-08-15 Thread Raymond Camden
bit of work (inside). That might be the way to go > though. Either that or having the results come out as a query (which > is overloaded with too manyfields). > > On 8/14/07, Alan Rother <[EMAIL PROTECTED]> wrote: > > Well... -- ======

Re: list of new stuff in CF8

2007-08-15 Thread Raymond Camden
all-the-new-Tags-Tag-Attributes-and-Functions > -- =========== Raymond Camden, Camden Media Email: [EMAIL PROTECTED] Blog : www.coldfusionjedi.com AOL IM : cfjedimaster Keep up to date with the commun

Re: list of new stuff in CF8

2007-08-15 Thread Raymond Camden
Go to the PDFs - in the Reference, under tags and functions, you will find a list of changes since CF5. I bet you will find stuff added to CF7 you didn't know about either! :) On 8/15/07, Chad Gray <[EMAIL PROTECTED]> wrote: > Anyone know where I can find a list of new Tags and Functions in CF8?

Re: FusionZone application

2007-08-14 Thread Raymond Camden
om/applications/realestate/index.cfm ? > I contacted them but never got an answer. > I would like to test the application > for 30 days. Can somebody - who owns it - share the > templates with me for a couple of days ? > Thanks. -- =========

Re: (ColdFusion 8) Struct to XML

2007-08-14 Thread Raymond Camden
w.coldfusionjedi.com/projects/toxml/index.cfm/projects/toxml/index.cfm > > -- =========== Raymond Camden, Camden Media Email: [EMAIL PROTECTED] Blog : www.coldfusionjedi.com AOL IM : cfjedimaster Keep up to dat

Re: New 2 CFFEED - simple example - throwing error

2007-08-14 Thread Raymond Camden
&q=%22micro+fuel+cell%22 > > Here's my error. > > The following information is meant for the website developer for debugging > purposes. > -- ======= Raymond Camden, Camden Media Email: [EMAIL P

Re: Verity database search

2007-08-14 Thread Raymond Camden
No, it is just how Verity treats two words when using a simple search (you can use different types of searches with cfsearch). If you want to change this on the fly, just change any space to a comma. Verity will treat product,test as product OR test. On 8/14/07, ch g <[EMAIL PROTECTED]> wrote: > W

Re: cfselect am I missing something.

2007-08-11 Thread Raymond Camden
Hmm, it was my understanding you returned a query for selects. According to the docs - I'm half right. You can return a query, or a 2D array. It does not say you can return an AoS. On 8/11/07, Jeremy Rottman <[EMAIL PROTECTED]> wrote: > >What do you see in Firebug? I cannot stress enough (and this

Re: cfselect am I missing something.

2007-08-11 Thread Raymond Camden
What do you see in Firebug? I cannot stress enough (and this it to _everyone_ who is playing with Ajax for the first time) the CRITICAL important of Firebug. it lets you see the Ajax requests and what they are returning. Now if I had to guess - I'd bet that this.dsn doesn't equal anything as I did

Re: CFLAYOUT vbox/hbox - on-events

2007-08-10 Thread Raymond Camden
Mikkel, check the reference guide. There is a whole section just on the JS api for stuff in CF8. It looks like there _IS_ a way to force an area to collapse (ColdFusion.Layout.collapseArea), and do the reverse, but unfortunately I don't see a way to capture the user doing it. On 8/10/07, Mikkel Jo

Re: determining the exiistance of an Array element

2007-08-09 Thread Raymond Camden
There is a UDF at CFlib that will do it. It basically just does a try/catch. Look for arrayIsDefined. On 8/9/07, Janet MacKay <[EMAIL PROTECTED]> wrote: > >doesn't it always exist? even if it's empty? > > No, it doesn't. > > > > > > > #arr[1]# > > ~~~

Re: problem binding a cfc to a cfgrid

2007-08-09 Thread Raymond Camden
/07, Will Swain <[EMAIL PROTECTED]> wrote: > Got you. I got it working using queryConvertForGrid and your advice, so > thanks for your help on that! > > Next plan - look at editing records in a cfgrid. > > Cheers > > Will > -- ===

<    7   8   9   10   11   12   13   14   15   16   >