Re: [fpc-pascal] fpdoc document *.pas;*.inc

2006-04-07 Thread L505
> > > > It would be nice if I could build it right into the fpdoc tool though, so > > it's just one step. > > I'll have a look at it. It should be easy to do. > I was looking into dw_html and I'm not sure if my object orientation theory is right but: Would this be the way to go: -create a dw_htm

Re: [fpc-pascal] fpdoc document *.pas;*.inc

2006-04-07 Thread Vincent Snijders
Michael Van Canneyt wrote: On Fri, 7 Apr 2006, L505 wrote: tidy --show-body-only yes test.html > test-body.html That'll work in the mean time while I wait for responses and comments on the snippet feature. FastHTMLParser could also work, find the Body tag (OnTag event) and record all text

Re: [fpc-pascal] fpdoc document *.pas;*.inc

2006-04-07 Thread Michael Van Canneyt
On Fri, 7 Apr 2006, L505 wrote: > > tidy --show-body-only yes test.html > test-body.html > > That'll work in the mean time while I wait for responses and comments on the > snippet feature. > > FastHTMLParser could also work, find the Body tag (OnTag event) and record all > text between body. >

Re: [fpc-pascal] fpdoc document *.pas;*.inc

2006-04-07 Thread L505
> tidy --show-body-only yes test.html > test-body.html That'll work in the mean time while I wait for responses and comments on the snippet feature. FastHTMLParser could also work, find the Body tag (OnTag event) and record all text between body. It would be nice if I could build it right into t

Re: [fpc-pascal] fpdoc document *.pas;*.inc

2006-04-07 Thread Jeff Pohlmeyer
> is there a way to skip the HTML head and footer so the page > is not a complete html document but just a snippet of html? > ... > For example, skipping the html body, head, head closing, > and body closing tags at minimum. tidy --show-body-only yes test.html > test-body.html http://tidy.source

RE: [fpc-pascal] fpdoc document *.pas;*.inc

2006-04-07 Thread Jeff Pohlmeyer
> What command would be used to run FPCdoc on all files in a directory. > PSEUDO EXAMPLE: (crashes fpdoc) > fpdoc --package=Test --input=*.pas;*.inc; fpdoc --package=Test $(ls -1 *.pas *.inc | awk '{printf("input=%s ", $1)}') - Jeff ___ fpc-pascal mai

Re: [fpc-pascal] fpdoc document *.pas;*.inc

2006-04-07 Thread Michael Van Canneyt
On Thu, 6 Apr 2006, L505 wrote: What command would be used to run FPCdoc on all files in a directory. PSEUDO EXAMPLE: (crashes fpdoc) fpdoc --package=Test --input=*.pas;*.inc; You can't do it like that. You must do a fpdoc --package=Test --input=file1.pas --input=file2.pas Michael. _

[fpc-pascal] fpdoc document *.pas;*.inc

2006-04-07 Thread L505
What command would be used to run FPCdoc on all files in a directory. PSEUDO EXAMPLE: (crashes fpdoc) fpdoc --package=Test --input=*.pas;*.inc; ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fp