<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.text.doxygen.general">
    <title>gmane.text.doxygen.general</title>
    <link>http://permalink.gmane.org/gmane.text.doxygen.general</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.doxygen.general/10306"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.doxygen.general/10305"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.doxygen.general/10304"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.doxygen.general/10303"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.doxygen.general/10302"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.doxygen.general/10301"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.doxygen.general/10300"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.doxygen.general/10299"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.doxygen.general/10298"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.doxygen.general/10297"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.doxygen.general/10296"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.doxygen.general/10295"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.doxygen.general/10294"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.doxygen.general/10293"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.doxygen.general/10292"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.doxygen.general/10291"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.doxygen.general/10290"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.doxygen.general/10289"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.doxygen.general/10288"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.doxygen.general/10287"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.text.doxygen.general/10306">
    <title>More documentation on \example?</title>
    <link>http://permalink.gmane.org/gmane.text.doxygen.general/10306</link>
    <description>&lt;pre&gt;I'm new to doxygen (everyone has to start sometime, right?) and I've got a
question about the use of the \example tag.

I have a java source file with this in it:
/**
 * \briefDetermine if the API call has been canceled.
 * 
 * \return true if the API call was canceled, false if the API
call was not canceled.
 */
public boolean canceled() {
return isCanceled;
}
/**
 * \example edkresult_canceled_example.js
 * Some info about the canceled example.
 */

The file edkresult_canceled_example.js has an example of using the
"canceled" method:
// edkresult_canceled_example.js
function main() {
     var output = "API Test\n";
     var API = new MyApi();                // instantiate the API
     if (API != null) {                    // if we have a valid API
instance, make our calls
         var version = API.getVersion();   // get the result of the
API call
         output += "The API call " + (version.canceled() : "was" :
"was not") + " canceled.\n";
    }
    return output;                &lt;/pre&gt;</description>
    <dc:creator>Steve Goodrich</dc:creator>
    <dc:date>2012-05-23T20:13:07</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.doxygen.general/10305">
    <title>Creating a &lt; at &gt;subpage connection without actuallygenerating a link</title>
    <link>http://permalink.gmane.org/gmane.text.doxygen.general/10305</link>
    <description>&lt;pre&gt;
Hello all,

I have a question to the group, related
 to my previous question but this time regarding only &amp;lt; at &amp;gt;subpage. I have 
the same setup I presented in my previous email but I also want the 
included htmls which come from generated pages to be a subpage to this 
main doc page. &amp;lt; at &amp;gt;subpage would work nicely except I don't want the link 
to appear the way all other links appear in the documentation nor do I 
want it to appear where I write the &amp;lt; at &amp;gt;subpage command. Is there any 
option to create the &amp;lt; at &amp;gt;subpage link between two pages but without 
actually having the link appear? What I am using now is a hidden div to 
achieve it. Any other more doxygen-ish way exists?

Here is what I do:

/**
**
** &amp;lt;div style="display:none;"&amp;gt;
** &amp;lt; at &amp;gt;subpage ExampleTopic1PGE
** &amp;lt; at &amp;gt;subpage ExampleTopic2PGE
** &amp;lt;/div&amp;gt;

**&amp;lt;!-- more stuff above --&amp;gt;

** &amp;lt; at &amp;gt;docsubsection{3.1 ExampleTopic_1}
** &amp;lt; at &amp;gt;docsubpage{ExampleTopic1PGE}

** &amp;lt; at &amp;gt;htmlinclude Doxygen_Html/ExampleTopic1PGE.html

**

** &amp;lt; at &amp;gt;docsubsection{3.2 Example Topic 2}
** &amp;lt; at &amp;gt;docsubpage{ExampleTopic2PGE&lt;/pre&gt;</description>
    <dc:creator>Lefteris Karapetsas</dc:creator>
    <dc:date>2012-05-23T03:05:25</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.doxygen.general/10304">
    <title>Re: Tableofcontents and copydocing a page</title>
    <link>http://permalink.gmane.org/gmane.text.doxygen.general/10304</link>
    <description>&lt;pre&gt;
Hello again,

Basically I made hacked-up a solution that works for now and since I don't see any other alternative I suppose this is what will stay unless someone has any other way to suggest how to achieve this:

/**
**&amp;lt;!-- more stuff above --&amp;gt;
** &amp;lt; at &amp;gt;docsubsection{3.1 ExampleTopic_1}
** &amp;lt; at &amp;gt;htmlinclude Doxygen_Html/ExampleTopic1PGE.html
**
** &amp;lt; at &amp;gt;docsubsection{3.2 Example Topic 2}
** &amp;lt; at &amp;gt;htmlinclude Doxygen_Html/ExampleTopic2PGE.html
** &amp;lt;!-- more stuff below --&amp;gt;
**/

Here consider docsusbsection as basically an &amp;lt; at &amp;gt;subsection command but with just different style from all the other &amp;lt; at &amp;gt;subsection.
Then I include an html file which is located inside a special folder of the Example directory.
  Here is where the hack gets complicated. This html is basically the &amp;lt; at &amp;gt;page I wanted to link to, stripped down only to
its &amp;lt;div class="contents"&amp;gt; part and generated by a python script I made. So in effect I have to run doxygen twice for this to work. 
1) First time will generate the documentation and all the relevant &amp;lt; at &amp;gt;page but this &amp;lt; at &amp;gt;htm&lt;/pre&gt;</description>
    <dc:creator>Lefteris Karapetsas</dc:creator>
    <dc:date>2012-05-23T01:04:09</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.doxygen.general/10303">
    <title>Re: Markup For Tables - No Header Row</title>
    <link>http://permalink.gmane.org/gmane.text.doxygen.general/10303</link>
    <description>&lt;pre&gt;
