1. 10 Feb, 2014 1 commit
  2. 09 Feb, 2014 2 commits
  3. 08 Feb, 2014 7 commits
    • Dimitri van Heesch's avatar
      9434ecb1
    • Adrian Negreanu's avatar
      sqlite3: updates · 2b80c416
      Adrian Negreanu authored
      * template and function arguments
      * innernamespaces
      * put sqlite3_stmt and the coresponding query in
        a struct
      * use has(Multi|One)LineInitializer instead of hardcoded value
        when extracting references from initializers
      * sqlite3_clear_bindings in step()
      * getRow in step() should use different sqlite3_ functions
        depending on wether is doing 'INSERT' or 'SELECT'
      
      includes table uses only file IDs
      Signed-off-by: 's avatarAdrian Negreanu <adrian.m.negreanu@intel.com>
      2b80c416
    • albert-github's avatar
      Recognize all HTML4 special character entities · 1bd64ac0
      albert-github authored
      In doxygen a limited number of HTML4 special character entities are recognized, with this patch the full list of HTML4 special character entities (see http://www.w3.org/TR/html4/sgml/entities.html) is supported (as far as they can be represented in the output format).
      
      - doxygen_manual.tex
      - latexgen.cpp
        Added wasysym package to support per thousand sign (perthousand command from textcomp didn't work properly)
        Added option for textcomp package so currency symbol would work properly
      
      - htmlcmds.doc
        Adjusted documentation, listing all entities
      
      - compound.xsd
      - xmlgen.cpp
        Removed in xsd file all references for special HTML4 character entities and placed placeholder so doxygen (in xmlgen.cpp)can automatically add the right element names.
      
      - util.cpp
      - util.h
        Define all entities with their representation for all output formats.
        Define access routines to the different representations
        Mapping (for recognition of the entities) based on running through the list of available entities, after validation of the order of the entities. A few entities contain now besides letters also numbers at the end.
      
      - docparser.h
        Define symbols for all entities as well as a helper struct and enum. The member m_letter is not used anymore and thus removed.
        All existing symbols were renamed so no confusion (i.e. errors when forgetting to rename some symbols) can occur.
        Obsolete references to letter removed, all letters with accents etc. are explicitly defined and not through the generic accent name plus an extra letter.
      
      - docparser.cpp
        Adjust used symbols to their new names.
        Remove references to letter (as used for accents etc.)
        Replace list of explicitly supported entities with call to symbol code access routine.
      
      - docbookvisitor.cpp
      - htmldocvisitor.cpp
      - latexdocvisitor.cpp
      - mandocvisitor.cpp
      - perlmodgen.cpp
      - printdocvisitor.h
      - rtfdocvisitor.cpp
      - textdocvisitor.cpp
      - xmldocvisitor.cpp
        Replace list of explicitly supported entities with call to access routine and use returned value to output.
      1bd64ac0
    • Dimitri van Heesch's avatar
      ae3a22ba
    • Dimitri van Heesch's avatar
      More context changes · 196f3951
      Dimitri van Heesch authored
      196f3951
    • Dimitri van Heesch's avatar
    • Dimitri van Heesch's avatar
      Context enhancement · 92d53a47
      Dimitri van Heesch authored
      92d53a47
  4. 06 Feb, 2014 1 commit
  5. 05 Feb, 2014 1 commit
    • albert-github's avatar
      Better message in case doxygen -u is used · cfd8c241
      albert-github authored
      In case of obsolete or not configured entries in the Doxyfile and the option -u is used a message like:
        Warning: Tag `XML_DTD' at line 1821 of file Doxyfile has become obsolete.
        To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u"
      appears, but the item is removed from the Doxyfile.
      This patch updates the message (and improves layout) to:
        Warning: Tag `XML_DTD' at line 1821 of file `Doxyfile' has become obsolete.
                        This tag has been removed.
      cfd8c241
  6. 04 Feb, 2014 3 commits
  7. 03 Feb, 2014 3 commits
  8. 01 Feb, 2014 2 commits
  9. 26 Jan, 2014 4 commits
  10. 22 Jan, 2014 2 commits
    • Dimitri van Heesch's avatar
      Fixes for missing build dependencies · 62379ff8
      Dimitri van Heesch authored
      62379ff8
    • albert-github's avatar
      Incorrect handling dependencies · bfcfa6fc
      albert-github authored
      The handling of a number of dependencies was incorrect, it was stated that the i(source) cpp file depended on the (included) h file, this should be that the resulting (object) o file depends on the cpp and the h file. See e.g. the layout.cpp dependency
      Some dependencies used ../generated_src/doxygen it is better to use the definition GENERATED_SRC
      bfcfa6fc
  11. 21 Jan, 2014 2 commits
    • Dimitri van Heesch's avatar
      d86520ef
    • albert-github's avatar
      Spitting generated files better from source files · 8885016b
      albert-github authored
      This patch is a patch for the build system so that less (no) generated files are in the source directories and also that the different build (on windows are independent of each others). Also the different sub-projects (e.g. doxygen , doxywizard) don't share any files anymore.
      
      - ./.gitignore
        A number of files are not in the src directory anymore. generated directories are included. rtf and xml directories are there for possible future use.
      
      - ./Doxyfile
        The generated files are not anymore in the src directory so they don't have to be excluded anymore
      
      - ./configure
        Adjustmenst so the generated files are in the different subdirectories
      
      - ./Makefile.in
      - addon/doxmlparser/examples/metrics/metrics.pro.in
      - addon/doxmlparser/src/doxmlparser.pro.in
      - addon/doxmlparser/test/xmlparse.pro.in
      - addon/doxyapp/doxyapp.pro.in
      - addon/doxysearch/doxyindexer.pro.in
      - addon/doxysearch/doxysearch.pro.in
      - addon/doxywizard/Makefile.in
      - addon/doxywizard/doxywizard.pro.in
      - libmd5/libmd5.pro.in
      - qtools/qtools.pro.in
      - src/Makefile.in
      - src/doxygen.pro.in
      - src/libdoxycfg.pro.in
      - src/libdoxycfg.t.in
      - src/libdoxygen.pro.in
      - src/libdoxygen.t.in
        Adjustment to the new directory structure
      
      - addon/doxywizard/expert.cpp
        include file is generated in the generated_src/doxywizard directory, referenced through -I on compile line
      
      - src/lang_cfg.h
        File is now automatically generated
      
      - src/languages.py
        Correction of used path for new structure
      
      - src/settings.py
      - src/version.py
        Place for resulting file handled through an argument, so it is possible to have a separate file for each sub-project
      
      - tmake/lib/win32-g++/generic.t
      - tmake/lib/win32-mingw/generic.t
        The destination path was added twice, in case of a depth of more than 1 level (doxmlparser) this lead to problems
      
      - winbuild/Config.rules
      - winbuild/Gen_head.rules
      - winbuild/Languages.rules
      - winbuild/Lex.rules
      - winbuild/Settings.rules
      - winbuild/Version.rules
        correcting some path of generated files
      
      - winbuild/Doxygen.sln
        Build order dependency could be dropped  as the version.cpp file is now a generated file for doxygen and doxywizard
      
      - winbuild/Doxygen.vcproj
      - winbuild/Doxywizard.vcproj
        Corrected paths to the new structure. Added unistd as an external generated file
      
      - winbuild/unistd.h
        File is now generated
      
      - winbuild/Unistd.rules
      - winbuild/unistd.py
        Generated unistd for doxygen and doxywizard in a consistent way.
      
      - winbuild/doxyindexer.vcproj
      - winbuild/doxysearch.vcproj
      - winbuild/qtools.vcproj
        Corrected paths to the new structure.
      
      - winbuild/runbison.bat
      - winbuild/version.bat
        Not used anymore everything handled through rules.
      8885016b
  12. 20 Jan, 2014 1 commit
  13. 19 Jan, 2014 1 commit
  14. 18 Jan, 2014 1 commit
  15. 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
  16. 15 Jan, 2014 2 commits
  17. 14 Jan, 2014 2 commits
  18. 12 Jan, 2014 4 commits