Re: Generating Documentation CF9

2009-10-29 Thread Mark Mandel

I just ran the CS2.0 ColdDoc script i have on CF9. Worked no problems.

Mark

On Fri, Oct 30, 2009 at 9:32 AM, Mark Mandel  wrote:

> Well it looks fine, are you sure the expandPath() is resolving to the right
> place?
>
> Mark
>
>
> On Fri, Oct 30, 2009 at 7:52 AM, Jeremy Rottman wrote:
>
>>
>> I was testing the tool with a second application structure I have. Hence
>> the /org
>>
>> 

~|
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:327826
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Generating Documentation CF9

2009-10-29 Thread Mark Mandel

Well it looks fine, are you sure the expandPath() is resolving to the right
place?

Mark

On Fri, Oct 30, 2009 at 7:52 AM, Jeremy Rottman  wrote:

>
> I was testing the tool with a second application structure I have. Hence
> the /org
>
> 

~|
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:327825
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Generating Documentation CF9

2009-10-29 Thread Jeremy Rottman

I was testing the tool with a second application structure I have. Hence the 
/org 

~|
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:327816
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Generating Documentation CF9

2009-10-28 Thread Mark Mandel

Well since you told me that your folder structure starts with /com, and you
are expandPath()'ing on /org... I'm not surprised ;o)

Mark

On Thu, Oct 29, 2009 at 3:43 AM, Jeremy Rottman  wrote:

>
> I have to have something setup wrong then.
>
> When I use the run.cfm below, it generates the documents, but they do not
> contain any of the information about the cfc's I have written.
>
> Here is my run.cfm
>
> 
>colddoc = createObject("component", "ColdDoc").init();
>
>base = expandPath("/org");
>docs = expandPath("docs");
>
>colddoc.generate(base, docs, "", "Media Review .63");
> 
>
>
> Done!
>
> 
> View Docs
> 
>
> 

~|
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:327803
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Generating Documentation CF9

2009-10-28 Thread Jeremy Rottman

I have to have something setup wrong then.

When I use the run.cfm below, it generates the documents, but they do not 
contain any of the information about the cfc's I have written.

Here is my run.cfm


colddoc = createObject("component", "ColdDoc").init();

base = expandPath("/org");
docs = expandPath("docs");

colddoc.generate(base, docs, "", "Media Review .63");



Done!


View Docs
 

~|
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:327798
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


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:

>
> 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
>model
>vo
>cfc1.cfc
>cfc2.cfc
>cfc3.cfc
>dao
>cfc1.cfc
>cfc2.cfc
>cfc3.cfc
>etc
>
> 

~|
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:327782
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


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
model
vo
cfc1.cfc
cfc2.cfc
cfc3.cfc
dao
cfc1.cfc
cfc2.cfc
cfc3.cfc
etc 

~|
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:327778
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


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:32
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


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:

>
> 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 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327776
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


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 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327775
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


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 based on the 
cfc's and interfaces I provide it.

Anyone know if there is a tool out there yet that can parse the new script 
style cfc's? 

~|
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:327769
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4