diff options
author | Vladimír Vondruš <mosra@centrum.cz> | 2017-11-25 18:27:15 (GMT) |
---|---|---|
committer | Vladimír Vondruš <mosra@centrum.cz> | 2017-11-25 18:27:15 (GMT) |
commit | bd2cf98e75c600e0c2f5ae95301df8745d65571a (patch) | |
tree | e501645f24a98b742cf52d71ce16d8609443bcb1 /testing/032/indexpage.xml | |
parent | 4f45bd20d4da7d40c793ec4c4c13558581e995ac (diff) | |
download | Doxygen-bd2cf98e75c600e0c2f5ae95301df8745d65571a.zip Doxygen-bd2cf98e75c600e0c2f5ae95301df8745d65571a.tar.gz Doxygen-bd2cf98e75c600e0c2f5ae95301df8745d65571a.tar.bz2 |
Provide page brief in <briefdescription> of XML output.
Until now the brief description of pages was prepended to the
<detaileddescription> element and the <briefdescription> element was
not present at all, which meant there was no easy way to extract the
brief description for purposes of creating a page index, for example.
With this patch, the brief description is included in both
<briefdescription> and <detaileddescription>, thus duplicated, to
avoid backwards compatibility issues.
Diffstat (limited to 'testing/032/indexpage.xml')
-rw-r--r-- | testing/032/indexpage.xml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/testing/032/indexpage.xml b/testing/032/indexpage.xml index 3a25272..cbb93df 100644 --- a/testing/032/indexpage.xml +++ b/testing/032/indexpage.xml @@ -3,6 +3,8 @@ <compounddef id="indexpage" kind="page"> <compoundname>index</compoundname> <title>My Project</title> + <briefdescription> + </briefdescription> <detaileddescription> <para>Some text. <programlisting filename="example_test.cpp"><codeline><highlight class="keywordtype">void</highlight><highlight class="normal"><sp/>main()</highlight></codeline><codeline><highlight class="normal">{</highlight></codeline><codeline><highlight class="normal"><sp/><sp/>Test<sp/>t;</highlight></codeline><codeline><highlight class="normal"><sp/><sp/>t.example();</highlight></codeline><codeline><highlight class="normal">}</highlight></codeline><codeline><highlight class="normal"/></codeline></programlisting> More text. <programlisting filename="example_test.cpp"><codeline lineno="1"><highlight class="keywordtype">void</highlight><highlight class="normal"><sp/>main()</highlight></codeline><codeline lineno="2"><highlight class="normal">{</highlight></codeline><codeline lineno="3"><highlight class="normal"><sp/><sp/>Test<sp/>t;</highlight></codeline><codeline lineno="4"><highlight class="normal"><sp/><sp/>t.example();</highlight></codeline><codeline lineno="5"><highlight class="normal">}</highlight></codeline><codeline lineno="6"><highlight class="normal"/></codeline></programlisting> End. </para> </detaileddescription> |