Re: [Doxygen-users] MD5 Hash of C++ methods?

2015-09-29 Thread woody
At 06:05 PM 9/28/2015 +0200, Jari Williamsson wrote: >Damon, > >Thanks for your suggestion! In my case, it's over 300 classes and 8,000 >methods, so auto-detection of the MD5 hash anchor would be preferred. >But if I can't find out the MD5 hash generation text, I'll probably >create a parser of the

Re: [Doxygen-users] browser support - for HTML output ?

2015-09-11 Thread woody
At 03:55 PM 9/8/2015 -0700, Monique Semp wrote: > Is there a list anywhere that says what the browser support is for Doxygen It seems to be working o.k. under firefox 27.0.1 on windows -- __

Re: [Doxygen-users] Doxygen-users Digest, Vol 112, Issue 3

2015-09-08 Thread woody
At 12:25 PM 9/8/2015 -0400, you wrote: On Fri, Sep 4, 2015 at 11:53 AM, <doxygen-users-requ...@lists.sourceforge.net> wrote: Date: Fri, 4 Sep 2015 09:00:14 +0100 From: Frank Peelo <f...@eircom.net> Subject: Re: [Doxygen

[Doxygen-users] more odd behavior

2015-09-04 Thread woody
what causes this? there is a structure control { int V1; int V2; }; a declaration struct control control_arrays; within a function, a declaration of a pointer to the structure struct control * table_pointer; table_pointer=control_arrays i.e. a pointer is set to point to a con

Re: [Doxygen-users] Another question....

2015-09-04 Thread woody
the user to have to edit the output from doxygen heavily to fix things like this And at the moment, I am the sole programmer, and it is likely to stay that way until I retire. THEN the documentation has to be good enough that the guy coming in behind me, can understand and mainta

Re: [Doxygen-users] Another question....

2015-09-04 Thread woody
not have access to the .c code; if they do have that, they shouldn't need to read it. So Doxygen *should* use the names in the prototype, instead of the ones in the .c file. Frank On 03/09/15 21:16, woody wrote: It seems that Doxygen uses the prototype definition when it creates document

[Doxygen-users] Another question....

2015-09-03 Thread woody
It seems that Doxygen uses the prototype definition when it creates documentation for a function in the html and rtf files. For example, The actual definition of initiate_beep static void initiate_beep (int duration,int off, char count) { // code body } the prototype: static void initiate_beep

[Doxygen-users] another rtf example, why is this happening.

2015-08-31 Thread woody
::Some more items that are missing From the .rtf file These routines are interrupt handlers, and the last routine is code to write a byte of data to the flash on a Silabs 8051 processor. You will notice that the line "References, and . " Don't have anything listed.. in the first case it sh

[Doxygen-users] why does it doxygen miss functions?

2015-08-28 Thread woody
I ran doxygen 1.8.10 with default settings on a file that had no doxygen comments in it. Below is my list of prototypes, just as they are in the C code. Each function is present in the C code. Some of them are only *called* from within conditional code blocks i.e. if then else code. The lin

Re: [Doxygen-users] Two strange things about Doxygen and my code

2015-08-26 Thread woody
I have noticed some inconsistencies in the .rtf function. Sometimes it puts the caller and called graph just after the name, and the code listing after that, and at other times it puts the caller and call graph AFTER the code listing. as in foo() call graph caller graph { gray

Re: [Doxygen-users] fenced code block bug

2015-08-14 Thread woody
Given that curly braces enclose items, it is Pretty clear that the {'} is a stand alone quote, and the remainder of the line NOTE! is just a line of text, and passed through directly to the output. However, if the code was {'NOTE!...} then I assume it will behave correctly. perhaps re

Re: [Doxygen-users] doxygen sort order

2015-06-30 Thread woody
At 01:02 PM 6/30/2015 -0400, Ron W wrote: On Tue, Jun 30, 2015 at 12:17 PM, woody <<mailto:knap...@realtime.net>knap...@realtime.net> wrote: When I ran doxygen and output a .rtf file, doxygen sorted the fields in a structure by name, rather than by order of definition. How do you o

[Doxygen-users] doxygen sort order

2015-06-30 Thread woody
When I ran doxygen and output a .rtf file, doxygen sorted the fields in a structure by name, rather than by order of definition. How do you override this behavior so it will do it in line number order (the way the structure is laid out). It is a pain having to sort these by hand. -

Re: [Doxygen-users] adding doxygen comments to code

2015-06-29 Thread woody
Doxygen might only save the names of functions where each variable and function are referenced, but not the line numbers. The html documentation has the line numbers, as does the rtf file, so obviously it is tracking at some level. I see that the call graphs are interspersed through the rt

Re: [Doxygen-users] Doxygen-users Digest, Vol 109, Issue 5

2015-06-29 Thread woody
Doxygen can produce and XML file containing the information it extracted and/or derived from the source files. With out testing, I don't know if contains any line numbers. (This is intended to be used by "add on" report generators.) Anyway, Â it should be possible to create a "post proce

Re: [Doxygen-users] adding doxygen comments to code

2015-06-26 Thread woody
At 01:49 AM 6/26/2015 -0400, you wrote: Woody, I would strongly disagree about adding that functionality directly into doxygen. In its normal usage, it totally should not be changing the source base, and for that to happen with just an option change. The code to add the comment frames into

[Doxygen-users] adding doxygen comments to code

2015-06-24 Thread woody
1. I would like to take an undocumented package and have doxygen insert the initial documentation into the source file. That is, run doxygen on an undocumented package (which I have done) and be able to tell doxygen to insert into the SOURCE FILES, the specific doxygen headers needed, based on w