geometry/doc
2018-09-15 00:42:35 +02:00
..
concept [doc] Add C++11 std::array point adaptor docs 2018-01-27 10:52:17 +01:00
doxy [doc][similarity] Updated documentation for the similarity algorithms 2018-08-12 05:07:16 +05:30
generated [doc] Moved status files to reference/status instead of generated. 2014-05-07 13:13:56 +02:00
html [doc][srs][strategies] Add/improve docs of geographic strategies and spheroid. 2018-03-02 23:22:36 +01:00
index [doc][index] Remove images of queries using higher-level geometries. 2017-08-01 01:41:16 +02:00
other [doc][util][formulas][test] Add copyright information in updated files 2018-06-18 18:05:11 +05:00
quickbook Rename concepts in documentation samples 2016-07-27 16:31:13 +02:00
reference [doc][similarity] Updated documentation for the similarity algorithms 2018-08-12 05:07:16 +05:30
src Updated 2018-08-16 02:10:38 +05:30
about_documentation.qbk [doc] Change names after renaming surveyor to cartesian (area strategy). 2017-12-22 23:24:02 +01:00
acknowledgments.qbk Boost.Geometry processed patch https://svn.boost.org/trac/boost/ticket/6166 for missing transformation 2012-02-24 15:36:23 +00:00
compiling.qbk [doc] Update the list of supported compilers. 2015-03-24 12:58:27 +01:00
copyright_note_policy.txt Added copyright note policy 2011-03-26 23:08:11 +00:00
design_rationale.qbk [doc] Document Axis Order convention 2017-10-11 20:23:47 +01:00
example_adapting_a_legacy_geometry_object_model.qbk [doc] Fix legacy types adaptation example. 2017-01-09 18:12:35 +01:00
geometry.qbk [doc] Add Yaghyavardhan Singh Khangarot (GSoC2018) to contributors. 2018-09-15 00:42:35 +02:00
guidelines.qbk [geometry] Update rule for template declaration with long template parameter list 2013-11-18 15:18:50 +00:00
imports.qbk [doc][similarity] Updated documentation for the similarity algorithms 2018-08-12 05:07:16 +05:30
introduction.qbk [doc] GitHub repository info added to the Introduction 2014-01-23 02:31:53 +01:00
Jamfile.v2 Add, and update, documentation build targets. 2016-10-07 23:07:34 -05:00
make_qbk.py [doc][similarity] Added Strategies in the documentation 2018-08-14 16:36:29 +05:30
matrix.qbk geometry docs: sections rearranged, titles unified. 2013-05-13 00:39:43 +00:00
quickref.xml [doc][similarity] Updated documentation for the similarity algorithms for different distance strategies 2018-08-13 17:07:52 +05:30
quickstart.qbk Boost.Geometry update copyright -> 2012 2012-01-09 21:56:08 +00:00
readme.txt [readme] Remove RapidXML deployment from doc build requirements 2017-03-23 21:39:56 +01:00
reference.qbk [doc][similarity] Updated documentation for the similarity algorithms 2018-08-12 05:07:16 +05:30
release_notes.qbk [doc] Update 1.68 release notes. 2018-07-30 21:43:55 +02:00
robustness.qbk [geometry] Add TODO item EGC 2013-10-26 00:33:40 +00:00

===========================================================================
 Copyright (c) 2007-2011 Barend Gehrels, Amsterdam, the Netherlands.
 Copyright (c) 2008-2011 Bruno Lalande, Paris, France.
 Copyright (c) 2009-2011 Mateusz Loskot, London, UK

 Use, modification and distribution is subject to the Boost Software License,
 Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
 http://www.boost.org/LICENSE_1_0.txt)
============================================================================

Procedure to create documentation using Doxygen, QuickBook and doxygen_xml2qbk

Note that doxygen_xml2qbk is a tool currently (slightly) specific to Boost.Geometry,
and that it translates from Doxygen-XML output to Quickbook (without xslt)

1) install Doxygen
2) install QuickBook using http://www.boost.org/doc/libs/release/doc/html/quickbook/install.html
3) run b2 in src/docutils/tools/doxygen_xml2qbk to build doxygen_xml2qbk executable
4) put binary in your PATH, e.g. in /usr/local/bin/doxygen_xml2qbk
5) execute python file "make_qbk.py" (calling doxygen, doxygen_xml2qbk, bjam)

Folders in this folder:
concept: manually written documentation QBK files, on concept
doxy: folders and files needed for doxygen input and output
html: contains generated HTML files
other: older documentation (subject to update or deletion)
ref: manually written documentation QBK files, included from .hpp files
reference: generated documentation QBK files (by doxygen_xml2qbk)
	[note: this book cannot be called "generated" or something like that,
	because it is used in the final URL and we want to have "reference" in it]
src: examples used in documentation and tools (doxygen_xml2qbk)

Per new algorithm (e.g. foo), one should add:
1) in file boost/geometry/algorithms/foo.hpp, include a "\ingroup foo" in the doxygen comments
2) in file doc/doxy/doxygen_input/groups/groups.hpp, define the group "foo"
3) in file doc/make_qbk.py, include the algorithm "foo"
4) in file doc/reference.qbk, include the foo.qbk ([include generated/foo.qbk])
5) in file doc/quickref.xml, include a section on foo conform other sections
6) in file doc/src/docutils/tools/support_status/support_status.cpp include the algorithm (3 places) (optionally)
7) in file doc/reference/foo.qbk (to be created), include the support status and write other text, and include examples (optionally)
8) in file doc/imports.qbk, include the example foo.cpp (if any)
9) create file doc/src/examples/algorithm/foo.cpp (optional)