Thread: [Doxygen-users] The lowercase problem when using the Doxygen with Fortran
Brought to you by:
dimitri
From: aziz <azi...@gm...> - 2012-09-29 17:33:20
|
Hi, I am using the Doxygen with Fortran. I downloaded the latest version and use it on my Mac. I then generated the HTML document from the Fortran code. Surprisingly, I found that the letters in the HTML document were not shown as I expected. For example, the function name in my code is getX but the generated document shows getx. I actually expected to see getX from the document instead of all lowercase letters. Have anyone know the solution to fix this problem? Thank you, Aziz. |
From: Albert <alb...@gm...> - 2012-09-29 17:48:59
|
Hi Aziz, Fortran is a case insensitive language and therefor a lot of names etc. are converted to lowercase to make it possible to make hyperlinks etc. The only solution would be to convert the search strategy for hyperlinks etc, but you will have problems e.g. when having mixed language programming. At the moment there is no solution for this "problem" Albert On Sat, Sep 29, 2012 at 7:33 PM, aziz <azi...@gm...> wrote: > Hi, I am using the Doxygen with Fortran. I downloaded the latest version and > use it on my Mac. I then generated the HTML document from the Fortran code. > Surprisingly, I found that the letters in the HTML document were not shown > as I expected. For example, the function name in my code is getX but the > generated document shows getx. I actually expected to see getX from the > document instead of all lowercase letters. Have anyone know the solution to > fix this problem? Thank you, > Aziz. > > ------------------------------------------------------------------------------ > How fast is your code? > 3 out of 4 devs don\\\'t know how their code performs in production. > Find out how slow your code is with AppDynamics Lite. > http://ad.doubleclick.net/clk;262219672;13503038;z? > http://info.appdynamics.com/FreeJavaPerformanceDownload.html > _______________________________________________ > Doxygen-users mailing list > Dox...@li... > https://lists.sourceforge.net/lists/listinfo/doxygen-users > |
From: Albert <alb...@gm...> - 2012-09-29 21:58:10
|
Dear Aziz, In version 1.7.4 the links were not correct when having a subroutine getX and a call getx Albert On Sat, Sep 29, 2012 at 8:06 PM, aziz <azi...@gm...> wrote: > Thank you Albert. But there is no problem in Doxygen version 1.7.4. > Currently, I use version 1.8.1.1. > > Aziz. > > > > On 9/29/12 10:48 AM, "Albert" <alb...@gm...> wrote: > >>Hi Aziz, >> >>Fortran is a case insensitive language and therefor a lot of names >>etc. are converted to lowercase to make it possible to make hyperlinks >>etc. >> >>The only solution would be to convert the search strategy for >>hyperlinks etc, but you will have problems e.g. when having mixed >>language programming. >> >>At the moment there is no solution for this "problem" >> >>Albert >> >>On Sat, Sep 29, 2012 at 7:33 PM, aziz <azi...@gm...> wrote: >>> Hi, I am using the Doxygen with Fortran. I downloaded the latest >>>version and >>> use it on my Mac. I then generated the HTML document from the Fortran >>>code. >>> Surprisingly, I found that the letters in the HTML document were not >>>shown >>> as I expected. For example, the function name in my code is getX but the >>> generated document shows getx. I actually expected to see getX from the >>> document instead of all lowercase letters. Have anyone know the >>>solution to >>> fix this problem? Thank you, >>> Aziz. >>> >>> >>>------------------------------------------------------------------------- >>>----- >>> How fast is your code? >>> 3 out of 4 devs don\\\'t know how their code performs in production. >>> Find out how slow your code is with AppDynamics Lite. >>> http://ad.doubleclick.net/clk;262219672;13503038;z? >>> http://info.appdynamics.com/FreeJavaPerformanceDownload.html >>> _______________________________________________ >>> Doxygen-users mailing list >>> Dox...@li... >>> https://lists.sourceforge.net/lists/listinfo/doxygen-users >>> > > |
From: michael.lee.rilee <mi...@ri...> - 2014-01-13 16:41:13
|
We're using Doxygen for pFUnit <http://pfunit.sourceforge.net> , a unit-testing framework for Fortran. For our coding convention, we extensively use CamelCase. Forcing the text to lowercase in both the URL and the display text makes the documentation inconsistent with the code and much harder to read. We'd much prefer to have the displayed text (that also shows up in the generated documentation) respect the coding convention in the source. It seems to me that the URL links could use any appropriately unique and indexable naming scheme. Such should support mixed-case languages as well. At present, we're staying at 1.7.x to generate our docs until this is fixed. Mike Albert_1 wrote > Dear Aziz, > > In version 1.7.4 the links were not correct when having a subroutine > getX and a call getx > > Albert > > On Sat, Sep 29, 2012 at 8:06 PM, aziz < > aziz.nantha@ > > wrote: >> Thank you Albert. But there is no problem in Doxygen version 1.7.4. >> Currently, I use version 1.8.1.1. >> >> Aziz. >> >> >> >> On 9/29/12 10:48 AM, "Albert" < > albert.tests@ > > wrote: >> >>>Hi Aziz, >>> >>>Fortran is a case insensitive language and therefor a lot of names >>>etc. are converted to lowercase to make it possible to make hyperlinks >>>etc. >>> >>>The only solution would be to convert the search strategy for >>>hyperlinks etc, but you will have problems e.g. when having mixed >>>language programming. >>> >>>At the moment there is no solution for this "problem" >>> >>>Albert >>> -- View this message in context: http://doxygen.10944.n7.nabble.com/The-lowercase-problem-when-using-the-Doxygen-with-Fortran-tp1243p6464.html Sent from the Doxygen - Users mailing list archive at Nabble.com. |