2015-09-22 01:42:15 -06:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# -*- coding: utf-8 -*-
|
2016-06-14 21:22:04 -06:00
|
|
|
"""
|
|
|
|
DFHack documentation build configuration file
|
|
|
|
|
|
|
|
This file is execfile()d with the current directory set to its
|
|
|
|
containing dir.
|
|
|
|
|
|
|
|
Note that not all possible configuration values are present in this
|
|
|
|
autogenerated file.
|
|
|
|
|
|
|
|
All configuration values have a default; values that are commented out
|
|
|
|
serve to show the default.
|
|
|
|
"""
|
|
|
|
|
|
|
|
# pylint:disable=redefined-builtin
|
2015-09-22 01:42:15 -06:00
|
|
|
|
2015-09-23 21:33:56 -06:00
|
|
|
import fnmatch
|
2015-10-18 20:57:33 -06:00
|
|
|
from io import open
|
2016-06-14 21:22:04 -06:00
|
|
|
from itertools import starmap
|
2015-09-22 01:42:15 -06:00
|
|
|
import os
|
2016-06-14 21:22:04 -06:00
|
|
|
import shlex # pylint:disable=unused-import
|
2015-10-02 19:34:08 -06:00
|
|
|
import sys
|
2015-10-23 05:25:04 -06:00
|
|
|
|
|
|
|
|
2015-11-04 06:23:45 -07:00
|
|
|
# -- Autodoc for DFhack scripts -------------------------------------------
|
|
|
|
|
2015-10-23 05:25:04 -06:00
|
|
|
def doc_dir(dirname, files):
|
|
|
|
"""Yield (command, includepath) for each script in the directory."""
|
2015-10-28 21:26:37 -06:00
|
|
|
sdir = os.path.relpath(dirname, '.').replace('\\', '/').replace('../', '')
|
2015-10-23 05:25:04 -06:00
|
|
|
for f in files:
|
2015-11-04 06:23:45 -07:00
|
|
|
if f[-3:] not in ('lua', '.rb'):
|
2015-10-23 05:25:04 -06:00
|
|
|
continue
|
|
|
|
with open(os.path.join(dirname, f), 'r', encoding='utf8') as fstream:
|
|
|
|
text = [l.rstrip() for l in fstream.readlines() if l.strip()]
|
2016-06-14 21:22:04 -06:00
|
|
|
# Some legacy lua files use the ruby tokens (in 3rdparty scripts)
|
|
|
|
tokens = ('=begin', '=end')
|
|
|
|
if f[-4:] == '.lua' and any('[====[' in line for line in text):
|
|
|
|
tokens = ('[====[', ']====]')
|
2015-10-23 05:25:04 -06:00
|
|
|
command = None
|
|
|
|
for line in text:
|
2015-11-04 06:23:45 -07:00
|
|
|
if command and line == len(line) * '=':
|
2016-06-14 21:22:04 -06:00
|
|
|
yield command, sdir + '/' + f, tokens[0], tokens[1]
|
2015-10-23 05:25:04 -06:00
|
|
|
break
|
|
|
|
command = line
|
|
|
|
|
|
|
|
|
|
|
|
def document_scripts():
|
|
|
|
"""Autodoc for files with the magic script documentation marker strings.
|
|
|
|
|
2016-06-14 21:22:04 -06:00
|
|
|
Returns a dict of script-kinds to lists of .rst include directives.
|
2015-10-23 05:25:04 -06:00
|
|
|
"""
|
|
|
|
# First, we collect the commands and paths to include in our docs
|
|
|
|
scripts = []
|
2016-06-29 17:38:15 -06:00
|
|
|
for root, _, files in os.walk('scripts'):
|
2015-10-23 05:25:04 -06:00
|
|
|
scripts.extend(doc_dir(root, files))
|
|
|
|
# Next we split by type and create include directives sorted by command
|
|
|
|
kinds = {'base': [], 'devel': [], 'fix': [], 'gui': [], 'modtools': []}
|
|
|
|
for s in scripts:
|
|
|
|
k_fname = s[0].split('/', 1)
|
|
|
|
if len(k_fname) == 1:
|
|
|
|
kinds['base'].append(s)
|
|
|
|
else:
|
2016-06-14 21:22:04 -06:00
|
|
|
kinds[k_fname[0]].append(s)
|
|
|
|
template = '.. _{}:\n\n.. include:: /{}\n' +\
|
|
|
|
' :start-after: {}\n :end-before: {}\n'
|
|
|
|
return {key: '\n\n'.join(starmap(template.format, sorted(value)))
|
|
|
|
for key, value in kinds.items()}
|
|
|
|
|
|
|
|
def write_script_docs():
|
|
|
|
"""
|
|
|
|
Creates a file for eack kind of script (base/devel/fix/gui/modtools)
|
|
|
|
with all the ".. include::" directives to pull out docs between the
|
|
|
|
magic strings.
|
|
|
|
"""
|
|
|
|
kinds = document_scripts()
|
2015-10-28 21:26:37 -06:00
|
|
|
if not os.path.isdir('docs/_auto'):
|
|
|
|
os.mkdir('docs/_auto')
|
2015-10-23 05:25:04 -06:00
|
|
|
head = {
|
|
|
|
'base': 'Basic Scripts',
|
|
|
|
'devel': 'Development Scripts',
|
|
|
|
'fix': 'Bugfixing Scripts',
|
|
|
|
'gui': 'GUI Scripts',
|
|
|
|
'modtools': 'Scripts for Modders'}
|
|
|
|
for k in head:
|
2015-10-24 00:41:21 -06:00
|
|
|
title = ('.. _{k}:\n\n{l}\n{t}\n{l}\n\n'
|
2016-06-29 17:38:15 -06:00
|
|
|
'.. include:: /scripts/{a}about.txt\n\n'
|
2015-10-24 00:41:21 -06:00
|
|
|
'.. contents::\n\n').format(
|
2016-06-14 21:22:04 -06:00
|
|
|
k=k, t=head[k],
|
|
|
|
l=len(head[k])*'#',
|
|
|
|
a=('' if k == 'base' else k + '/')
|
|
|
|
)
|
2015-10-23 05:25:04 -06:00
|
|
|
mode = 'w' if sys.version_info.major > 2 else 'wb'
|
2015-10-28 21:26:37 -06:00
|
|
|
with open('docs/_auto/{}.rst'.format(k), mode) as outfile:
|
2015-10-23 05:25:04 -06:00
|
|
|
outfile.write(title)
|
2016-06-14 21:22:04 -06:00
|
|
|
outfile.write(kinds[k])
|
2015-10-23 05:25:04 -06:00
|
|
|
|
|
|
|
|
|
|
|
# Actually call the docs generator
|
2016-06-14 21:22:04 -06:00
|
|
|
write_script_docs()
|
2015-09-22 01:42:15 -06:00
|
|
|
|
2015-09-27 00:45:11 -06:00
|
|
|
|
2015-09-22 01:42:15 -06:00
|
|
|
# -- General configuration ------------------------------------------------
|
|
|
|
|
|
|
|
# If your documentation needs a minimal Sphinx version, state it here.
|
2015-11-07 16:46:26 -07:00
|
|
|
needs_sphinx = '1.3'
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# Add any Sphinx extension module names here, as strings. They can be
|
|
|
|
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
|
|
|
# ones.
|
2015-10-23 08:37:39 -06:00
|
|
|
extensions = ['sphinx.ext.extlinks']
|
|
|
|
|
|
|
|
# This config value must be a dictionary of external sites, mapping unique
|
|
|
|
# short alias names to a base URL and a prefix.
|
|
|
|
# See http://sphinx-doc.org/ext/extlinks.html
|
|
|
|
extlinks = {
|
|
|
|
'wiki': ('http://dwarffortresswiki.org/%s', ''),
|
|
|
|
'forums': ('http://www.bay12forums.com/smf/index.php?topic=%s',
|
|
|
|
'Bay12 forums thread '),
|
|
|
|
'dffd': ('http://dffd.bay12games.com/file.php?id=%s', 'DFFD file '),
|
|
|
|
'bug': ('http://www.bay12games.com/dwarves/mantisbt/view.php?id=%s',
|
2015-11-06 17:35:44 -07:00
|
|
|
'Bug '),
|
|
|
|
'issue': ('https://github.com/DFHack/dfhack/issues/%s', 'Issue '),
|
2016-03-18 06:30:04 -06:00
|
|
|
'commit': ('https://github.com/DFHack/dfhack/commit/%s', 'Commit '),
|
2015-10-23 08:37:39 -06:00
|
|
|
}
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# Add any paths that contain templates here, relative to this directory.
|
2015-09-22 02:42:15 -06:00
|
|
|
templates_path = []
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# The suffix(es) of source filenames.
|
|
|
|
# You can specify multiple suffix as a list of string:
|
2015-11-07 16:46:26 -07:00
|
|
|
source_suffix = ['.rst']
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# The encoding of source files.
|
|
|
|
#source_encoding = 'utf-8-sig'
|
|
|
|
|
|
|
|
# The master toctree document.
|
2015-11-07 17:37:09 -07:00
|
|
|
master_doc = 'index'
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# General information about the project.
|
|
|
|
project = 'DFHack'
|
|
|
|
copyright = '2015, The DFHack Team'
|
|
|
|
author = 'The DFHack Team'
|
|
|
|
|
|
|
|
# The version info for the project you're documenting, acts as replacement for
|
|
|
|
# |version| and |release|, also used in various other places throughout the
|
|
|
|
# built documents.
|
2015-09-23 21:33:56 -06:00
|
|
|
|
2015-10-24 05:19:52 -06:00
|
|
|
def get_version():
|
2015-10-22 19:34:54 -06:00
|
|
|
"""Return the DFHack version string, from CMakeLists.txt"""
|
2016-06-14 21:22:04 -06:00
|
|
|
version = release = '' #pylint:disable=redefined-outer-name
|
2015-10-22 19:34:54 -06:00
|
|
|
try:
|
2015-11-04 06:23:45 -07:00
|
|
|
with open('CMakeLists.txt') as f:
|
2015-10-22 19:34:54 -06:00
|
|
|
for s in f.readlines():
|
|
|
|
if fnmatch.fnmatch(s.upper(), 'SET(DF_VERSION "?.??.??")\n'):
|
|
|
|
version = s.upper().replace('SET(DF_VERSION "', '')
|
|
|
|
elif fnmatch.fnmatch(s.upper(), 'SET(DFHACK_RELEASE "r*")\n'):
|
|
|
|
release = s.upper().replace('SET(DFHACK_RELEASE "', '').lower()
|
|
|
|
return (version + '-' + release).replace('")\n', '')
|
|
|
|
except IOError:
|
2015-10-24 05:19:52 -06:00
|
|
|
return 'unknown'
|
2015-09-23 21:33:56 -06:00
|
|
|
|
2015-09-22 01:42:15 -06:00
|
|
|
# The short X.Y version.
|
|
|
|
# The full version, including alpha/beta/rc tags.
|
2015-10-24 05:19:52 -06:00
|
|
|
version = release = get_version()
|
2015-10-22 19:34:54 -06:00
|
|
|
|
2015-09-22 01:42:15 -06:00
|
|
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
|
|
|
# for a list of supported languages.
|
|
|
|
# This is also used if you do content translation via gettext catalogs.
|
|
|
|
# Usually you set "language" from the command line for these cases.
|
|
|
|
language = None
|
|
|
|
|
2016-06-14 21:22:04 -06:00
|
|
|
# strftime format for |today| and 'Last updated on:' timestamp at page bottom
|
|
|
|
today_fmt = html_last_updated_fmt = '%Y-%m-%d'
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# List of patterns, relative to source directory, that match files and
|
|
|
|
# directories to ignore when looking for source files.
|
2015-11-07 17:37:09 -07:00
|
|
|
exclude_patterns = [
|
|
|
|
'README.md',
|
|
|
|
'docs/html*',
|
|
|
|
'depends/*',
|
|
|
|
'build*',
|
|
|
|
]
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# The reST default role (used for this markup: `text`) to use for all
|
|
|
|
# documents.
|
2015-10-22 19:34:54 -06:00
|
|
|
default_role = 'ref'
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# The name of the Pygments (syntax highlighting) style to use.
|
|
|
|
pygments_style = 'sphinx'
|
|
|
|
|
|
|
|
# If true, `todo` and `todoList` produce output, else they produce nothing.
|
|
|
|
todo_include_todos = False
|
|
|
|
|
|
|
|
|
|
|
|
# -- Options for HTML output ----------------------------------------------
|
|
|
|
|
|
|
|
# The theme to use for HTML and HTML Help pages. See the documentation for
|
|
|
|
# a list of builtin themes.
|
2015-10-22 19:34:54 -06:00
|
|
|
html_theme = 'alabaster'
|
2015-10-22 19:57:18 -06:00
|
|
|
html_style = 'dfhack.css'
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# Theme options are theme-specific and customize the look and feel of a theme
|
|
|
|
# further. For a list of options available for each theme, see the
|
|
|
|
# documentation.
|
2015-10-22 19:34:54 -06:00
|
|
|
html_theme_options = {
|
|
|
|
#'logo': 'logo.png',
|
|
|
|
'github_user': 'DFHack',
|
|
|
|
'github_repo': 'dfhack',
|
|
|
|
'github_button': False,
|
|
|
|
'travis_button': False,
|
|
|
|
}
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# The name for this set of Sphinx documents. If None, it defaults to
|
|
|
|
# "<project> v<release> documentation".
|
|
|
|
#html_title = None
|
|
|
|
|
|
|
|
# A shorter title for the navigation bar. Default is the same as html_title.
|
2015-10-22 19:34:54 -06:00
|
|
|
html_short_title = 'DFHack Docs'
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# The name of an image file (relative to this directory) to place at the top
|
|
|
|
# of the sidebar.
|
|
|
|
#html_logo = None
|
|
|
|
|
|
|
|
# The name of an image file (within the static path) to use as favicon of the
|
|
|
|
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
|
|
|
|
# pixels large.
|
2015-10-28 21:26:37 -06:00
|
|
|
html_favicon = 'docs/styles/dfhack-icon.ico'
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# Add any paths that contain custom static files (such as style sheets) here,
|
|
|
|
# relative to this directory. They are copied after the builtin static files,
|
|
|
|
# so a file named "default.css" will overwrite the builtin "default.css".
|
2015-10-28 21:26:37 -06:00
|
|
|
html_static_path = ['docs/styles']
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# Custom sidebar templates, maps document names to template names.
|
2015-10-22 19:34:54 -06:00
|
|
|
html_sidebars = {
|
|
|
|
'**': [
|
|
|
|
'about.html',
|
|
|
|
'relations.html',
|
|
|
|
'searchbox.html',
|
2015-11-06 17:35:44 -07:00
|
|
|
'localtoc.html',
|
2015-10-22 19:34:54 -06:00
|
|
|
]
|
|
|
|
}
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# If false, no module index is generated.
|
2015-10-22 19:34:54 -06:00
|
|
|
html_domain_indices = False
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# If false, no index is generated.
|
2015-10-22 19:34:54 -06:00
|
|
|
html_use_index = False
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# -- Options for LaTeX output ---------------------------------------------
|
|
|
|
|
|
|
|
# Grouping the document tree into LaTeX files. List of tuples
|
|
|
|
# (source start file, target name, title,
|
|
|
|
# author, documentclass [howto, manual, or own class]).
|
|
|
|
latex_documents = [
|
2016-06-14 21:22:04 -06:00
|
|
|
(master_doc, 'DFHack.tex', 'DFHack Documentation',
|
|
|
|
'The DFHack Team', 'manual'),
|
2015-09-22 01:42:15 -06:00
|
|
|
]
|