From e8550434390f4c1743bf6c452c404071054033d7 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 25 Dec 2015 12:23:57 +0100 Subject: [PATCH 1/2] added a brief note how to generate docs with Doxygen to the developers intro page --- doc/Developers-Intro.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/doc/Developers-Intro.md b/doc/Developers-Intro.md index 7e5caae2b..67cc932a2 100644 --- a/doc/Developers-Intro.md +++ b/doc/Developers-Intro.md @@ -47,6 +47,19 @@ We can't promise we have the right skills in the group but we'll try. Programming --- +###Code documentation + +If you are interested in having the documentation of the Friendica code outside of the code files, you can use [Doxygen](doxygen.org) to generate it. +The configuration file for Doxygen is located in the ```util``` directory of the project sources. +Run + + $> doxygen util/Doxyfile + +to generate the files which will be located in the ```doc/html``` subdirectory in the Friendica directory. +You can browse these files with any browser. + +If you find missing documentation, don't hestitate to contact us and write it down to enhance the code documentation. + ###Issues Have a look at our [issue tracker](https://github.com/friendica/friendica) on github! From 5f7e0c71b3b59e9b5adfd21e7125d33ad8306c2e Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 25 Dec 2015 12:25:39 +0100 Subject: [PATCH 2/2] missing http --- doc/Developers-Intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Developers-Intro.md b/doc/Developers-Intro.md index 67cc932a2..10bbd5632 100644 --- a/doc/Developers-Intro.md +++ b/doc/Developers-Intro.md @@ -49,7 +49,7 @@ Programming ###Code documentation -If you are interested in having the documentation of the Friendica code outside of the code files, you can use [Doxygen](doxygen.org) to generate it. +If you are interested in having the documentation of the Friendica code outside of the code files, you can use [Doxygen](http://doxygen.org) to generate it. The configuration file for Doxygen is located in the ```util``` directory of the project sources. Run