1. 18 Jan, 2014 3 commits
  2. 17 Jan, 2014 1 commit
    • Craig Thomas Noble's avatar
      Fix to VHDL scanner. · 5ca7d423
      Craig Thomas Noble authored
      The following code should produce two groups, each containing one page, within the same documentation scope,
      currently it nests these groups and pages, resulting in incorrect documentation.
      
      --! \defgroup group1 Group 1
      --! \{
      --!   @brief Group 1
      --! \}
      
      --! \ingroup group1
      --! \{
      --! \page group1_page1 Page 1
      --! \verbatim
      --!  Some Page 1 text
      --! \endverbatim
      --! \}
      
      --! \defgroup group2 Group 2
      --! \{
      --!   @brief Group 2
      --! \}
      
      --! \ingroup group2
      --! \{
      --! \page group2_page1 Page 1
      --! \verbatim
      --!  Some Page 1 text
      --! \endverbatim
      --! \}
      
      Similar C code to demonstrate the correct output.
      
      //! \defgroup group1 Group 1
      //! \{
      //!   @brief Group 1
      //! \}
      
      //! \ingroup group1
      //! \{
      //! \page group1_page1 Page 1
      //! \verbatim
      //!  Some Page 1 text
      //! \endverbatim
      //! \}
      
      //! \defgroup group2 Group 2
      //! \{
      //!   @brief Group 2
      //! \}
      
      //! \ingroup group2
      //! \{
      //! \page group2_page1 Page 1
      //! \verbatim
      //!  Some Page 1 text
      //! \endverbatim
      //! \}
      5ca7d423
  3. 15 Jan, 2014 2 commits
  4. 14 Jan, 2014 2 commits
  5. 12 Jan, 2014 2 commits
  6. 11 Jan, 2014 2 commits
  7. 09 Jan, 2014 6 commits
  8. 08 Jan, 2014 10 commits
  9. 05 Jan, 2014 2 commits
  10. 04 Jan, 2014 2 commits
  11. 03 Jan, 2014 1 commit
  12. 02 Jan, 2014 5 commits
  13. 01 Jan, 2014 1 commit
  14. 31 Dec, 2013 1 commit
    • albert-github's avatar
      Bug 436885 - c-source and h-source missing for latex · d5d34325
      albert-github authored
      Original title does not cover problem anymore. Problem has evolved to that when clicking on the name for the source file (in LaTeX) a jump to the beginning of the document was made. This problem is fixed with this patch.
      d5d34325