Re: Generating Documentation CF9

2009-10-27 Thread Mark Mandel
Yep it does. Should be fine. I use ColdDoc to generate the documentation for Transfer: http://docs.transfer-orm.com/html/transferapi/ And I am also using it when developing Narwhal (ColdSpring 2.0) And I've used it on a CF9 project. Mark On Wed, Oct 28, 2009 at 9:12 AM, Jeremy Rottman wrote

Re: Child Threads

2009-10-27 Thread Barney Boisvert
No limit to threads on Enterprise Edition, but no CF edition allows child threads. Total buzzkill. Fortunately, with native threads can be leveraged with Groovy or JavaLoader's CFC-based dynamic proxies. Neither one is particularly elegant, but at least you can do it, since CF itself doesn't pro

Child Threads

2009-10-27 Thread Stefan Richter
Quick question: does the CF Enterprise edition allow child threads? Also is there a limit of threads with that edition? Cheers Stefan ~| Want to reach the ColdFusion community with something they want? Let them know on the

RE: Education

2009-10-27 Thread ealger
I couldnn't agree more. Sure a CS undergrad or Masters won't make you proficient in any language but it should give a good grounding in basic constructs and generalized best practices that would be applicable in many programming languages. I do think this is one area where many cf developers cou

Re: Generating Documentation CF9

2009-10-27 Thread Jeremy Rottman
Looks like I may have spoken a bit too soon Mark. I am not sure if this issue is related to my directorystructure or if I set something wrong in the run.cfm. Does your tool recursively look at the directories underneath the base directory? Right now my directorystructure looks like this: com

Re: Generating Documentation CF9

2009-10-27 Thread Jeremy Rottman
Wicked awesome, thanks Mark. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327

Re: Generating Documentation CF9

