summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #647 from jwuttke/masterDimitri van Heesch2018-02-101-1/+1
|\ | | | | correct typo in comment
| * correct typo in commentJoachim Wuttke (h)2018-02-031-1/+1
| |
* | Merge pull request #650 from albert-github/feature/bug_792727Dimitri van Heesch2018-02-101-0/+1
|\ \ | | | | | | Bug 792727 - unescaped double quote in searchdata.js breaks search box functionality
| * | Bug 792727 - unescaped double quote in searchdata.js breaks search box ↵albert-github2018-02-041-0/+1
| |/ | | | | | | | | | | functionality Escaped the doubele quote.
* | Merge pull request #649 from albert-github/feature/docu_reference_relationDimitri van Heesch2018-02-101-1/+1
|\ \ | | | | | | Small clarification for REFERENCED_BY_RELATION
| * | Small clarification for REFERENCED_BY_RELATIONalbert-github2018-02-031-1/+1
| |/ | | | | | | Based on stack overflow question "Track C variable doxygen" (https://stackoverflow.com/questions/48586670/track-c-variable-doxygen)
* | Merge pull request #648 from albert-github/feature/bug_792415Dimitri van Heesch2018-02-101-0/+4
|\ \ | | | | | | Bug 792415 - Blank rows on class page when using external tag file
| * | Bug 792415 - Blank rows on class page when using external tag filealbert-github2018-02-031-0/+4
| |/ | | | | | | | | Regression on: Bug 743367 - Duplicate attribute (target="_top" target="_top") generated in .SVG files Added missing closing >.
* | Merge pull request #646 from albert-github/feature/bug_792935Dimitri van Heesch2018-02-101-1/+6
|\ \ | | | | | | Bug 792935 - error: Could not open file .../doc/html/functions_ .html for writing
| * | Bug 792935 - error: Could not open file .../doc/html/functions_ .html for ↵albert-github2018-02-021-1/+6
| |/ | | | | | | | | | | writing Labels are used internally in pages but also for filenames and not all file systems can cope with all characters, so only ASCII printable characters are left untouched.
* | Merge pull request #645 from albert-github/feature/bug_638606Dimitri van Heesch2018-02-101-0/+16
|\ \ | | | | | | Bug 638606 - Support for C# nullable type
| * | Bug 638606 - Support for C# nullable typealbert-github2018-02-011-0/+16
| |/ | | | | | | Added, basic, support for C# nullable types.
* | Merge pull request #644 from albert-github/feature/bug_793052Dimitri van Heesch2018-02-101-1/+8
|\ \ | | | | | | Bug 793052 - C#: Incorrect parsing of property definitions containing "//" symbols in one line with "}
| * | Bug 793052 - C#: Incorrect parsing of property definitions containing "//" ↵albert-github2018-01-311-1/+8
| |/ | | | | | | | | | | symbols in one line with "} The handling of comment signs inside a string for property definitions has been corrected, by defining parsing rules for these cases so that not the default comment handler will be used (i.e. remove the part behind the comment sign).
* | Misc. typosluz.paz2018-02-064-5/+5
|/
* Merge pull request #636 from ahoogol/masterDimitri van Heesch2018-01-061-3/+6
|\ | | | | -Fixed: some of remained work to support RTL in HTML output
| * + Added: support RTL for DocXRefItem in htmlahoogol2017-09-021-3/+6
| | | | | | | | - Removed: support RTL form Return section in html, for consistency with parameter sections
* | More typosluz.paz2018-01-041-1/+1
| |
* | Bug 783134 - LaTeX output for \tparam block fails to compile when it ↵Dimitri van Heesch2017-12-315-12/+33
| | | | | | | | contains a \code block
* | Merge branch 'feature/bug_783134' of ↵Dimitri van Heesch2017-12-314-1/+16
|\ \ | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_783134
| * | Bug 783134 - LaTeX output for \tparam block fails to compile when it ↵albert-github2017-05-284-1/+16
| | | | | | | | | | | | | | | | | | | | | contains a \code block General problem regarding having a code / verbatim section inside a table. Besides handling of the $ some other characters need special handling as well as the \n.
* | | Merge pull request #635 from mosra/xml-no-warn-on-enum-in-anon-nsDimitri van Heesch2017-12-301-3/+3
|\ \ \ | | | | | | | | XML output: avoid warnings with scoped enum values in anonymous namespaces
| * | | XML output: avoid warnings with scoped enum values in anonymous namespaces.Vladimír Vondruš2017-12-291-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When a C++11 `enum class` was present in an anonymous namespace (usually in *.cpp files), the XML output was emitting warnings similar to the following: Internal inconsistency: member False does not belong to any container! And the XML output was rendering bogus IDs for enum values starting with `dummy_`, such as: dummy_1a96ab6574751fdf6a53ceec8a3896c45daf8320b26d30ab433c5a54546d21f414c The fix is to call memberOutputFileBase() on the enumeration itself and not on the enum value, that way it provides correct file base that corresponds to file base of the enumeration. There's also a new test that checks this. Note: this assumes that enum values belong to the same compound as enums themselves. In my experience that was always the case and there's no broken test after this change, so I hope I didn't break anything.
* | | | Merge branch 'master' of https://github.com/ahoogol/doxygen into ahoogol-masterDimitri van Heesch2017-12-2813-120/+342
|\ \ \ \ | |/ / / |/| | / | | |/ | |/|
| * | Fixed one remained compile error in clangahoogol2017-06-281-1/+1
| | |
| * | Fixed compile errors in clang and gccahoogol2017-06-283-28/+28
| | |
| * | Added support for RTL(right to left) languages like Arabic and Persian in ↵ahoogol2017-06-2513-120/+342
| | | | | | | | | | | | HTML output
* | | Add variadic arguments support to @link and @ref, aka '...' arguments, fixesDimitri van Heesch2017-12-282-1/+37
| | |
* | | Merge branch 'variadic' of https://github.com/mehw/doxygen into mehw-variadicDimitri van Heesch2017-12-273-7/+34
|\ \ \
| * | | Fix/New: add variadic function args '...' support to @refMatthew White2017-08-032-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * src/doctokenizer.l: add VARARGS, aka variadic function args '...' * src/util.cpp (linkToText): call substitute() with skip_seq set to 3 to keep each '...' sequence of chars unchanged For instance, the command '@ref fun(int,...)' now is able to parse each '...' sequence of chars correctly to reference fun(int,...). Before this patch, the '...' part was skipped. Also, linkToText() is fixed to not substitute '...' with '::::::' in the text representation of the link.
| * | | Fix/New: add variadic function args '...' support to @linkMatthew White2017-08-032-5/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * src/util.h (substitute): add skip_seq to function declaration * src/util.cpp (substitute): implement skip_seq to keep unchanged a given number of sequential chars otherwise targeted for substitution * src/util.cpp (resolveRef): call substitute() with skip_seq set to 3 to keep each '...' sequence of chars unchanged For instance, the command {@link fun(int,...)} now keeps each '...' sequence of chars unchanged to reference fun(int,...). Before this patch, each '.' was substituted into '::' by resolveRef() calling substitute(), producing a weird reference to fun(int,::::::).
* | | | Bug 788209 - C++: False warning message when inheriting class from tag fileDimitri van Heesch2017-12-251-0/+1
| | | |
* | | | Bug 790320 - C++ parameter from lambda not recognizedDimitri van Heesch2017-12-251-0/+8
| | | |
* | | | Bug 729237 - (UnFriendlyTemplate) Spurious warning when documenting friend ↵Dimitri van Heesch2017-12-251-0/+1
| | | | | | | | | | | | | | | | template
* | | | Bug 790788 - Doxygen not showing the public, non-static member functionDimitri van Heesch2017-12-251-0/+5
| | | |
* | | | Merge pull request #602 from albert-github/feature/bug_newline_aliasDimitri van Heesch2017-12-242-1/+14
|\ \ \ \ | | | | | | | | | | Physical newlines in ALIASES configuration tags.
| * | | | Physical newlines in ALIASES configuration tags.albert-github2017-09-092-1/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some commands read input till the end of the physical line. In case these commands are used in an alias the rest of the line is lost / gives not the required results. This patch creates the possibility to have physical newlines in ALIASES. See also: https://stackoverflow.com/questions/46050789/doxygen-alias-with-multiple-commands
* | | | | Merge pull request #628 from powARman/fix-vhdlparserDimitri van Heesch2017-12-241-0/+1
|\ \ \ \ \ | | | | | | | | | | | | Fix not initialized pointer when parser is starting on a new file.
| * | | | | Fix not initialized pointer when parser is starting on a new file.Andreas Regel2017-12-041-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The pointer oldEntry holds the last value of VhdlParser::current and is compared to detect comment blocks that belong together. This could lead to false positives when a new file is parsed and the new entry in VhdlParser::current has by change the same pointer value as the old entry. Doxygen warning like "warning: Found unknown command `\brief'" are the consequence that leads to concatenated brief and detailed description in the resulting output.
* | | | | | Merge pull request #631 from ksztyber/excl_patter_ciDimitri van Heesch2017-12-241-7/+11
|\ \ \ \ \ \ | | | | | | | | | | | | | | Allow case insensitive file pattern matching based on CASE_SENSE_NAMES
| * | | | | | Allow case insensitive file pattern matching based on CASE_SENSE_NAMESKonrad Sztyber2017-12-101-7/+11
| |/ / / / /
* | | | | | Merge pull request #630 from faheel/change-right-arrowDimitri van Heesch2017-12-241-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | Changed the navtree collapsed list icon to be more symmetric to the expanded list icon
| * | | | | | Change navtree collapsed list iconFaheel Ahmad2017-12-071-1/+1
| |/ / / / /
* | | | | | Merge pull request #629 from mosra/xml-copy-imagesDimitri van Heesch2017-12-241-9/+14
|\ \ \ \ \ \ | | | | | | | | | | | | | | Properly copy images for the XML output
| * | | | | | Properly copy images for the XML output.Vladimír Vondruš2017-12-071-9/+14
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use the exact same mechanism that is used for the HTML/LaTeX/... output, which is findAndCopyImage() in docparser.cpp, because that one works, unlike the method here. Not sure why that function doesn't handle XML as well. Also not sure how to integrate this into the automated tests.
* | | | | | Merge pull request #627 from mosra/xml-strong-typed-enumsDimitri van Heesch2017-12-241-0/+14
|\ \ \ \ \ \ | | | | | | | | | | | | | | Full support for strong and typed enums in the XML output
| * | | | | | Provide information about enum type "strongness" in the XML output.Vladimír Vondruš2017-11-291-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There's a new boolean `strong` attribute on the `<memberdef>` element that defines whether the enum is a classic or a strong one. Tests were updated to verify both cases.
| * | | | | | Expose underlying enum type in the XML output.Vladimír Vondruš2017-11-291-0/+7
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The <type> element (used for function return type and variable type) is now reused also for underlying enum type. C++03-style enum types that don't have the underlying type specified have the <type> tag as well, but empty to indicate that the underlying type is unspecified. Added a new test case for this.
* | | | | | Merge pull request #626 from mosra/xml-using-templatesDimitri van Heesch2017-12-241-4/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | Provide template parameters also for type aliases in the XML output
| * | | | | | Provide template parameters also for type aliases in the XML output.Vladimír Vondruš2017-11-281-4/+1
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Until now, probably due to C++03 assumptions, typedefs and type aliases skipped printing of the template parameter specifications to the XML output. That's now fixed, so the following type alias will properly contain <templateparamlist> in the XML output: template<class T> using Vec = std::vector<T>; Added also a test case that verifies this.