geometry/doc
2019-11-06 17:32:00 +01:00
..
concept [doc] Add C++11 std::array point adaptor docs 2018-01-27 10:52:17 +01:00
doxy Add headers for touches, covered_by, intersects, overlaps to doc Doxyfile. 2019-04-04 16:49:50 +02:00
generated [doc] Moved status files to reference/status instead of generated. 2014-05-07 13:13:56 +02:00
html Merge branch 'develop' into feature/buffer_point_geographic 2019-02-23 14:01:18 +01:00
index [doc][index] Remove images of queries using higher-level geometries. 2017-08-01 01:41:16 +02:00
other Merge branch 'develop' into bg-prepare 2018-11-07 13:26:01 +01:00
quickbook Merge branch 'develop' into bg-prepare 2016-08-10 10:06:50 +02:00
reference Merge branch 'develop' into feature/line_interpolate_point_2 2019-02-27 15:13:37 +02:00
src Merge branch 'develop' into feature/line_interpolate_point_2 2019-02-27 15:13:37 +02:00
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 Tinko Bartels as contributor. 2019-11-06 16:58:58 +01:00
guidelines.qbk [geometry] Update rule for template declaration with long template parameter list 2013-11-18 15:18:50 +00:00
imports.qbk Merge branch 'develop' into feature/line_interpolate_point_2 2019-02-27 15:13:37 +02:00
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 Merge branch 'develop' into feature/line_interpolate_point_2 2019-02-27 15:13:37 +02:00
matrix.qbk geometry docs: sections rearranged, titles unified. 2013-05-13 00:39:43 +00:00
quickref.xml [doc] Fix reference matrix (strategies). 2019-07-30 20:39:17 +02:00
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 Merge branch 'develop' into feature/line_interpolate_point_2 2019-02-27 15:13:37 +02:00
release_notes.qbk [doc] Add 1.72.0 release notes. 2019-11-06 17:28:49 +01: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)