diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2018-03-19 22:38:57 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-19 22:38:57 +0100 |
| commit | f8fbd18a3e297194aabce9b309a2e1bf1950bc58 (patch) | |
| tree | e744aa43beba2dca07190c2387dcd42b0f79e23a /docs/source/conf.py | |
| parent | 999c44086f3e69def4e062a79766a4757b5b7c01 (diff) | |
| parent | 5c6e6f5c5ddac0948bca31406d13265fec286254 (diff) | |
| download | PROJ-f8fbd18a3e297194aabce9b309a2e1bf1950bc58.tar.gz PROJ-f8fbd18a3e297194aabce9b309a2e1bf1950bc58.zip | |
Merge pull request #869 from kbevers/sphinx-man-pages
Auto-generate man pages from Sphinx docs
Diffstat (limited to 'docs/source/conf.py')
| -rw-r--r-- | docs/source/conf.py | 37 |
1 files changed, 35 insertions, 2 deletions
diff --git a/docs/source/conf.py b/docs/source/conf.py index af9d24da..a269a7d9 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -268,8 +268,41 @@ latex_documents = [ # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [ - (master_doc, 'proj4', u'PROJ.4 Documentation', - [author], 1) + ( + 'apps/proj', + 'proj', + u'Cartographic projection filter', + ['Gerald I. Evenden'], + 1 + ), + ( + 'apps/cs2cs', + 'cs2cs', + u'Cartographic coordinate system filter', + ['Frank Warmerdam'], + 1 + ), + ( + 'apps/cct', + 'cct', + u'Coordinate Conversion and Transformation', + ['Thomas Knudsen'], + 1 + ), + ( + 'apps/geod', + 'geod', + u'Geodesic computations', + ['Charles Karney'], + 1 + ), + ( + 'apps/gie', + 'gie', + u'The Geospatial Integrity Investigation Environment', + ['Thomas Knudsen'], + 1 + ), ] # If true, show URL addresses after external links. |
