Thread: Re: [Doxygen-users] ?? for page numbers in the indices
Brought to you by:
dimitri
From: albert <alb...@gm...> - 2014-11-07 18:41:05
|
Does the loop run till the end or does it terminate before the final count is reached. In the first case what happens if you increase the count? If the above does not help can you be a bit more precise in where the problem occurs or better create a small example showing the problem and post this. -- View this message in context: http://doxygen.10944.n7.nabble.com/for-page-numbers-in-the-indices-tp6895p6897.html Sent from the Doxygen - Users mailing list archive at Nabble.com. |
From: albert <alb...@gm...> - 2014-11-08 09:07:09
|
Hi Komal, In the source tree that I have I don't see the problem, so your minimal example including Doxyfile would be nice to have to reproduce your problem. Either attach it here or file a bug report at bugzilla. Before replying to this email please register at this mailing list as otherwise no mail notification is send out by default and the message won't always be read or with a possible large delay. Albert -- View this message in context: http://doxygen.10944.n7.nabble.com/for-page-numbers-in-the-indices-tp6895p6899.html Sent from the Doxygen - Users mailing list archive at Nabble.com. |
From: Komal S <kom...@ya...> - 2014-11-09 16:37:21
|
Hello ALbert, I have subscribed to this mailing list and have attached my tree. Thanks Komal DocGen.zip <http://doxygen.10944.n7.nabble.com/file/n6900/DocGen.zip> -- View this message in context: http://doxygen.10944.n7.nabble.com/for-page-numbers-in-the-indices-tp6895p6900.html Sent from the Doxygen - Users mailing list archive at Nabble.com. |
From: Albert <alb...@gm...> - 2014-11-09 18:57:10
|
Hi Komal, Got the mail. Problem here is the CREATE_SUBDIRS in case this is set to NO everything is working fine. A bit more details: the \pageref refers with CREATE_SUBDIRS set to YES to dc/d42/group___main whilst the \hypertarget, \newlabel or \label refer to group___main. I can vaguely remember that I worked on a similar problem in the past regarding links to other objects. Currently I'm working on some other issues regarding latex output so I cannot do a full check and create a patch. There are 3 places where \pageref is used but when taking the current source version and replacing in latexgen.cpp line1091: t << "}{\\pageref{" << fn << "}}{}" << endl; by t << "}{\\pageref{" << stripPath(fn) << "}}{}" << endl; your problem will be solved. Albert On Sun, Nov 9, 2014 at 5:31 PM, Komal S <kom...@ya...> wrote: > Hello ALbert, > > I have subscribed to this mailing list and have attached my tree. > > Thanks > Komal > > DocGen.zip <http://doxygen.10944.n7.nabble.com/file/n6900/DocGen.zip> > > > > -- > View this message in context: > http://doxygen.10944.n7.nabble.com/for-page-numbers-in-the-indices-tp6895p6900.html > Sent from the Doxygen - Users mailing list archive at Nabble.com. > > > ------------------------------------------------------------------------------ > _______________________________________________ > Doxygen-users mailing list > Dox...@li... > https://lists.sourceforge.net/lists/listinfo/doxygen-users > |
From: Komal S <kom...@ya...> - 2014-11-09 23:27:59
|
Hi Albert, Setting CREATE_SUBDIRS to NO worked for me. Thank you for your help with this. Komal -- View this message in context: http://doxygen.10944.n7.nabble.com/for-page-numbers-in-the-indices-tp6895p6902.html Sent from the Doxygen - Users mailing list archive at Nabble.com. |