123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522 |
- #!/usr/bin/env python3
- # utilities for generating HTML indices
- # (C) 2003-2022 Markus Neteler and the GRASS Development Team
- # Authors:
- # Markus Neteler
- # Glynn Clements
- # Luca Delucchi
- import os
- import string
- from datetime import datetime
- # TODO: better fix this in include/Make/Html.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.",
- }
- # File template pieces follow
- header1_tmpl = string.Template(
- r"""<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
- <title>${title} - GRASS GIS Manual</title>
- <meta name="Author" content="GRASS Development Team">
- """
- )
- macosx_tmpl = string.Template(
- r"""
- <meta name="AppleTitle" content="GRASS GIS ${grass_version} Help">
- <meta name="AppleIcon" content="GRASS-${grass_mmver}/grass_icon.png">
- <meta name="robots" content="anchors">
- """
- )
- header2_tmpl = string.Template(
- r""" <link rel="stylesheet" href="grassdocs.css" type="text/css">
- </head>
- <body style="width: ${body_width}">
- <div id="container">
- <!-- this file is generated by man/build_html.py -->
- <a href="index.html"><img src="grass_logo.png" alt="GRASS logo"></a>
- <hr class="header">
- <h2>GRASS GIS ${grass_version} Reference Manual</h2>
- <p><b>Geographic Resources Analysis Support System</b>, commonly
- referred to as <a href="https://grass.osgeo.org">GRASS GIS</a>, is a <a
- href="https://en.wikipedia.org/wiki/Geographic_information_system">Geographic
- Information System</a> (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.</p>
- <p>This reference manual details the use of modules distributed with
- Geographic Resources Analysis Support System (GRASS), an open source
- (<a href="https://www.gnu.org/licenses/gpl.html">GNU GPLed</a>), image
- processing and geographic information system (GIS).</p>
- """
- )
- # "
- overview_tmpl = string.Template(
- r"""<!-- the files grass${grass_version_major}.html & helptext.html file live in lib/init/ -->
- <table align="center" border="0" cellspacing="8">
- <tbody>
- <tr>
- <td width="33%" valign="top" class="box"><h3> Quick Introduction</h3>
- <ul>
- <li class="box"><a href="helptext.html">How to start with GRASS GIS</a></li>
- <li class="box"><span>Index of <a href="topics.html">topics</a> and <a href="keywords.html">keywords</a></span></li>
- </ul>
- <p>
- <ul>
- <li class="box"><a href="projectionintro.html">Intro: projections and spatial transformations</a></li>
- </ul>
- <p>
- <ul>
- <li class="box"><span><a href="https://grasswiki.osgeo.org/wiki/Faq">FAQ - Frequently Asked Questions</a> (Wiki)</span></li>
- </ul>
- <p>
- <ul>
- <li class="box"><span><a href="graphical_index.html">Graphical index of functionality</a></span></li>
- </ul>
- </td>
- <td width="33%" valign="top" class="box"><h3> Graphical User Interface</h3>
- <ul>
- <li class="box"><span><a href="wxGUI.html">wxGUI</a></span></li>
- <li class="box"><a href="wxGUI.components.html">wxGUI components</a></li>
- <li class="box"><a href="wxGUI.toolboxes.html">wxGUI toolboxes</a></li>
- </ul>
- <ul>
- <li class="box"><a href="topic_GUI.html">GUI commands</a></li>
- </ul>
- <h3> Display</h3>
- <ul>
- <li class="box"><a href="display.html">Display commands manual</a></li>
- <li class="box"><a href="displaydrivers.html">Display drivers</a></li>
- </ul>
- </td>
- <td width="33%" valign="top" class="box"><h3> General</h3>
- <ul>
- <li class="box"><a href="grass.html">GRASS GIS startup manual</a></li>
- <li class="box"><a href="general.html">General commands manual</a></li>
- </ul>
- <h3> Addons</h3>
- <ul>
- <li class="box"><a href="https://grass.osgeo.org/grass8/manuals/addons/">Addons manual pages</a></li>
- </ul>
- <h3> Programmer's Manual</h3>
- <ul>
- <li class="box"><a href="https://grass.osgeo.org/programming8/">Programmer's Manual</a></li>
- </ul>
- </td>
- </tr>
- <tr>
- <td width="33%" valign="top" class="box"><h3> Raster processing</h3>
- <ul>
- <li class="box"><a href="rasterintro.html">Intro: 2D raster map processing</a></li>
- <li class="box"><a href="raster.html">Raster commands manual</a></li>
- </ul>
- </td>
- <td width="33%" valign="top" class="box"><h3> 3D raster processing</h3>
- <ul>
- <li class="box"><a href="raster3dintro.html">Intro: 3D raster map (voxel) processing</a></li>
- <li class="box"><a href="raster3d.html">3D raster (voxel) commands manual</a></li>
- </ul></td>
- <td width="33%" valign="top" class="box"><h3> Image processing</h3>
- <ul>
- <li class="box"><a href="imageryintro.html">Intro: image processing</a></li>
- <li class="box"><a href="imagery.html">Imagery commands manual</a></li>
- </ul></td>
- </tr>
- <tr>
- <td width="33%" valign="top" class="box"><h3> Vector processing</h3>
- <ul>
- <li class="box"><a href="vectorintro.html">Intro: vector map processing and network analysis</a></li>
- <li class="box"><a href="vector.html">Vector commands manual</a></li>
- <li class="box"><a href="vectorascii.html">GRASS ASCII vector format specification</a></li>
- </ul></td>
- <td width="33%" valign="top" class="box"><h3> Database</h3>
- <ul>
- <li class="box"><a href="databaseintro.html">Intro: database management</a></li>
- <li class="box"><a href="sql.html">SQL support in GRASS GIS</a></li>
- <li class="box"><a href="database.html">Database commands manual</a></li>
- </ul>
- </td>
- <td width="33%" valign="top" class="box"><h3> Temporal processing</h3>
- <ul>
- <li class="box"><a href="temporalintro.html">Intro: temporal data processing</a></li>
- <li class="box"><a href="temporal.html">Temporal commands manual</a></li>
- </ul>
- </td>
- </tr>
- <tr>
- <td width="33%" valign="top" class="box"><h3> Cartography</h3>
- <ul>
- <li class="box"><a href="postscript.html">PostScript commands manual</a></li>
- <li class="box"><a href="g.gui.psmap.html">wxGUI Cartographic Composer</a></li>
- </ul>
- </td>
- <td width="33%" valign="top" class="box"><h3> Miscellaneous & Variables</h3>
- <ul>
- <li class="box"><a href="miscellaneous.html">Miscellaneous commands manual</a></li>
- <li class="box"><a href="variables.html">GRASS variables and environment variables</a></li>
- </ul>
- </td>
- <td width="33%" valign="top" class="box"><h3> Python</h3>
- <ul>
- <li class="box"><a href="https://grass.osgeo.org/grass${grass_version_major}${grass_version_minor}/manuals/libpython/index.html">GRASS GIS Python library documentation</a></li>
- <li class="box"><a href="https://grass.osgeo.org/grass${grass_version_major}${grass_version_minor}/manuals/libpython/pygrass_index.html">PyGRASS documentation</a></li>
- </ul>
- </td>
- </tr>
- </tbody>
- </table>
- """
- )
- # "
- footer_tmpl = string.Template( # TODO: https://trac.osgeo.org/grass/ticket/3987
- # r"""<a name="wxGUI"></a>
- # <h3>wxGUI: Graphical user interface</h3>
- # <table><tbody>
- # <tr><td valign="top"><a href="wxGUI.html">wxGUI Graphical User Interface</a></td> <td>wxGUI Graphical User Interface</td></tr>
- # <tr><td valign="top"><a href="wxGUI.nviz.html">3D visualization suite</a></td> <td>wxGUI.nviz 3D visualization suite</td></tr>
- # </tbody></table>
- # <p>
- # <a name="further"></a>
- # <h3>Further pages</h3>
- # <table><tbody>
- # <tr><td valign="top"><a href="databaseintro.html">database intro</a></td> <td>database intro</td></tr>
- # <tr><td valign="top"><a href="imageryintro.html">imagery intro</a></td> <td>imagery intro</td></tr>
- # <tr><td valign="top"><a href="projectionintro.html">projection intro</a></td> <td>projection intro</td></tr>
- # <tr><td valign="top"><a href="raster3dintro.html">raster3D intro</a></td> <td>raster3D intro</td></tr>
- # <tr><td valign="top"><a href="rasterintro.html">raster intro</a></td> <td>raster intro</td></tr>
- # <tr><td valign="top"><a href="temporalintro.html">temporal intro</a></td> <td>temporal intro</td></tr>
- # <tr><td valign="top"><a href="vectorintro.html">vector intro</a></td> <td>vector intro</td></tr>
- # <tr><td valign="top"> </td> <td> </td></tr>
- # <tr><td valign="top"><a href="sql.html">SQL</a></td> <td>SQL</td></tr>
- # <tr><td valign="top"><a href="variables.html">Variables</a></td> <td>Variables</td></tr>
- # </tbody></table>
- #
- # <p>
- # <hr class="header">
- r"""<hr class="header">
- <p>
- <a href="${index_url}">Main index</a> |
- <a href="topics.html">Topics index</a> |
- <a href="keywords.html">Keywords index</a> |
- <a href="graphical_index.html">Graphical index</a> |
- <a href="full_index.html">Full index</a>
- </p>
- <p>
- © 2003-${year}
- <a href="https://grass.osgeo.org">GRASS Development Team</a>,
- GRASS GIS ${grass_version} Reference Manual
- </p>
- </div>
- </body>
- </html>
- """
- )
- # "
- cmd2_tmpl = string.Template(
- r"""<a name="${cmd}"></a>
- <h3>${cmd_label} commands (${cmd}.*)</h3>
- <table>
- """
- )
- # "
- desc1_tmpl = string.Template(
- r"""<tr><td valign="top"><a href="${cmd}">${basename}</a></td> <td>${desc}</td></tr>
- """
- )
- # "
- toc = r"""
- <div class="toc">
- <h4 class="toc">Table of contents</h4>
- <ul class="toc">
- <li class="toc"><a class="toc" href="full_index.html#d">Display commands (d.*)</a></li>
- <li class="toc"><a class="toc" href="full_index.html#db">Database commands (db.*)</a></li>
- <li class="toc"><a class="toc" href="full_index.html#g">General commands (g.*)</a></li>
- <li class="toc"><a class="toc" href="full_index.html#i">Imagery commands (i.*)</a></li>
- <li class="toc"><a class="toc" href="full_index.html#m">Miscellaneous commands (m.*)</a></li>
- <li class="toc"><a class="toc" href="full_index.html#ps">PostScript commands (ps.*)</a></li>
- <li class="toc"><a class="toc" href="full_index.html#r">Raster commands (r.*)</a></li>
- <li class="toc"><a class="toc" href="full_index.html#r3">3D raster commands (r3.*)</a></li>
- <li class="toc"><a class="toc" href="full_index.html#t">Temporal commands (t.*)</a></li>
- <li class="toc"><a class="toc" href="full_index.html#v">Vector commands (v.*)</a></li>
- <li class="toc"><a class="toc" href="full_index.html#wxGUI">wxGUI Graphical User Interface</a></li>
- <li class="toc"><a class="toc" href="full_index.html#further">Further pages</a></li>
- </ul>
- </div>
- """
- # "
- modclass_intro_tmpl = string.Template(
- r"""Go to <a href="${modclass_lower}intro.html">${modclass} introduction</a> | <a href="topics.html">topics</a> <p>
- """
- )
- # "
- modclass_tmpl = string.Template(
- r"""Go <a href="index.html">back to help overview</a>
- <h3>${modclass} commands:</h3>
- <table>
- """
- )
- # "
- desc2_tmpl = string.Template(
- r"""<tr><td valign="top"><a href="${cmd}">${basename}</a></td> <td>${desc}</td></tr>
- """
- )
- # "
- full_index_header = r"""
- Go <a href="index.html">back to help overview</a>
- """
- # "
- message_tmpl = string.Template(
- r"""Generated HTML docs in ${html_dir}/index.html
- ----------------------------------------------------------------------
- Following modules are missing the 'modulename.html' file in src code:
- """
- )
- # "
- moduletopics_tmpl = string.Template(
- r"""
- <li> <a href="topic_${key}.html">${name}</a></li>
- """
- )
- # "
- headertopics_tmpl = r"""
- <link rel="stylesheet" href="grassdocs.css" type="text/css">
- </head>
- <body style="width: 99%">
- <div id="container">
- <a href="index.html"><img src="grass_logo.png" alt="GRASS logo"></a>
- <hr class="header">
- <h2>Topics</h2>
- <ul>
- """
- # "
- headerkeywords_tmpl = r"""
- <link rel="stylesheet" href="grassdocs.css" type="text/css">
- </head>
- <body style="width: 99%">
- <div id="container">
- <a href="index.html"><img src="grass_logo.png" alt="GRASS logo"></a>
- <hr class="header">
- <h2>Keywords - Index of GRASS GIS modules</h2>
- """
- # "
- headerkey_tmpl = string.Template(
- r"""
- <link rel="stylesheet" href="grassdocs.css" type="text/css">
- </head>
- <body bgcolor="white">
- <div id="container">
- <a href="index.html"><img src="grass_logo.png" alt="GRASS logo"></a>
- <hr class="header">
- <h2>Topic: ${keyword}</h2>
- <table>
- """
- )
- # "
- headerpso_tmpl = r"""
- <link rel="stylesheet" href="grassdocs.css" type="text/css">
- <link rel="stylesheet" href="parser_standard_options.css" type="text/css">
- <script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
- <script type="text/javascript" src="jquery.fixedheadertable.min.js"></script>
- <script type="text/javascript" src="parser_standard_options.js"></script>
- </head>
- <body style="width: 99%">
- <div id="container">
- <a href="index.html"><img src="grass_logo.png" alt="GRASS logo"></a>
- <hr class="header">
- <h2>Parser standard options</h2>
- <ul>
- """
- # "
- ############################################################################
- 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 html_files(cls=None, ignore_gui=True):
- for cmd in sorted(os.listdir(html_dir)):
- if (
- cmd.endswith(".html")
- and (cls in [None, "*"] or cmd.startswith(cls + "."))
- and (cls != "*" or len(cmd.split(".")) >= 3)
- and cmd not in ["full_index.html", "index.html"]
- and cmd not in exclude_mods
- and (ignore_gui and not cmd.startswith("wxGUI.") or not ignore_gui)
- ):
- yield cmd
- def write_html_header(f, title, ismain=False, body_width="99%"):
- f.write(header1_tmpl.substitute(title=title))
- if ismain and macosx:
- f.write(
- macosx_tmpl.substitute(grass_version=grass_version, grass_mmver=grass_mmver)
- )
- f.write(header2_tmpl.substitute(grass_version=grass_version, body_width=body_width))
- def write_html_cmd_overview(f):
- f.write(
- overview_tmpl.substitute(
- grass_version_major=grass_version_major,
- grass_version_minor=grass_version_minor,
- )
- )
- def write_html_footer(f, index_url, year=None):
- if year is None:
- cur_year = default_year
- else:
- cur_year = year
- f.write(
- footer_tmpl.substitute(
- grass_version=grass_version, index_url=index_url, year=cur_year
- )
- )
- 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 "<em>" in line:
- sp = line.split("-", 1)
- if len(sp) > 1:
- return sp[1].strip()
- else:
- return None
- return ""
- def to_title(name):
- """Convert name of command class/family to form suitable for title"""
- if name == "PostScript":
- return name
- return name.capitalize()
- ############################################################################
- arch_dist_dir = os.environ["ARCH_DISTDIR"]
- html_dir = os.path.join(arch_dist_dir, "docs", "html")
- gisbase = os.environ["GISBASE"]
- grass_version = os.getenv("VERSION_NUMBER", "unknown")
- grass_version_major = grass_version.split(".")[0]
- grass_version_minor = grass_version.split(".")[1]
- grass_mmver = ".".join(grass_version.split(".")[0:2])
- macosx = "darwin" in os.environ["ARCH"].lower()
- default_year = os.getenv("VERSION_DATE")
- if not default_year:
- default_year = str(datetime.now().year)
- ############################################################################
|