diff options
author | albert-github <albert.tests@gmail.com> | 2016-09-02 13:01:11 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2016-09-03 09:04:38 (GMT) |
commit | 9ae1af9b8679a0f14cb568d1db3afcc6e3ba40a6 (patch) | |
tree | cd636c234fbe837dddfabbb0230aa016e01d6572 /testing/014 | |
parent | 445347566078a1cc64705f28932e1da5bf9f531f (diff) | |
download | Doxygen-9ae1af9b8679a0f14cb568d1db3afcc6e3ba40a6.zip Doxygen-9ae1af9b8679a0f14cb568d1db3afcc6e3ba40a6.tar.gz Doxygen-9ae1af9b8679a0f14cb568d1db3afcc6e3ba40a6.tar.bz2 |
Bug 770660 - Code snippet always shows line numbers from 1
This patch makes the handling of the \snippet and other commands consistent between the different languages (no line numbers anymore with python) and also introduces analogous to \includelineno the command \snippetlineno.
Some non relevant changes:
- *code.l Calculation of the end line was incorrect, in case of a snippet the end line was the number of lines of the snippet and not reltive to the start line.
- *code.l made consistent over the different laguages, enabling exBlock and inlineFragment
- testing/indexpage.xml in test 14 the \snippet command was used with python and giving line numbers, linenumbers are now gone (consistency)
Diffstat (limited to 'testing/014')
-rw-r--r-- | testing/014/indexpage.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/014/indexpage.xml b/testing/014/indexpage.xml index c2fe57a..6f62ef2 100644 --- a/testing/014/indexpage.xml +++ b/testing/014/indexpage.xml @@ -6,16 +6,16 @@ <detaileddescription> <para> <programlisting> - <codeline lineno="1"> + <codeline> <highlight class="comment">#<sp/>comment<sp/>in<sp/>Python</highlight> <highlight class="normal"/> </codeline> - <codeline lineno="2"> + <codeline> <highlight class="normal"/> <highlight class="keyword">class<sp/></highlight> <highlight class="normal">Python:</highlight> </codeline> - <codeline lineno="3"> + <codeline> <highlight class="normal"> <sp/> <sp/> |