I've been working on smart pointer updates for log4cxx, and as part of that effort I would also like to improve the documentation to make sure that it is clear how to use the library. However, this brings up a question as to how we want to create the website. Currently, the main site is generated using maven, and the API documentation is created with Doxygen. I would like to move away from maven for the site generation, as it means that the build procedure for the site is weird(utilizing maven and ant).
There are three main options that I see: 1. Continue to utilize maven. This has the advantage of making the site consistent with the other log4___ sites. The disadvantage is that it is(currently) weird to update the site and has issues with releases. 2. Move the entire site to doxygen. This would mean that both the main site and the API documentation would be generated at the same time(which would be convenient), but is generally a lot uglier than the maven site. 3. Put the documentation in the log4cxx-site repo and utilize jekyll for the site(see: https://cwiki.apache.org/confluence/display/INFRA/git+-+.asf.yaml+features#git.asf.yamlfeatures-JekyllCMS) This has the advantage of allowing custom skins(like the read-the-docs theme:https://github.com/rundocs/jekyll-rtd-theme), but it means that the API documentation would still have to be updated manually and comitted separately, and that the site content would live in a separate repository(as far as I can tell the site can't use a subdirectory from the main repository). Thoughts? -Robert Middleton