Re: ASDoc minor improvements

2012-04-12 Thread Justin Mclean
Hi, > I looked through projects that I had checkout out, > and as3-signals, RobotLegs, SwiftSuspenders, and flare all avoid the > ant task. I'd take a guess in that it's because the ANT task is harder to debug than the command line option (for instance there's no verbose option which is one of t

Re: ASDoc minor improvements

2012-04-12 Thread Justin Mclean
Hi, > Are there non-trivial examples of working asdocs via the ant tasks out there? You mean like the Flex SDK documentation :-) > https://github.com/deafbybeheading/pegasus/blob/master/build.xml#L93 I'll take a look but it might have to wait until after 360 Flex. Thanks, Justin

Re: ASDoc minor improvements

2012-04-12 Thread Maciek Sakrejda
On Thu, Apr 12, 2012 at 11:41 AM, Jonathan Campos wrote: > What issues were you having? I've successfully used the asdoc ant task for > huge projects including mxml and as files. As the linked comment notes, it was around ant property expansion: the asdoc executable would be passed file names lik

Re: ASDoc minor improvements

2012-04-12 Thread Jonathan Campos
On Thu, Apr 12, 2012 at 1:38 PM, Maciek Sakrejda wrote: > I think the > issue was around the broken behavior of filesets or something like > that, but I don't remember any details (nor the Flex version I last > tried on, but I believe it was 4.5). > What issues were you having? I've successfully

Re: ASDoc minor improvements

2012-04-12 Thread Maciek Sakrejda
For what it's worth, when I was doing docs for pegasus, I could not find a single project that actually used the asdoc ant task. I looked at four or five and every one called out to Java tool instead via the java task (this is what I ended up doing as well) or exec. I think the issue was around the

Re: ASDoc minor improvements

2012-04-06 Thread Justin Mclean
Hi, >> I remember someone on support forums asked that there be an option to > exclude creation date from HTML pages Already exists set "date-in-footer" to false and you get no dates (although I've not doubled checked just looked at the code) I'm thinking the head SVN revision number may be a

Re: ASDoc minor improvements

2012-04-06 Thread Left Right
> > > While I'm looking at the ASdocs code any requests for simple changes? > > I remember someone on support forums asked that there be an option to exclude creation date from HTML pages - the argument towards it was that they generated documentation during each build and committed it. The date ch

ASDoc minor improvements

2012-04-05 Thread Justin Mclean
Hi, I was having some issue with ASDocs the other day. In the checked in code I noticed that there's a verbose command line option but no option for the ant task - so I've gone ahead and added one making a it a bit easier to diagnose ASdoc issues. Plus it's interesting to see what it doing whe