On May 22, 2012, at 21:22 , Jake Colman wrote:


It is not supported at the moment. 

In the future I may add support for restructured-text style tables:
http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html#tables
which do support tables without header.

Regards,
  Dimitri


------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
&lt;/pre&gt;</description>
    <dc:creator>Dimitri Van Heesch</dc:creator>
    <dc:date>2012-05-22T19:40:40</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.doxygen.general/10302">
    <title>Re: Opening new tab for svg image through "arrowout"</title>
    <link>http://permalink.gmane.org/gmane.text.doxygen.general/10302</link>
    <description>&lt;pre&gt;
   DVH&amp;gt; Hi Jake,
   &amp;gt;&amp;gt;&amp;gt;&amp;gt;
   &amp;gt;&amp;gt;&amp;gt;&amp;gt; I am getting a different error:
   &amp;gt;&amp;gt;&amp;gt;&amp;gt;
   &amp;gt;&amp;gt;&amp;gt;&amp;gt; The requested URL
   &amp;gt;&amp;gt;&amp;gt;&amp;gt; /builds/mu/PAS_6_8/SRC/lib/doc/classpqLineEdit__inherit__graph_org.svg
   &amp;gt;&amp;gt;&amp;gt;&amp;gt; was not found on this server.
   &amp;gt;&amp;gt;&amp;gt;&amp;gt;
   &amp;gt;&amp;gt;&amp;gt;&amp;gt; It looks like Doxygen is not generating the original SVG file at all!
   &amp;gt;&amp;gt;&amp;gt;&amp;gt;
   &amp;gt;&amp;gt;&amp;gt;&amp;gt; Any ideas?
   &amp;gt;&amp;gt;
   DVH&amp;gt; If you run doxygen incrementally, you need to manually remove
   DVH&amp;gt; the .svg files one time to trigger the generation of the
   DVH&amp;gt; _org.svg files.
   &amp;gt;&amp;gt;
   &amp;gt;&amp;gt; My build procedure blows away the entire docs subdirectory prior to
   &amp;gt;&amp;gt; generating the documentation so its definitely not being done
   &amp;gt;&amp;gt; incrementally.  I regenerated a second time and I still have the same
   &amp;gt;&amp;gt; problem.

   DVH&amp;gt; Can you check if the file is generated at all? I can imagine it
   DVH&amp;gt; is not accessible from a web server if the path starts with
   DVH&amp;gt; /build/..., but that this does mean it is not generated.

   DVH&amp;gt; If it really is not generated then please provide a
   DVH&amp;gt; self-contained&lt;/pre&gt;</description>
    <dc:creator>Jake Colman</dc:creator>
    <dc:date>2012-05-22T19:24:01</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.doxygen.general/10301">
    <title>Re: Markup For Tables - No Header Row</title>
    <link>http://permalink.gmane.org/gmane.text.doxygen.general/10301</link>
    <description>&lt;pre&gt;
   SP&amp;gt; Am 22.05.2012 14:44, schrieb Jake Colman:
   &amp;gt;&amp;gt; 
   &amp;gt;&amp;gt; I'd like to use the Markup technique for creating a table but I
   &amp;gt;&amp;gt; need a table without a header (my table is several rows/columns of
   &amp;gt;&amp;gt; values and the header would meaningless).  Looking at the commands
   &amp;gt;&amp;gt; it looks like it insists on treating the first row in a special
   &amp;gt;&amp;gt; way.  Is there a way around this?
   &amp;gt;&amp;gt; 

   SP&amp;gt; Which syntax do you use?

   SP&amp;gt; This should be easy with HTML tables, don't know with Markdown.

