Skip to content

Commit

Permalink
Merge pull request #33 from stanislaw/develop
Browse files Browse the repository at this point in the history
docs: initial skeleton
  • Loading branch information
stanislaw authored Nov 29, 2019
2 parents d1a7a65 + ec83e0d commit 434d0e0
Show file tree
Hide file tree
Showing 8 changed files with 148 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
_build

7 changes: 7 additions & 0 deletions docs/01-what-is-filecheck.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
What is FileCheck
=================

...



7 changes: 7 additions & 0 deletions docs/02-installation.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Installation
============

...



6 changes: 6 additions & 0 deletions docs/03-tutorial-hello-world.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Tutorial: Hello World
=====================

...


22 changes: 22 additions & 0 deletions docs/04-check-commands.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Check commands
==============

CHECK
-----

...

CHECK-NOT
---------

...

CHECK-NEXT
----------

...

CHECK-EMPTY
-----------

...
21 changes: 21 additions & 0 deletions docs/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Minimal makefile for Sphinx documentation
#

# You can set these variables from the command line, and also
# from the environment for the first two.
SPHINXOPTS ?=
SPHINXBUILD ?= sphinx-build
SOURCEDIR = .
BUILDDIR = _build

# Put it first so that "make" without argument is like "make help".
help:
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

.PHONY: help Makefile

# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

67 changes: 67 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# Configuration file for the Sphinx documentation builder.
#
# This file only contains a selection of the most common options. For a full
# list see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html

# -- Path setup --------------------------------------------------------------

# 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.
#
# import os
# import sys
# sys.path.insert(0, os.path.abspath('.'))

import guzzle_sphinx_theme

# -- Project information -----------------------------------------------------

project = 'FileCheck.py'
copyright = '2019, Stanislav Pankevich'
author = 'Stanislav Pankevich'

# The full version, including alpha/beta/rc tags
release = '0.0.1'


# -- General configuration ---------------------------------------------------

# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
]

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path.
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']


# -- Options for HTML output -------------------------------------------------

# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme_path = guzzle_sphinx_theme.html_theme_path()
extensions.append("guzzle_sphinx_theme")
html_theme = 'guzzle_sphinx_theme'

# html_theme = 'pyramid'

html_theme_options = {
"project_nav_name": "Mull",
}
html_sidebars = { '**': ['globaltoc.html', 'searchbox.html'] }

# 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".
html_static_path = ['_static']
master_doc = 'index'

16 changes: 16 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Welcome to FileCheck.py's documentation!
========================================

.. toctree::
:maxdepth: 2

01-what-is-filecheck
02-installation
03-tutorial-hello-world
04-check-commands

.. Indices and tables
==================
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`

0 comments on commit 434d0e0

Please sign in to comment.