# All configuration values have a default; values that are commented out # serve to show the default. import sys, os # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. this_dir = os.path.abspath('.') src_dir = os.path.join(this_dir, "..", "..", "src") sys.path.insert(0, src_dir) import format2csv format2csv.main(["", os.path.join(src_dir, "default-log-formats.json"), os.path.join(this_dir, "format-table.csv")]) # -- General configuration ----------------------------------------------------- # If your documentation needs a minimal Sphinx version, state it here. #needs_sphinx = '1.0' # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. extensions = ['sphinx.ext.coverage'] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] # The suffix of source filenames.
# serve to show the default. import sys, os # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. this_dir = os.path.abspath('.') src_dir = os.path.join(this_dir, "..", "..", "src") sys.path.insert(0, src_dir) import format2csv format2csv.main([ "", os.path.join(src_dir, "default-log-formats.json"), os.path.join(this_dir, "format-table.csv") ]) # -- General configuration ----------------------------------------------------- # If your documentation needs a minimal Sphinx version, state it here. #needs_sphinx = '1.0' # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. extensions = ['sphinx.ext.coverage'] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates']
import sys, os # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. this_dir = os.path.abspath('.') src_dir = os.path.join(this_dir, "..", "..", "src") sys.path.insert(0, this_dir) sys.path.insert(0, src_dir) import format2csv format2csv.main([ "", os.path.join(this_dir, "format-table.csv"), os.path.join(src_dir, "formats") ]) import re from pygments.lexer import RegexLexer, words from pygments.token import Punctuation, Whitespace, Text, Comment, Operator, \ Keyword, Name, String, Literal, Number, Generic from sphinx.highlighting import lexers class CustSqliteLexer(RegexLexer): name = 'custsqlite' flags = re.IGNORECASE tokens = {