I know how to do it with HTML tables but it's a pain to
read/write/maintain.  Markdown syntax is much easier.  But I don't see
how to do away with the table header.

&lt;/pre&gt;</description>
    <dc:creator>Jake Colman</dc:creator>
    <dc:date>2012-05-22T19:22:56</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.doxygen.general/10300">
    <title>Re: Opening new tab for svg image through "arrowout"</title>
    <link>http://permalink.gmane.org/gmane.text.doxygen.general/10300</link>
    <description>&lt;pre&gt;Hi Jake,


Can you check if the file is generated at all? I can imagine it is not accessible
from a web server if the path starts with /build/..., but that this does mean it is
not generated.

If it really is not generated then please provide a self-contained example (source+config
file in a tar or zip) that allows me to reproduce the problem.

Regards,
  Dimitri



------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
&lt;/pre&gt;</description>
    <dc:creator>Dimitri Van Heesch</dc:creator>
    <dc:date>2012-05-22T19:07:10</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.doxygen.general/10299">
    <title>Re: Markup For Tables - No Header Row</title>
    <link>http://permalink.gmane.org/gmane.text.doxygen.general/10299</link>
    <description>&lt;pre&gt;Am 22.05.2012 14:44, schrieb Jake Colman:

Which syntax do you use?

This should be easy with HTML tables, don't know with Markdown.


--
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?

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
&lt;/pre&gt;</description>
    <dc:creator>Stefan Pendl</dc:creator>
    <dc:date>2012-05-22T15:39:26</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.doxygen.general/10298">
    <title>Markup For Tables - No Header Row</title>
    <link>http://permalink.gmane.org/gmane.text.doxygen.general/10298</link>
    <description>&lt;pre&gt;
I'd like to use the Markup technique for creating a table but I need a
table without a header (my table is several rows/columns of values and
the header would meaningless).  Looking at the commands it looks like it
insists on treating the first row in a special way.  Is there a way
around this?

&lt;/pre&gt;</description>
    <dc:creator>Jake Colman</dc:creator>
    <dc:date>2012-05-22T12:44:02</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.doxygen.general/10297">
    <title>Re: Tableofcontents and copydocing a page</title>
    <link>http://permalink.gmane.org/gmane.text.doxygen.general/10297</link>
    <description>&lt;pre&gt;Hi Lefteris,

unfortunately, I'm not that "savy" regarding html and I haven't had the 
time to tune my html documentation.
So, at this time, I do not know of a similar solution to html...


Regards,
André

