Thread: [Doxygen-users] Filenames
Brought to you by:
dimitri
From: JORE <Joh...@gi...> - 2015-02-26 10:37:22
|
Hello, i have a question about file names. Is it possible to have spaces characters in my filenames? For example: One file is called CCP V 3.1.c, so if i create the documentation the link to the file doesn't work. If i call the file CCP_V_3.1.c it works. Can i do something in the configuration that it also works with space characters in the file name? Best wishes JORE -- View this message in context: http://doxygen.10944.n7.nabble.com/Filenames-tp7051.html Sent from the Doxygen - Users mailing list archive at Nabble.com. |
From: Albert <alb...@gm...> - 2015-02-26 18:22:31
|
Johannes, Which version of doxygen are you using? I did a very small test with version 1.8.9.1 and I didn't see a problem. Can you post a minimal example (source plus used Doxyfile)? Albert On Thu, Feb 26, 2015 at 11:20 AM, JORE <Joh...@gi...> wrote: > Hello, > > i have a question about file names. > > Is it possible to have spaces characters in my filenames? > > For example: > > One file is called CCP V 3.1.c, so if i create the documentation the link > to > the file doesn't work. If i call the file CCP_V_3.1.c it works. > > Can i do something in the configuration that it also works with space > characters in the file name? > > Best wishes > JORE > > > > > > > -- > View this message in context: > http://doxygen.10944.n7.nabble.com/Filenames-tp7051.html > Sent from the Doxygen - Users mailing list archive at Nabble.com. > > > ------------------------------------------------------------------------------ > Dive into the World of Parallel Programming The Go Parallel Website, > sponsored > by Intel and developed in partnership with Slashdot Media, is your hub for > all > things parallel software development, from weekly thought leadership blogs > to > news, videos, case studies, tutorials and more. Take a look and join the > conversation now. http://goparallel.sourceforge.net/ > _______________________________________________ > Doxygen-users mailing list > Dox...@li... > https://lists.sourceforge.net/lists/listinfo/doxygen-users > |
From: JORE <Joh...@gi...> - 2015-02-27 12:48:47
|
Hey albert, i use Version 1.4.5 That is in my Source code: /** * @file CCP V 2.0.h * @date 25.02.2015 * @brief Defines, enums, struct etc. */ And that is what i get after running doxygen: <http://doxygen.10944.n7.nabble.com/file/n7054/Test.jpg> thx -- View this message in context: http://doxygen.10944.n7.nabble.com/Filenames-tp7051p7054.html Sent from the Doxygen - Users mailing list archive at Nabble.com. |
From: Stefan P. <ste...@gm...> - 2015-02-27 17:49:41
|
Am 27.02.2015 um 13:40 schrieb JORE: > Hey albert, > > i use Version 1.4.5 > > That is in my Source code: > > /** > * @file CCP V 2.0.h > * @date 25.02.2015 > * @brief Defines, enums, struct etc. > */ > Version 1.4.5 is ancient, released on October 4th, 2005. Now it is nearly ten years later, but if it has all the features you need. Have you already tried enclosing the file name in quotes? @file "CCP V 2.0.h" I would still upgrade to the latest release and see if the issue is gone, might be the case that you see some new things you like to use too. -- Stefan P. Top-posting: A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? A: Top-posting. Q: What is the most annoying thing in e-mail? |
From: Albert <alb...@gm...> - 2015-02-27 18:29:00
|
Johannes, Small addition to the the email of Stephan, when the \file is in the same file as it what it is documenting it is not required to specify the file name. From the documentation: Indicates that a comment block contains documentation for a source or header file with name <name>. The file name may include (part of) the path if the file-name alone is not unique. If the file name is omitted (i.e. the line after \file is left blank) then the documentation block that contains the \file command will belong to the file it is located in. Albert On Fri, Feb 27, 2015 at 6:49 PM, Stefan Pendl <ste...@gm...> wrote: > Am 27.02.2015 um 13:40 schrieb JORE: > > Hey albert, > > > > i use Version 1.4.5 > > > > That is in my Source code: > > > > /** > > * @file CCP V 2.0.h > > * @date 25.02.2015 > > * @brief Defines, enums, struct etc. > > */ > > > > Version 1.4.5 is ancient, released on October 4th, 2005. > Now it is nearly ten years later, but if it has all the features you need. > > Have you already tried enclosing the file name in quotes? > > @file "CCP V 2.0.h" > > I would still upgrade to the latest release and see if the issue is > gone, might be the case that you see some new things you like to use too. > > > -- > Stefan P. > > Top-posting: > A: Because it messes up the order in which people normally read text. > Q: Why is top-posting such a bad thing? > A: Top-posting. > Q: What is the most annoying thing in e-mail? > > > > ------------------------------------------------------------------------------ > Dive into the World of Parallel Programming The Go Parallel Website, > sponsored > by Intel and developed in partnership with Slashdot Media, is your hub for > all > things parallel software development, from weekly thought leadership blogs > to > news, videos, case studies, tutorials and more. Take a look and join the > conversation now. http://goparallel.sourceforge.net/ > _______________________________________________ > Doxygen-users mailing list > Dox...@li... > https://lists.sourceforge.net/lists/listinfo/doxygen-users > |