diff options
author | Klaus Weidenbach <Klaus.Weidenbach@gmx.net> | 2019-01-12 18:33:18 +0100 |
---|---|---|
committer | Klaus Weidenbach <Klaus.Weidenbach@gmx.net> | 2019-01-24 22:03:15 +0100 |
commit | 4cc98874a06c2b243d39d1d5e0ea4a44518d50e9 (patch) | |
tree | aa81605a2e034d7032db38ebbf3608f06e1a9d8c /util/Doxyfile | |
parent | 1d314834a4d2c1a31c6eedf9889aec2ba07cc47e (diff) | |
download | volse-hubzilla-4cc98874a06c2b243d39d1d5e0ea4a44518d50e9.tar.gz volse-hubzilla-4cc98874a06c2b243d39d1d5e0ea4a44518d50e9.tar.bz2 volse-hubzilla-4cc98874a06c2b243d39d1d5e0ea4a44518d50e9.zip |
Publish doxygen API documentation at gitlab pages.
Create the API documentation with Doxygen and
publish it through gitlab-ci as a Gitlab page at:
https://hubzilla.frama.io/core
This should only happen when master gets updated.
Update Doxyfile configuration. Correct image usage.
Replace RedMatrix with Hubzilla icon.
Diffstat (limited to 'util/Doxyfile')
-rw-r--r-- | util/Doxyfile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/util/Doxyfile b/util/Doxyfile index 7be774a81..14464df81 100644 --- a/util/Doxyfile +++ b/util/Doxyfile @@ -1,7 +1,8 @@ INPUT = README.md index.php boot.php include/ install/ util/ view/ Zotlabs/ RECURSIVE = YES PROJECT_NAME = "The Hubzilla" -PROJECT_LOGO = images/rm-64.png +PROJECT_LOGO = images/hz-64.png +IMAGE_PATH = images/ EXCLUDE = .htconfig.php library/ doc/ store/ vendor/ .git/ util/zotsh/easywebdav/ util/generate-hooks-index/ EXCLUDE_PATTERNS = *smarty3* *strings.php *.out *test* OUTPUT_DIRECTORY = doc @@ -33,5 +34,6 @@ INTERACTIVE_SVG = YES CLASS_GRAPH = YES COLLABORATION_GRAPH = NO # fix @var (https://bugzilla.gnome.org/show_bug.cgi?id=626105) +# Should be obsolete with doxygen >= 1.8.15 #INPUT_FILTER = "sed -e 's/@var\s/@see /'" INPUT_FILTER = "php util/Doxygen_phpvarfilter.php" |