On 05/21/2012 11:14 AM, Lefteris Karapetsas wrote:
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/_______________________________________________
Doxygen-users mailing list
Doxygen-users&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/doxygen-users
&lt;/pre&gt;</description>
    <dc:creator>André Glória</dc:creator>
    <dc:date>2012-05-22T10:53:29</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.doxygen.general/10296">
    <title>Re: Help Linking to External Documentation</title>
    <link>http://permalink.gmane.org/gmane.text.doxygen.general/10296</link>
    <description>&lt;pre&gt;
   DVH&amp;gt; On May 21, 2012, at 14:09 , Jake Colman wrote:
   &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; "DVH" == Dimitri Van Heesch &amp;lt;doxygen&amp;lt; at &amp;gt;gmail.com&amp;gt; writes:
   &amp;gt;&amp;gt;&amp;gt;
   DVH&amp;gt; Hi Jake,
   DVH&amp;gt; On May 17, 2012, at 14:15 , Jake Colman wrote:
   &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
   &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; I am trying to figure out how to use Tag Files to link to
   &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; external documentation that is available for the third party
   &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; libraries that I am using, specifically Qt and Roguewave
   &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; SourcePro.  For both libraries I have access to their source
   &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; code.  Both libraries also provide beautiful documentation on
   &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; their respective web sites.  In Roguwave's case I'm almost
   &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; certain it was produced by some version of Doxygen.
   &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
   &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; What is the recommended way to include Roguwave's and Qt's
   &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; documentation in to my own documentation so that I process
   &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Roguwave and Qt only once?  Do I have to first run Doxygen
   &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; against the third-party source code?  Doxygen's manual seems to
   &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; imply that you can link to external documen&lt;/pre&gt;</description>
    <dc:creator>Jake Colman</dc:creator>
    <dc:date>2012-05-21T22:06:43</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.doxygen.general/10295">
    <title>Re: Help Linking to External Documentation</title>
    <link>http://permalink.gmane.org/gmane.text.doxygen.general/10295</link>
    <description>&lt;pre&gt;
   DVH&amp;gt; On May 21, 2012, at 14:09 , Jake Colman wrote:
   &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; "DVH" == Dimitri Van Heesch &amp;lt;doxygen&amp;lt; at &amp;gt;gmail.com&amp;gt; writes:
   &amp;gt;&amp;gt;
   DVH&amp;gt; Hi Jake,
   DVH&amp;gt; On May 17, 2012, at 14:15 , Jake Colman wrote:
   &amp;gt;&amp;gt;&amp;gt;&amp;gt;
   &amp;gt;&amp;gt;&amp;gt;&amp;gt; I am trying to figure out how to use Tag Files to link to
   &amp;gt;&amp;gt;&amp;gt;&amp;gt; external documentation that is available for the third party
   &amp;gt;&amp;gt;&amp;gt;&amp;gt; libraries that I am using, specifically Qt and Roguewave
   &amp;gt;&amp;gt;&amp;gt;&amp;gt; SourcePro.  For both libraries I have access to their source
   &amp;gt;&amp;gt;&amp;gt;&amp;gt; code.  Both libraries also provide beautiful documentation on
   &amp;gt;&amp;gt;&amp;gt;&amp;gt; their respective web sites.  In Roguwave's case I'm almost
   &amp;gt;&amp;gt;&amp;gt;&amp;gt; certain it was produced by some version of Doxygen.
   &amp;gt;&amp;gt;&amp;gt;&amp;gt;
   &amp;gt;&amp;gt;&amp;gt;&amp;gt; What is the recommended way to include Roguwave's and Qt's
   &amp;gt;&amp;gt;&amp;gt;&amp;gt; documentation in to my own documentation so that I process
   &amp;gt;&amp;gt;&amp;gt;&amp;gt; Roguwave and Qt only once?  Do I have to first run Doxygen
   &amp;gt;&amp;gt;&amp;gt;&amp;gt; against the third-party source code?  Doxygen's manual seems to
   &amp;gt;&amp;gt;&amp;gt;&amp;gt; imply that you can link to external documentation even if y&lt;/pre&gt;</description>
    <dc:creator>Jake Colman</dc:creator>
    <dc:date>2012-05-21T21:51:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.doxygen.general/10294">
    <title>Re: Opening new tab for svg image through "arrowout"</title>
    <link>http://permalink.gmane.org/gmane.text.doxygen.general/10294</link>
    <description>&lt;pre&gt;
   DVH&amp;gt; On May 21, 2012, at 16:15 , Jake Colman wrote:
   &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; "A" == Albert  &amp;lt;albert.tests&amp;lt; at &amp;gt;gmail.com&amp;gt; writes:
   &amp;gt;&amp;gt; 
   A&amp;gt; Dear All,
   A&amp;gt; In the new release there has been a change in respect to handling svg
   A&amp;gt; images:
   &amp;gt;&amp;gt;&amp;gt;&amp;gt; + CHG: For interactive SVGs the print button has been replaced by a
   &amp;gt;&amp;gt;&amp;gt;&amp;gt; "arrow out" button that opens the original non-interactive SVG in a
   &amp;gt;&amp;gt;&amp;gt;&amp;gt; new window.
   &amp;gt;&amp;gt; 
   A&amp;gt; When I click on Windows, using the latest version of Firefox, on the
   A&amp;gt; arrow a new, empty tab is opened, and I get the message:
   &amp;gt;&amp;gt; 
   A&amp;gt; Firefox doesn't know how to open this address, as the protocol(d)
   A&amp;gt; isn't associated with any program.
   &amp;gt;&amp;gt; 
   A&amp;gt; When doing the same in the Internet Explorer a new tab is opened and
   A&amp;gt; the svg image is shown.
   &amp;gt;&amp;gt; 
   A&amp;gt; (When doing the same in the older version (printer icon) I got similar
   A&amp;gt; messages, but I never used it.)
   &amp;gt;&amp;gt; 
   A&amp;gt; Any suggestions ?
   &amp;gt;&amp;gt; 
   A&amp;gt; Albert
   &amp;gt;&amp;gt; 
   &amp;gt;&amp;gt; I am getting a different error:
   &amp;gt;&amp;gt; 
   &amp;gt;&amp;gt; The requested U&lt;/pre&gt;</description>
    <dc:creator>Jake Colman</dc:creator>
    <dc:date>2012-05-21T21:40:14</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.doxygen.general/10293">
    <title>Re: &lt; at &gt;subpage not working properly,if a page and a section of another page have the same name</title>
    <link>http://permalink.gmane.org/gmane.text.doxygen.general/10293</link>
    <description>&lt;pre&gt;
