[Doxygen-users] build doxygen from source without python (OpenBSD system)?

2024-11-21 Thread Doug Moss via Doxygen-users
I am trying to compile doxygen, on a system with OpenBSD amd64 in order to document projects in C. OpenBSD does not have python in the basic build. (It also does not have CMake, but there is a prebuild package for that that is small, with only a handful of additional dependencies.)  Is there

[Doxygen-users] doxygen recent versioning

2024-08-12 Thread JVerelst--- via Doxygen-users
Hello, I noticed that the last 3 releases of doxygen have all gotten a bump in the middle version number (1.10.0, 1.11.0, 1.12.0). It seems like a break with tradition of incrementing this relatively rarely and then various increments of the patch version number. E.g. the last one before that

[Doxygen-users] Package list missing on Java

2024-06-06 Thread Andrew J. Lazarus via Doxygen-users
the class hierarchy are also live and go to the correct page. Same behavior with and without a \package declaration in the javadoc text. The package list in the LATEX/PDF version is correct!? ___ Doxygen-users mailing list Doxygen-users

Re: [Doxygen-users] infinite loop from Doxygen-generated .tex

2024-06-03 Thread Peter Schöll via Doxygen-users
Hi, Johann ever tried to "close" your HTML tags, i.e. by and by ? Sometimes I noticed problems with generated documentation disappearing when balancing HTML tags. Good luck Peter Am 02.06.2024 um 19:39 schrieb Georg-Johann Lay: Hi, I am having considerable problems wi

Re: [Doxygen-users] dot problems.

2024-05-16 Thread Peter Schöll via Doxygen-users
aphviz 2.44.1 on my windows 10 machine. I have a very large program that I have set  up to generate call graphs etc. I am running doxygen gui 1.10.0 after fixing things like @Summary   changing it to    @brief, it runs o.k.  But is not generating the call graph, and caller graph files. I am getting tons

[Doxygen-users] Documenting a typedef gives "not documented" warning.

2023-09-09 Thread roger via Doxygen-users
struct melody_t" and various other combination of @struct and @typedef. I always get this warning. warning: Compound st_melody is not documented. What am I doing wrong? I am using doxygen 1.9.1. Any help gratefully received. Roger ___ Doxyge

[Doxygen-users] Documenting a typedef gives "not documented" warning.

2023-09-09 Thread roger via Doxygen-users
warning: Compound st_melody is not documented. What am I doing wrong? I am using doxygen 1.9.1. Any help gratefully received. Roger ___ Doxygen-users mailing list Doxygen-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/doxygen-users

[Doxygen-users] feature request: add support for fragmented \dot digraph stat emachine diagrams

2023-07-13 Thread via Doxygen-users
­I'm using doxygen to create state machine diagrams from my C code. This works great, I can create a comment block like this, run doxygen / graphwiz, and get a html file with the diagram: /*! \dot digraph my_state_machine { rankdir=LR; size="8,5" init -

[Doxygen-users] how to get FILE_VERSION in LaTeX output ?

2023-05-15 Thread Koenig Harald (BST/EOS2) via Doxygen-users
Hi Doxygen community! I'd like to see file/lib/git version info in the LaTeX output of doxygen for our C library code. I've added a small filter script providing the info string FILE_VERSION_FILTER= ../../tools/file_version_for_doxygen.sh and I can see that info in doxyg

[Doxygen-users] Building doxygen from source in VS2017 fails with: "error C2280: attempting to reference a deleted function"

2022-09-14 Thread Eric EHLERS via Doxygen-users
Hello I am trying to build doxygen from source on Windows using Visual Studio 2017. The build fails with the following error message: 5>doxycfg.vcxproj -> C:\erik\projects\doxygen\build17\build\lib\Debug\doxycfg.lib 6>C:\ projects\doxygen\doxygen-1.9.5\src\docbookgen.cpp(632): er

[Doxygen-users] Comments Update to Code File Via Doxygen

2021-04-15 Thread Mellencamp, William via Doxygen-users
Doxygen-Users, Does Doxygen have the ability to update the comments sections in a code file either based on another file, through GUI interface, or through html, or is it strictly Unidirectional, Code File to Documentation Output? Thanks Bill Please be advised that this email may contain

[Doxygen-users] Mscgen and Python

2021-01-21 Thread Ken Kazinski via Doxygen-users
How do you correctly document to have mscgen run when documenting python code? ''' \msc    db [label="Database"]    p [label="process"]     p=>db [label="Clear Database Flags"]     p<=db '''  \endmsc Is the above correct?___