2009-10-27 Thread Mark Mandel
Try ColdDoc, it works with CF9, although you will have to grab the SVN version (I've been really slack about releasing a new version). If works off MetaData, so it doesn't matter *how* you write your CFCs. http://colddoc.riaforge.org/ Mark On Wed, Oct 28, 2009 at 8:23 AM, Tony Bentley wrote:

Re: Generating Documentation CF9

2009-10-27 Thread Tony Bentley
Javadocs after the first patch? http://www.danvega.org/blog/index.cfm/2009/8/24/ColdFusion-9-setting-attributes-in-cfscript-using-javadoc-syntax ~| Want to reach the ColdFusion community with something they want? Let them know

ColdFusion cfftp and a secure (SFTP) server.

2009-10-27 Thread Ian Skinner
Can ColdFusion communicate with a SFTP server with it's tag? If so is there any settings or configurations I should be aware of, before I start trying to do so? ~| Want to reach the ColdFusion community with something they wa

RE: SQL Join help needed

2009-10-27 Thread DURETTE, STEVEN J (ATTASIAIT)
OPPS... Change the on a.student_id = d.student_id to on a.passport_listing_id = d.passport_listing_id Steve -Original Message- From: DURETTE, STEVEN J (ATTASIAIT) Sent: Tuesday, October 27, 2009 3:11 PM To: cf-talk Subject: RE: SQL Join help needed Sorry about that... Try this...

RE: SQL Join help needed

2009-10-27 Thread DURETTE, STEVEN J (ATTASIAIT)
Sorry about that... Try this... SELECT a.passport_listing_id ,a.passport_registration_id ,a.email_sent_attendance ,a.s_uid ,a.student_id ,a.people_id ,coalesce(b.fname, c.f

Re: SQL Join help needed

2009-10-27 Thread daniel kessler
>This code isn't using inner/outer join notation, but the old style. Is >there a reason for this? It's the way that I learned to do it. I've read your notation; it's certainly more explicit. Further though, the assistance that I needed was adding the field 'passport_attendance_id' from the

RE: SQL Join help needed

2009-10-27 Thread DURETTE, STEVEN J (ATTASIAIT)
If it's a version newer than oracle 8 I believe it can use either notation but the newer form is suggested. I don't remember which version they added this notation. I believe it falls under the SQL92 standards. Steve -Original Message- From: daniel kessler [mailto:dani...@umd.edu] Se

Generating Documentation CF9

2009-10-27 Thread Jeremy Rottman
I have quite a few new cfc's that I have written in cf9's new script style. Prior to publishing code, I used to generate documentation with cfdocs revamped. Since this application is no longer supported I am on the hunt for a new Javadocs style generator that will create my api documentation ba

Re: SQL Join help needed

2009-10-27 Thread daniel kessler
I meant to say - this is Oracle. thanks! ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/

RE: SQL Join help needed

2009-10-27 Thread DURETTE, STEVEN J (ATTASIAIT)
This code isn't using inner/outer join notation, but the old style. Is there a reason for this? I would change the code to this: SELECT a.passport_listing_id ,a.passport_registration_id ,a.email_sent_attendance ,a.s_uid

SQL Join help needed

2009-10-27 Thread daniel kessler
I think I should be doing an outer join. I have a set of data (passport_registration) and I want to add a field from passport_attendance. passport_registration is a total set because it's the people that registered for the event. passport_attendance is a subset of those that attended the event

Re: Unit Testing Frameworks

2009-10-27 Thread Sean Corfield
On Mon, Oct 26, 2009 at 9:15 PM, Judith Dinowitz wrote: > From what I can see, the last thing posted on the CFCUnit website is dated > 2006. Is CFCUnit still a going concern? What Unit-Testing Frameworks are > people using in the CF community? As others have said, MXUnit now rules the roost. I

Re: bind to a cfselect problem

2009-10-27 Thread Vaughn Dewar
Hi Will, You might want to check the following website for a possible solution. Put the function provided into an application.cfc file to cancel the onRequest() which may be causing the problem. http://www.scratty.com/coldfusion-8-cfselect-bind-ajax/ ~~~

Re: Getting last inserted record from database

2009-10-27 Thread Brian Kotek
Exactly. On Tue, Oct 27, 2009 at 10:32 AM, James Holmes wrote: > > However without a serializable transaction (assuming read committed is > therefore the isolation level used), another query could insert a new > row and commit before the commit in this transaction; this would > result in an inco

Re: Getting last inserted record from database

2009-10-27 Thread James Holmes
However without a serializable transaction (assuming read committed is therefore the isolation level used), another query could insert a new row and commit before the commit in this transaction; this would result in an incorrect ID. mxAjax / CFAjax docs and other useful articles: http://www.bifro

Re: Invalid precision value

2009-10-27 Thread Dominic Watson
Right, my understanding is that cfqueryparam will take care of making sure the db gets the date as it expects it. If I'm not wrong, you should just ditch the CreateObdcDateTime call. Dominic 2009/10/27 Claude Schneegans > > >>wrap dateformat() around the dateadd() function. > > NO. createOdbc

Re: Invalid precision value

2009-10-27 Thread Claude Schneegans
>>wrap dateformat() around the dateadd() function. NO. createOdbcDate expects a date value as a parameter. One should never submit a formated date to this function, the date will be de-formated anyway, with the risk that the format is not compatible (ie: european date format).

Re: Invalid precision value

2009-10-27 Thread Claude Schneegans
>>Getting this on a query. Define "Getting". Where are these values displayed? ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseof

RE: Education

2009-10-27 Thread Scott Stewart
-Original Message- From: s. isaac dealey [mailto:i...@turnkey.to] Sent: Tuesday, October 27, 2009 1:30 AM To: cf-talk Subject: -Re: Education Totally off topic but... Is Simon Baron-Cohen related to Sasha Baron-Cohen (AKA Borat)? It would be a very interesting dichotomy if they were..

RE: Intro

2009-10-27 Thread Rick Faircloth
Hello, Stefan, and welcome! Rick -Original Message- From: Stefan Richter [mailto:ste...@flashcomguru.com] Sent: Tuesday, October 27, 2009 5:10 AM To: cf-talk Subject: Intro Apologies for the bad etiquette, I haven't really introduced myself yet. Some of you may know me (I certainly k

test

2009-10-27 Thread Robert Harrison
Testing resubscribe after vacation. Robert B. Harrison Director of Interactive Services Austin & Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 P : 631.231.6600 Ext. 119 F : 631.434.7022 http://www.austin-williams.com Great advertising can't be

Re: Getting last inserted record from database

2009-10-27 Thread Dave Watts
> Since serializable is the only isolation level that is meant to eliminate > phantom reads, that means that this approach will probably only work if you > set the isolation level to serializable (and, of course, that your RDBMS > supports it). Which includes the performance implications that this

RE: Getting last inserted record from database

2009-10-27 Thread DURETTE, STEVEN J (ATTASIAIT)
Problem with that is when you are dealing with timing in less than a second that can go wrong... For example assume before you start an insert the max_id = 1. Then 2 people go to make an insert at the same time... Insert A - max_id increments to 2. Insert B - max_id increments to 3 (this inser

Re: Invalid precision value

2009-10-27 Thread Tony
have you looked at the docs to see how dateFormat() is used? it's quite clear you haven't... take 5 secs and it will be VERY evident amigo tw Sent from my iPhone... don't hate On Oct 27, 2009, at 12:10 AM, Matthew Smith wrote: > >> wrap dateformat() around the dateadd() function. >> >> t

Re: -Re: Education

2009-10-27 Thread Dave Watts
> Well the quote was just a highlight. But if you want the real in-depth > thought process behind this... > > The most respected minds in the health / psychology community regarding > Autism (Simon Baron-Cohen in particular) are citing similarities between > Einstein and people with Asperger Syndr

Re: SOTR London

2009-10-27 Thread JediHomer
:o We have to wait until lunch for beers :-/ 2009/10/27 Will Swain : > > At least till the beers at lunchtime! > > -Original Message- > From: Dominic Watson [mailto:watson.domi...@googlemail.com] > Sent: 27 October 2009 10:52 > To: cf-talk > Subject: Re: SOTR London > > > I'll be there, t

RE: SOTR London

2009-10-27 Thread Will Swain
At least till the beers at lunchtime! -Original Message- From: Dominic Watson [mailto:watson.domi...@googlemail.com] Sent: 27 October 2009 10:52 To: cf-talk Subject: Re: SOTR London I'll be there, though we have work drinks the night before so I may only be there in body :| Dominic

Re: SOTR London

2009-10-27 Thread Dominic Watson
I'll be there, though we have work drinks the night before so I may only be there in body :| Dominic 2009/10/27 Stefan Richter > > Just wondering: anyone on this list going to Scotch on the Road in > London on Thursday (I guess most of you are US based though)? I'll > probably pop down. > > Ch

RE: SOTR London

2009-10-27 Thread Will Swain
Hello Stefan - I'll be going. Looking forward to it. Will -Original Message- From: Stefan Richter [mailto:ste...@flashcomguru.com] Sent: 27 October 2009 09:05 To: cf-talk Subject: SOTR London Just wondering: anyone on this list going to Scotch on the Road in London on Thursday (I gue

Intro

2009-10-27 Thread Stefan Richter
Apologies for the bad etiquette, I haven't really introduced myself yet. Some of you may know me (I certainly know some of you in a 'I've seen your blog and emailed you before' kind of way) but in any case here are some vital stats: Stefan Richter, 36 years of age, resident in the UK since 19

SOTR London

2009-10-27 Thread Stefan Richter
Just wondering: anyone on this list going to Scotch on the Road in London on Thursday (I guess most of you are US based though)? I'll probably pop down. Cheers Stefan ~| Want to reach the ColdFusion community with someth

Re: can't access cf administrator

2009-10-27 Thread Stefan Richter
What Os are you ysing? Check your webroot (usually a folder called htdocs if using apache) and see if it contains a cfide directory. You may have installed CF in another location without noticing. BTW I set up CF9 on OSX on top of MAMP yesterday, if anyone needs any pointers come and see me

Re: XML POST with Coldfusion

2009-10-27 Thread Anene Isioma Wealth
well i guess to make things easy, i may just need a loop that can split a list of 5000 numbers into batches of 100 each. so i can send via http post. The one i am using splits and does not validate how many numbers are left, so i get a "-1" error message. Sincerely, Chuka I.W. Anene Chief Sof

Re: XML POST with Coldfusion

2009-10-27 Thread Anene Isioma Wealth
i can i and that is what i use but i am still having hitches splitting my list of 5000 numbers into batches of 100. Sincerely, Chuka I.W. Anene Chief Software Eng./CEO Quorium Solutions www.quorium.org 07029609185,07032696113 From: Ramon Ecung To: cf-talk