On May 21, 2012, at 16:23 , Stefan Ludewig wrote:


Yes they need to be unique, so you need to define a naming convention. 
Simply prefixing the page label before each section label would do the trick, i.e. &amp;lt; at &amp;gt;section FooBar_Bar.

Regards,
  Dimitri


------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
&lt;/pre&gt;</description>
    <dc:creator>Dimitri Van Heesch</dc:creator>
    <dc:date>2012-05-21T17:29:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.doxygen.general/10292">
    <title>Re: Help Linking to External Documentation</title>
    <link>http://permalink.gmane.org/gmane.text.doxygen.general/10292</link>
    <description>&lt;pre&gt;
On May 21, 2012, at 14:09 , Jake Colman wrote:


It should preferably be the same as they have used, but you can disable all outputs
(GENERATE_HTML, GENERATE_LATEX, GENERATE_RTF, GENERATE_MAN, GENERATE_XML)

For the Qt sources you need to run qdoc3 in order to get the right tag file.

Regards,
  Dimitri



------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
&lt;/pre&gt;</description>
    <dc:creator>Dimitri Van Heesch</dc:creator>
    <dc:date>2012-05-21T17:26:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.doxygen.general/10291">
    <title>Re: Opening new tab for svg image through "arrowout"</title>
    <link>http://permalink.gmane.org/gmane.text.doxygen.general/10291</link>
    <description>&lt;pre&gt;