[Doxygen-users] Doxygen not ignoring undefined #ifdef macro

2020-11-10 Thread William Shipes via Doxygen-users
I'm having a problem with this code. LITTLE is not defined, and yet Doxygen is picking up the code between it as if it is. Specifically, it is adding rand() to the call graph, which I don't want. I have tried using @cond @endcond, and I've tried #ifndef DOXYGEN_SHOULD_SKIP_THIS,

[Doxygen-users] warning: unable to resolve reference to 'FiberPar\ilinebr' for \ref command

2020-11-03 Thread Francois Nedelec via Doxygen-users
Hello! I am using Doxygen 1.8.20 on Mac OSX 10.14.6, installed with MacBrew. Doxygen gives me many errors, all of the same type: objects.md:16: warning: unable to resolve reference to 'spacepar\ilinebr' for \ref command The offending line 16 is within a table: Class |

Re: [Doxygen-users] Link Requirements to implemented function

2020-08-19 Thread sidharth guria via Doxygen-users
Hi Ron, can you please explain a little more? On Friday, 14 August, 2020, 10:11:44 pm GMT+2, Ron W wrote: On Fri, Aug 14, 2020 at 8:13 AM wrote: Date: Thu, 13 Aug 2020 14:22:39 + (UTC) From: sidharth guria Subject: [Doxygen-users] Link Requirements to implemented function

[Doxygen-users] Link Requirements to implemented function

2020-08-13 Thread sidharth guria via Doxygen-users
Hello,  I am working on a project which is implemented in C and the requirements are documented.I have managed to create a 'Requirement Implementation' page taking reference from :Custom tags with Doxygen | | | | | | | | | | | Custom tags with Doxygen I am trying to fig

[Doxygen-users] Better formatting of enum ?

2020-07-22 Thread Harald.Koenig2 via Doxygen-users
Hi again, I'm new to doxygen, using git master branch (cf635ef1) on Ubuntu 18.04 (right now mostly with TeXlive 2018 for compatibility by default, TL 2020 installed to). my 2nd problem/question: I try to get better formatting for this  enum: ---8<-8<-8<-8<---

Re: [Doxygen-users] How to get rid of "EXPORT" ... ?

2020-07-22 Thread Harald.Koenig2 via Doxygen-users
BUT with PREDEFINED = EXPORT EXPAND_ONLY_PREDEF = YES in the config file (exactly as you mentioned, now that I found it;) and IGNORE_DOXYGEN it's fine. thanks a lot for your very quick help!! Harald On 7/22/20 2:22 PM, Richard Damon wrote: On 7/22/20 7:49 AM, Harald.Koenig2 via

Re: [Doxygen-users] How to get rid of "EXPORT" ... ?

