summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* doc: generate Doxygen's documentation.Adrian Negreanu2015-07-1813-85/+167
| | | | | | | | | | | | | | | | | | * use configure_files to avoid different $ semantics when COMMAND lines are expanded in build files. ($$var vs. \$var) * nmake/gmake no longer needed by cmake, when building doc. * explicitly copy doc files into build directory to make it clear what files each build stage uses. Documentation can be built with: mkdir build/ && cd $_ cmake -Dbuild_doc=1 .. # add -G"NMake Makefiles" for nmake make docs # this builds doxygen first v3: replace file(COPY) with proper generated file tagging. v2: Remove option to build documentation independently from doxygen. tested on linux(gmake) and windows(nmake) [thanks albert]
* Disable creating docs on Travis CI as the tabu package is missing on Ubuntu ↵Dimitri van Heesch2015-07-142-2/+2
| | | | 12.04
* Revert using container-based infra as sudo is needed :-(Dimitri van Heesch2015-07-141-1/+0
|
* use container-based infrastructure on Travis CIDimitri van Heesch2015-07-141-0/+1
|
* Redirect LaTeX output again to prevent filling the Travis CI logDimitri van Heesch2015-07-141-2/+1
|
* Make doxywizard compatible with Qt5Dimitri van Heesch2015-07-1410-186/+303
|
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2015-07-147-6/+6
|\
| * Merge pull request #363 from ejls/masterDimitri van Heesch2015-07-121-6/+6
| |\ | | | | | | Fix spelling in doc/commands.doc (descriptionm)
| | * Fix spelling in doc/commands.doc (descriptionm)Étienne Simon2015-07-071-6/+6
| | |
| * | Merge pull request #364 from albert-github/feature/wizard_libpngDimitri van Heesch2015-07-126-0/+0
| |\ \ | | |/ | |/| libpng warning: iCCP: known incorrect sRGB profile
| | * libpng warning: iCCP: known incorrect sRGB profilealbert-github2015-07-126-0/+0
| | | | | | | | | | | | | | | On a number of systems the warning "libpng warning: iCCP: known incorrect sRGB profile" is thrown due to the fact that newer versions of libpng (1.6.2 ?) has stricter rules about iCCP. Converted all, relevant png files with: convert <file> -strip <file>
| | * Merge remote-tracking branch 'upstream/master'albert-github2015-07-051-2/+2
| | |\ | | |/ | |/|
| | * Revert "Spelling correction for error message with USE_HTAGS usage"albert-github2015-07-051-1/+1
| | | | | | | | | | | | This reverts commit 0d060c455207ab32092e5a7edcd5457bb00f4653.
| | * Spelling correction for error message with USE_HTAGS usagealbert-github2015-07-051-1/+1
| | |
* | | Using tabu package for LaTeX tablesDimitri van Heesch2015-07-1211-571/+145
|/ /
* | Don't show a console when launching doxywizard on Windows.Dimitri van Heesch2015-07-011-2/+2
|/
* Bump version so that the GIT repo represents the version for the "next" releaseDimitri van Heesch2015-06-271-1/+1
|
* Updated changelog for 1.8.10 releaseRelease_1_8_10Dimitri van Heesch2015-06-271-0/+152
|
* Updated installation section of the manualDimitri van Heesch2015-06-273-376/+42
|
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2015-06-261-1/+116
|\
| * Merge pull request #359 from LianYangCn/patch-1Dimitri van Heesch2015-06-251-1/+116
| |\ | | | | | | Update translator_cn.h
| | * Update translator_cn.hLian Yang2015-06-241-1/+116
| |/ | | | | update to 1.8.4
* | Bug 751455 - class scoped enum documentation appearing at group level ↵Dimitri van Heesch2015-06-262-1/+11
|/ | | | instead of class level
* Fixed regression in argument processingDimitri van Heesch2015-06-211-4/+4
|
* Various minor changesDimitri van Heesch2015-06-206-565/+42
| | | | | | - made copying doc and example files a target - fixed bug using temparary in the wizard. - Added faq question about extension mapping
* Restore deleted fileDimitri van Heesch2015-06-201-0/+141
|
* Further cleanups related to the cmake build systemDimitri van Heesch2015-06-1825-10109/+7
|
* Fix for building diagram example conditionallyDimitri van Heesch2015-06-131-1/+5
|
* Added cmake rules to build the examples that are also part of the manualDimitri van Heesch2015-06-1337-127/+115
|
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2015-06-113-4/+8
|\
| * Merge pull request #351 from albert-github/feature/bug_cmake_testsDimitri van Heesch2015-06-103-4/+8
| |\ | | | | | | Problem running tests under Windows
| | * Problem running tests under Windowsalbert-github2015-06-103-4/+8
| |/ | | | | | | | | | | The redirection used in the runtests.py script was based on *nix type systems. Corrected for windows. Windows has a different line ending than *nix, resulting in a problem with diff unless the options -b -w are used. Some tests had as directory for some paths a directory . this has been corrected to $INPUTDIR
* | Bug 744762 - Using TAGFILES prevents symbol extractionDimitri van Heesch2015-06-113-2/+15
|/
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2015-06-092-108/+130
|\
| * Merge pull request #349 from groleo/sqlite-fixesDimitri van Heesch2015-06-091-108/+129
| |\ | | | | | | Sqlite fixes
| | * sqlite3: add schema commentsAdrian Negreanu2015-06-091-107/+127
| | | | | | | | | | | | | | | | | | | | | | | | Comments should help DB users that are unfamiliar to doxygen internals. You can dump the schema with: echo ".schema" | sqlite3 doxygen_sqlite3.db
| | * sqlite3: fix constnessAdrian Negreanu2015-06-091-1/+2
| | | | | | | | | | | | | | | :const was binded only when al->constSpecifier was non-NULL. Fix that by removing the test on al->constSpecifier
| * | Merge pull request #350 from groleo/masterDimitri van Heesch2015-06-091-0/+1
| |\ \ | | |/ | |/| docs,build: specify cmake v3.0 as minimum required version.
| | * docs,build: specify cmake v3.0 as minimum required version.Adrian Negreanu2015-06-091-0/+1
| |/
* | Added cmake build targets for examplesDimitri van Heesch2015-06-085-251/+221
| |
* | Build fixes for windows buildDimitri van Heesch2015-06-072-1/+2
|/
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2015-06-068-281/+278
|\
| * Merge pull request #337 from albert-github/feature/projectname_alignmentDimitri van Heesch2015-06-062-1/+6
| |\ | | | | | | Alignment of project name
| | * Alignment of project namealbert-github2015-05-172-1/+6
| | | | | | | | | | | | With this bug fix it is possible to align the project name to another place than the default place "middle" by means of adjusting the style sheet. Until now it was also possible but one had to create an own html header file as well.
| * | Merge pull request #341 from groleo/INPUT-messageDimitri van Heesch2015-06-061-1/+1
| |\ \ | | | | | | | | specify that doxygen searches files in INPUT tag
| | * | specify that doxygen searches files in INPUT tagAdrian Negreanu2015-05-221-1/+1
| | |/
| * | Merge pull request #342 from groleo/regexp-search.pyDimitri van Heesch2015-06-061-228/+255
| |\ \ | | | | | | | | sqlite3: add regexp searches to search.py
| | * | sqlite3: add regexp searches to search.pyAdrian Negreanu2015-05-221-228/+255
| | |/
| * | Merge pull request #344 from hcw70/masterDimitri van Heesch2015-06-062-7/+8
| |\ \ | | | | | | | | Fix nesting of XML tag "literallayout" for docbook output of enums.
| | * | Escape "@" in names as it is not allowed in XML / Docbook names (comming ↵Hauke Wintjen2015-05-271-0/+1
| | | | | | | | | | | | | | | | from anon namespaces)