On May 21, 2012, at 16:15 , Jake Colman wrote:


If you run doxygen incrementally, you need to manually remove the .svg files
one time to trigger the generation of the _org.svg files.

Regards,
  Dimitri



------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
&lt;/pre&gt;</description>
    <dc:creator>Dimitri Van Heesch</dc:creator>
    <dc:date>2012-05-21T17:23:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.doxygen.general/10290">
    <title>&lt; at &gt;subpage not working properly, if a page and a section of another page have the same name</title>
    <link>http://permalink.gmane.org/gmane.text.doxygen.general/10290</link>
    <description>&lt;pre&gt;Hi all.



I have a setup like this:



/**

&amp;lt; at &amp;gt;mainpage Name

&amp;lt; at &amp;gt;subpage Foo

&amp;lt; at &amp;gt;subpage FooBar

*/



/**

&amp;lt; at &amp;gt;page Foo Foo

Some text

&amp;lt; at &amp;gt;subpage Bar

*/



/**

&amp;lt; at &amp;gt;page Bar Bar

Some text

*/



/**

&amp;lt; at &amp;gt;page FooBar

Some text

&amp;lt; at &amp;gt;section Bar

Some more text

*/



If I generate a doxygen html-docs from this setup, then the subpage link on
page Foo links to FooBar’s section Bar instead of to page Bar. However, the
link in the treeview correctly links to page Bar.



Is this a known bug with known workarounds od do I really have to assure,
that all pages, sections, subsections and subsubsections in a project have
unique names (which could be quite problematic when generating a doc from
multiple projects from different devs)?



Thanks,

Stefan.
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint secur&lt;/pre&gt;</description>
    <dc:creator>Stefan Ludewig</dc:creator>
    <dc:date>2012-05-21T14:23:59</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.doxygen.general/10289">
    <title>Re: Opening new tab for svg image through "arrowout"</title>
    <link>http://permalink.gmane.org/gmane.text.doxygen.general/10289</link>
    <description>&lt;pre&gt;
   A&amp;gt; Dear All,
   A&amp;gt; In the new release there has been a change in respect to handling svg images:
   &amp;gt;&amp;gt; + CHG: For interactive SVGs the print button has been replaced by a
   &amp;gt;&amp;gt; "arrow out" button that opens the original non-interactive SVG in a
   &amp;gt;&amp;gt; new window.

   A&amp;gt; When I click on Windows, using the latest version of Firefox, on the
   A&amp;gt; arrow a new, empty tab is opened, and I get the message:

   A&amp;gt;   Firefox doesn't know how to open this address, as the protocol(d)
   A&amp;gt; isn't associated with any program.

   A&amp;gt; When doing the same in the Internet Explorer a new tab is opened and
   A&amp;gt; the svg image is shown.

   A&amp;gt; (When doing the same in the older version (printer icon) I got similar
   A&amp;gt; messages, but I never used it.)

   A&amp;gt; Any suggestions ?

   A&amp;gt; Albert

I am getting a different error:

The requested URL
/builds/mu/PAS_6_8/SRC/lib/doc/classpqLineEdit__inherit__graph_org.svg
was not found on this server.

It looks like Doxygen is not generating the original SVG file at all!

Any ideas?