2020-07-22 Thread Harald.Koenig2 via Doxygen-users
IGNORE_DOXYGEN it's fine. thanks a lot for your very quick help!! Harald On 7/22/20 2:22 PM, Richard Damon wrote: On 7/22/20 7:49 AM, Harald.Koenig2 via Doxygen-users wrote: Hi *, I'm new to doxygen, using git master branch (cf635ef1) on Ubuntu 18.04 (right now mostly with TeX

[Doxygen-users] How to get rid of "EXPORT" ... ?

2020-07-22 Thread Harald.Koenig2 via Doxygen-users
Hi *, I'm new to doxygen, using git master branch (cf635ef1) on Ubuntu 18.04 (right now mostly with TeXlive 2018 for compatibility by default, TL 2020 installed to). the C sources to be documented (not my own code) uses an "EXPORT" define for some plattforms (e.g. "__decl

[Doxygen-users] Latex compile issue

2020-07-01 Thread Bleier, Leor Z. (GSFC-5820) via Doxygen-users
Hi all, I am not sure if this a bug or just incorrect usage on my part: I tell doxygen to generate latex, but during compilation of those files using pdflatex I get stopped at lines containing doxyparagraph. For example, with a line like this in the .tex file: \begin{center}\doxyparagraph

[Doxygen-users] Generate filenames without Version supported?

2020-06-21 Thread Roland Plüss via Doxygen-users
I've got a problem with generated doxygen files. I'm linking directly to the class files in my Wiki. The problem is the filenames contain version number like this: classDragengine_1_2Scenery_1_2ECBehaviorInteractPrompt.html So the verion "1.2" is encoded in the URL. Now if I

[Doxygen-users] Doxy for symbols not in the code

2020-04-30 Thread Barnes, Peter D. via Doxygen-users
> P. O. Box 808 Voice: (925) 422-3384 Livermore, California 94550 ___ Doxygen-users mailing list Doxygen-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/doxygen-users

Re: [Doxygen-users] Hyperlink to Word document from doxygen html (sidharth guria)

2019-12-05 Thread Ken Kazinski via Doxygen-users
Sidharth, Why not save the word document as an HTML document and then you could reference the html document from doxygen. -- Message: 1 Date: Wed, 4 Dec 2019 14:29:33 + (UTC) From: sidharth guria To: "doxygen-

Re: [Doxygen-users] Hyperlink to Word document from doxygen html

2019-12-04 Thread sidharth guria via Doxygen-users
orrect for the file type. If it's a Word file, Chrome will download it. The user would download the file and open it in Word. Unless the user has some sort of Word plugin in Chrome, but Doxygen doesn't know that. Could you just create a PDF file from your Word file and link it the same w

[Doxygen-users] Hyperlink to Word document from doxygen html

2019-11-28 Thread AwordSid via Doxygen-users
Hello, I have a requirement document in Word format. I have been trying to insert a hyperlink in doxygen html, that would open the requirement linked to that part of code. Which means, it opens the local Word document and jumps to the requirement ID. I have already tried using this: link name

[Doxygen-users] separated comment for union nested with struct using \var

2019-08-30 Thread Weiss Christian (AE-EB/END4) via Doxygen-users
lease? Thanks. My code consists of C and C++ and I am using doxygen version 1.8.16 on Windows. Code example: /** * @union myUnion * @brief this is my union * @var myUnion::alone * @brief this element is alone * @struct myUnion::level1 * @brief struct level one * @var myUnion::level1::first * @brief

[Doxygen-users] Doxygen to identify an extra attribute

2019-03-06 Thread Weng, Jian via Doxygen-users
Hello, I have a question about doxygen to retrieve the information from C source code. Is it possible to identify an attribute like read-only, write-only, read-write for a global variable when it is referenced or updated in a function by doxygen? For example, /* 4 sides of the AOT databases

Re: [Doxygen-users] no matching class member

2018-12-05 Thread Philip.Tessier--- via Doxygen-users
uint16_t aDeviceId vs uint32_t aDeviceId From: Mwoua Sent: Friday, November 30, 2018 9:54 AM To: doxygen-users@lists.sourceforge.net Subject: [Doxygen-users] no matching class member EXTERNAL EMAIL -- This message originates from outside of Engility

[Doxygen-users] Configuration problems

2018-07-17 Thread Rene 'Renne' Bartsch, B.Sc. Informatics via Doxygen-users
Hi, I'm new to the list, so a "Hello" to all! :-) I created a Doxyfile for the Sonoff-Tasmota project (C/C++, https://github.com/arendst/Sonoff-Tasmota/raw/development/Doxyfile). Most of the code is not documented, yet. So I enabled EXTRACT_ALL. Doxygen documents only a small

[Doxygen-users] Nested groups not always nested on the modules page

2018-01-08 Thread Yannick Duchêne via Doxygen-users
Hi all, Say I have a top‑level group named “foo” and a sub‑group named “bar” in “foo”. If elsewhere I also a group also named “bar”, however as a top‑level group, then in the modules pages, Doxygen display the top‑level “bar” with the “bar” which is a sub‑group of “foo”. I mean if I have

[Doxygen-users] Nested groups not always nested on the modules page

2018-01-08 Thread Yannick Duchêne via Doxygen-users
Hi all, Say I have a top‑level group named foo and a sub‑group named bar in foo. If elsewhere I also a group also named bar, however as a top‑level group, the in the modules, Doxygen display the top‑level bar in the bar which is a sub‑group of foo. I mean if I have something like this

Re: [Doxygen-users] How to link to entities in the current file, only?

2017-12-25 Thread Yannick Duchêne via Doxygen-users
That’s OK, I will just use a filter like this: #!/bin/sh NS=$(basename "$1") NS=${NS%.*} echo "namespace $NS {" cat "$1" echo "}" On Mon, 25 Dec 2017 17:25:49 -0700 (MST) Yannick Duchêne via Doxygen-users wrote: > Hi ther

[Doxygen-users] How to link to entities in the current file, only?

2017-12-25 Thread Yannick Duchêne via Doxygen-users
Hi there, As I understand Doxygen, it favours namespaces. I’m documenting an application whose UI use JavaScript. I have a main file for each page. Each of these main files have homonyms function names. On of these functions is simply called `main`. Say I have `page1.js` to `page9.js `. From say

[Doxygen-users] ASN.1 filter for Doxygen

2017-09-19 Thread Raashid Ansari via Doxygen-users
Hi All, I have developed a Doxygen filter for ASN.1 in Python and would like reviews from the community about its applicability. Here's the link to my repo:https://bitbucket.org/raashid_ansari/asn1-doxygen-filter Is it possible to get this included on the official Doxygen Extensions

[Doxygen-users] @namespace parsing issue with hyphenated names

2017-09-14 Thread Raashid Ansari via Doxygen-users
Hi All, I have built a parser for ASN.1 in Python. I use it to convert ASN.1 code to C++ish code. In ASN.1 you have a module name that encloses all other relevant structures in it, like a C++ namespace. I am using the @namespace command to tell Doxygen to parse the module name as the namespace

[Doxygen-users] Images in htmlinclude fines

2017-07-11 Thread Bob+ Biton via Doxygen-users
Hi, I wrote some html files that I want to insert in the documentation using the @htmlinclude tag. In the files I wanted to put images like this :http://sdm.link/slashdot___ Doxygen-users mailing list Doxygen-users@lists.sourceforge.net https

[Doxygen-users] Problem with the @htmlinclude tag

2017-07-06 Thread Bob+ Biton via Doxygen-users
Hi, I am documenting my project with doxygen and I wanted to add some ppt to the documentation. So I have transform my ppt to html and than I put the transformed files in the same directory which I mentioned in the EXAMPLE_PATH of the configuration's file. Then I tried to include these

[Doxygen-users] ASN.1 support

2017-06-19 Thread Raashid Ansari via Doxygen-users
Hi All, Is there any support out there for ASN.1 through Doxygen? Maybe someone built an extension? Regards, Raashid-- Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdo

Re: [Doxygen-users] FILE_PATTERNS issue with doxygen 1.8.8

2014-09-19 Thread Doxygen
>> >> For historical reasons, I use "dxt" (d for Doxygen ;-) extension instead >> "txt" to write documentation using doxygen syntax and generate html. >> >> Doxyfile: >> >> FILE_PATTERNS = *.dxt >> >> Doxygen: >> &

Re: [Doxygen-users] Autogenerating custom HTML

2013-07-08 Thread Doxygen
On 8 jul. 2013, at 17:22, Bahadir Balban wrote: > Hi, > > I would like to auto generate additional html pages (or markdown pages > that later get converted into html) other than the ones that doxygen > creates, using custom aliases . How could I go doing that? > > E.g.

Re: [Doxygen-users] Generate documentation from CMake scripts

2013-04-16 Thread Doxygen
On 16 apr. 2013, at 18:13, Robert Dailey wrote: > I have documentation I'd like to write for some functions in my CMake > scripts. Does doxygen support parsing documentation from cmake > scripts? If not, is it easy to add support? How would I do that? I haven't tried myself

Re: [Doxygen-users] Heading strings on Mac OS v. Linux

2013-04-12 Thread Doxygen
On 12 apr. 2013, at 02:56, dougkramer wrote: > I notice that when you run doxygen on Mac OS, you get different heading > strings than when run on Linux. > > For example: > Linux:"Public Member Functions" > Mac OS: "Instance Methods" > > I be

Re: [Doxygen-users] CREATE_SUBDIRS

2013-02-27 Thread Doxygen
k to individual pages from a wiki because you don't know where they'll > be next time you generate the doxygen pages. No, that's not true. The location it based on the start of a hash and that hash is based on the signature of the symbol. So it is stable for as long as the symbol

Re: [Doxygen-users] How can I escape */ in a comment?

2013-01-08 Thread Doxygen
See my answer here: http://stackoverflow.com/questions/10171533/how-to-make-doxygen-copy-without-processing-it Regards, Dimitri On 8 jan. 2013, at 16:18, BIRD Neil wrote: >> From: Signal Eleven [mailto:signalelevencod...@gmail.com], Sent: Saturday, >> December 29, 2012 5:45

Re: [Doxygen-users] C++ code inserted via \dontinclude not being correctly indented in Doxygen 1.8.2

2012-11-22 Thread Doxygen
On Nov 23, 2012, at 5:39, wrote: > Hello > > Current some of our C++ source code is inserted into our documentation via > \dontinclude and under doxygen 1.7.x and this is correctly formatted > (correctly indented and shown in a code block.) > > When we TEST compil