1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374
|
#!/usr/bin/env python3
"""
Created on Thu Aug 9 14:04:12 2012
@author: Luca Delucchi
@author: Markus Neteler
@author: Glynn Clements
"""
# utilities for generating REST indices
# utilities for generating HTML indices
# (C) 2003-2025 by Luca Delucchi and the GRASS Development Team
import os
import string
# TODO: better fix this in include/Make/Rest.make, see bug RT #5361
# exclude following list of modules from help index:
exclude_mods = [
"i.find",
"r.watershed.ram",
"r.watershed.seg",
"v.topo.check",
"helptext.html",
]
# these modules don't use G_parser()
desc_override = {
"g.parser": "Provides automated parser, GUI, and help support for GRASS scipts.",
"r.li.daemon": "Support module for r.li landscape index calculations.",
}
############################################################################
header2_tmpl = string.Template(
r"""
==================================================================
GRASS GIS ${grass_version} Reference Manual
==================================================================
.. figure:: grass_logo.png
:align: center
:alt: GRASS logo
GRASS GIS ${grass_version} Reference Manual
--------------------------------------------------------------------
**Geographic Resources Analysis Support System**, commonly
referred to as `GRASS GIS <https://grass.osgeo.org>`_, is a `Geographic
Information System <https://en.wikipedia.org/wiki/Geographic_information_system>`_
(GIS) used for geospatial data management and analysis, image processing,
graphics/maps production, spatial modeling, and visualization. GRASS is
currently used in academic and commercial settings around the world, as
well as by many governmental agencies and environmental consulting companies.
This reference manual details the use of modules distributed with
Geographic Resources Analysis Support System (GRASS), an open source
(`GNU GPLed <https://www.gnu.org/licenses/gpl.html>`_), image
processing and geographic information system (GIS).
"""
)
overview_tmpl = string.Template(
r"""
Quick Introduction
~~~~~~~~~~~~~~~~~~~~
.. toctree::
:maxdepth: 1
How to start with GRASS <helptext.html>
Intro projections and spatial transformations <projectionintro>
Intro 2D raster map processing <rasterintro>
Intro 3D raster map (voxel) processing <raster3dintro>
Intro image processing <imageryintro>
Intro vector map processing and network analysis <vectorintro>
Intro database management <databaseintro>
Intro temporal data processing <temporalintro>
Intro Graphical User Interface <wxguiintro>
Display/Graphical User Interfaces
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. toctree::
:maxdepth: 1
wxGUI wxPython-based GUI frontend <wxGUI>
Display commands manual <display>
Display drivers <displaydrivers>
nviz 3D visualization and animation tool <wxGUI.Nviz>
Raster and 3D raster processing
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. toctree::
:maxdepth: 1
Raster commands manual <raster>
3D raster (voxel) commands manual <raster3D>
Image processing
~~~~~~~~~~~~~~~~~~
.. toctree::
:maxdepth: 1
Imagery commands manual <imagery>
Vector processing
~~~~~~~~~~~~~~~~~~
.. toctree::
:maxdepth: 1
Vector commands manual <vector>
GRASS ASCII vector format specification <vectorascii>
Database
~~~~~~~~~
.. toctree::
:maxdepth: 1
SQL support in GRASS GIS <sql>
Database commands manual <database>
General
~~~~~~~~~
.. toctree::
:maxdepth: 1
GRASS startup manual page <grass8>
General commands manual <general>
Miscellaneous & Variables
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. toctree::
:maxdepth: 1
Miscellaneous commands manual <miscellaneous>
GRASS variables and environment variables <variables>
Temporal processing
~~~~~~~~~~~~~~~~~~~~
.. toctree::
:maxdepth: 1
Temporal commands manual <temporal>
Printing
~~~~~~~~~~~~
.. toctree::
:maxdepth: 1
PostScript commands manual <postscript>
"""
)
# TODO add copyright symbol
footer_tmpl = string.Template(
r"""
--------------
:doc:`Manual main page <index>` \| :doc:`Full Index <full_index>`
2003-2025 `GRASS Development Team <https://grass.osgeo.org>`_, GRASS GIS ${grass_version} Reference Manual
""" # noqa: E501
)
cmd1_tmpl = string.Template(r"""*`$cmd.\* <${cmd}>` *""")
cmd2_tmpl = string.Template(
r"""
${cmd}.* commands:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. toctree::
:maxdepth: 1
"""
)
desc1_tmpl = string.Template(
r""" ${basename} - ${desc} <${basename}>
"""
)
sections = r"""
+-----------------------------+-------------------------------+
|`d.* <full_index.html#d>`_ | `display commands` |
+-----------------------------+-------------------------------+
|`db.* <full_index.html#db>`_ | `database commands` |
+-----------------------------+-------------------------------+
|`g.* <full_index.html#g>`_ | `general commands` |
+-----------------------------+-------------------------------+
|`i.* <full_index.html#i>`_ | `imagery commands` |
+-----------------------------+-------------------------------+
|`m.* <full_index.html#m>`_ | `miscellaneous commands` |
+-----------------------------+-------------------------------+
|`ps.* <full_index.html#ps>`_ | `postscript commands` |
+-----------------------------+-------------------------------+
|`r.* <full_index.html#r>`_ | `raster commands` |
+-----------------------------+-------------------------------+
|`r3.* <full_index.html#r3>`_ | `raster3D commands` |
+-----------------------------+-------------------------------+
|`t.* <full_index.html#t>`_ | `temporal commands` |
+-----------------------------+-------------------------------+
|`v.* <full_index.html#v>`_ | `vector commands` |
+-----------------------------+-------------------------------+
|`nviz <wxGUI.Nviz.html>`_ | `visualization suite` |
+-----------------------------+-------------------------------+
|`wxGUI <wxGUI.html>`_ | `wxPython-based GUI frontend` |
+-----------------------------+-------------------------------+
"""
modclass_intro_tmpl = string.Template(
r"""Go to :doc:`${modclass} introduction <${modclass_lower}intro>`
"""
)
# "
modclass_tmpl = string.Template(
r"""Go :doc:`back to help overview<index>`
**${modclass} commands:**
.. toctree::
:maxdepth: 1
"""
)
# "
desc2_tmpl = string.Template(
r""" ${basename} - ${desc} <${basename}>
"""
)
# "
full_index_header = r"""Go :doc:`back to help overview<index>`
Full command index:
~~~~~~~~~~~~~~~~~~~~
"""
# "
message_tmpl = string.Template(
r"""Generated HTML docs in ${rest_dir}/index.txt
----------------------------------------------------------------------
Following modules are missing the 'modulename.txt' file in src code:
"""
)
def check_for_desc_override(basename):
return desc_override.get(basename)
def read_file(name):
f = open(name, "r")
s = f.read()
f.close()
return s
def write_file(name, contents):
f = open(name, "w")
f.write(contents)
f.close()
def try_mkdir(path):
try:
os.mkdir(path)
except OSError:
pass
def replace_file(name):
temp = name + ".tmp"
if (
os.path.exists(name)
and os.path.exists(temp)
and read_file(name) == read_file(temp)
):
os.remove(temp)
else:
try:
os.remove(name)
except OSError:
pass
os.rename(temp, name)
def copy_file(src, dst):
write_file(dst, read_file(src))
def rest_files(cls=None):
for cmd in sorted(os.listdir(rest_dir)):
if (
cmd.endswith(".txt")
and (cls in [None, "*"] or cmd.startswith(cls + "."))
and (cls != "*" or len(cmd.split(".")) >= 3)
and cmd not in ["full_index.txt", "index.txt"]
and cmd not in exclude_mods
and not cmd.startswith("wxGUI.")
):
yield cmd
def write_rest_header(f, title, ismain=False):
f.write(header2_tmpl.substitute(grass_version=grass_version))
def write_rest_cmd_overview(f):
box_color = "#e1ecd0"
f.write(overview_tmpl.substitute(box_color=box_color))
def write_rest_footer(f, index_url):
f.write(footer_tmpl.substitute(grass_version=grass_version, index_url=index_url))
def get_desc(cmd):
f = open(cmd, "r")
while True:
line = f.readline()
if not line:
return ""
if "NAME" in line:
break
while True:
line = f.readline()
if not line:
return ""
if "SYNOPSIS" in line:
break
if "*" in line:
sp = line.split("-", 1)
if len(sp) > 1:
return sp[1].strip()
else:
return None
return ""
# Define global variables
arch_dist_dir = os.environ["ARCH_DISTDIR"]
rest_dir = os.path.join(arch_dist_dir, "docs", "rest")
gisbase = os.environ["GISBASE"]
ver = read_file(os.path.join(gisbase, "etc", "VERSIONNUMBER"))
try:
grass_version = ver.split()[0].strip()
except IndexError:
grass_version = ver.split().strip()
|