...&lt;/pre&gt;</description>
    <dc:creator>Jake Colman</dc:creator>
    <dc:date>2012-05-21T14:15:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.doxygen.general/10288">
    <title>Re: Help Linking to External Documentation</title>
    <link>http://permalink.gmane.org/gmane.text.doxygen.general/10288</link>
    <description>&lt;pre&gt;
   DVH&amp;gt; Hi Jake,
   DVH&amp;gt; On May 17, 2012, at 14:15 , Jake Colman wrote:
   &amp;gt;&amp;gt; 
   &amp;gt;&amp;gt; I am trying to figure out how to use Tag Files to link to external
   &amp;gt;&amp;gt; documentation that is available for the third party libraries that
   &amp;gt;&amp;gt; I am using, specifically Qt and Roguewave SourcePro.  For both
   &amp;gt;&amp;gt; libraries I have access to their source code.  Both libraries also
   &amp;gt;&amp;gt; provide beautiful documentation on their respective web sites.  In
   &amp;gt;&amp;gt; Roguwave's case I'm almost certain it was produced by some version
   &amp;gt;&amp;gt; of Doxygen.
   &amp;gt;&amp;gt; 
   &amp;gt;&amp;gt; What is the recommended way to include Roguwave's and Qt's
   &amp;gt;&amp;gt; documentation in to my own documentation so that I process
   &amp;gt;&amp;gt; Roguwave and Qt only once?  Do I have to first run Doxygen against
   &amp;gt;&amp;gt; the third-party source code?  Doxygen's manual seems to imply that
   &amp;gt;&amp;gt; you can link to external documentation even if you do not have the
   &amp;gt;&amp;gt; original source code?  Also, if I have to process the source code,
   &amp;gt;&amp;gt; what is the value of the URL option to the tag file?
   &lt;/pre&gt;</description>
    <dc:creator>Jake Colman</dc:creator>
    <dc:date>2012-05-21T12:09:37</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.doxygen.general/10287">
    <title>Re: Tableofcontents and copydocing a page</title>
    <link>http://permalink.gmane.org/gmane.text.doxygen.general/10287</link>
    <description>&lt;pre&gt;

Hello Andre,

Thanks for the reply. I am actually using html for my documentation. Is there any similar solution like the one you propose for the html documentation?

Thanks,
  -Lefteris
Date: Mon, 21 May 2012 10:11:58 +0100
From: andre.gloria&amp;lt; at &amp;gt;bithium.com
To: doxygen-users&amp;lt; at &amp;gt;lists.sourceforge.net
Subject: Re: [Doxygen-users] Tableofcontents and copydocing a page


  
    
  
  
    Hello Lefteris,

    

    I'm assuming you are creating a latex (PDF) output with doxygen so:

    

    Answer 1: In the latex header file that Doxygen will use you can add
    a \setcounter{tocdepth}{3} line to change to which level
    should the toc go to.

                     Check here
    in the table the meaning of the levels.

    

    Answer 2: As far as I know doxygen's include commands are all kinda
    related to source code only. So my solution is to use latex
    commands, in the place where you want to include the other file

                    you can use \latexonly \include{path to file to
      include} \end&lt;/pre&gt;</description>
    <dc:creator>Lefteris Karapetsas</dc:creator>
    <dc:date>2012-05-21T10:14:38</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.doxygen.general/10286">
    <title>Re: Tableofcontents and copydocing a page</title>
    <link>http://permalink.gmane.org/gmane.text.doxygen.general/10286</link>
    <description>&lt;pre&gt;Hello Lefteris,

I'm assuming you are creating a latex (PDF) output with doxygen so:

Answer 1: In the latex header file that Doxygen will use you can add a 
/\setcounter{tocdepth}{3}/ line to change to which level should the toc 
go to.
                  Check here 
&amp;lt;https://en.wikibooks.org/wiki/LaTeX/Document_Structure#Sectioning_Commands&amp;gt; 
in the table the meaning of the levels.

Answer 2: As far as I know doxygen's include commands are all kinda 
related to source code only. So my solution is to use latex commands, in 
the place where you want to include the other file
                 you can use /\latexonly \include{path to file to 
include} \endlatexonly/ that I believe should work.

Regards,
André

On 05/20/2012 05:23 PM, Lefteris Karapetsas wrote:
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
&lt;/pre&gt;</description>
    <dc:creator>André Glória</dc:creator>
    <dc:date>2012-05-21T09:11:58</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.text.doxygen.general">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.text.doxygen.general</link>
  </textinput>
</rdf:RDF>

