-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
34 changed files
with
510 additions
and
207 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
version: 2 | ||
jobs: | ||
build_docs: | ||
docker: | ||
- image: circleci/python:3.6-stretch | ||
steps: | ||
# Get our data and merge with upstream | ||
- run: sudo apt-get update | ||
- checkout | ||
# Python env | ||
- run: echo "export PATH=~/.local/bin:$PATH" >> $BASH_ENV | ||
|
||
- restore_cache: | ||
keys: | ||
- cache-pip | ||
- run: pip install --user -r docs/doc-requirements.txt | ||
- save_cache: | ||
key: cache-pip | ||
paths: | ||
- ~/.cache/pip | ||
|
||
# Build the docs | ||
- run: | ||
name: Build docs to store | ||
command: | | ||
cd docs | ||
make html | ||
- store_artifacts: | ||
path: docs/_build/html/ | ||
destination: html | ||
|
||
|
||
workflows: | ||
version: 2 | ||
default: | ||
jobs: | ||
- build_docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,6 @@ data8assets/ | |
.autopull_list | ||
summer/ | ||
test-repo/ | ||
|
||
.ipynb_checkpoints | ||
docs/_build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Minimal makefile for Sphinx documentation | ||
# | ||
|
||
# You can set these variables from the command line. | ||
SPHINXOPTS = | ||
SPHINXBUILD = sphinx-build | ||
SPHINXPROJ = Binder | ||
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{%- extends "alabaster_jupyterhub/layout.html" %} | ||
|
||
<!-- Adding CSS to make the link generator wider --> | ||
{% block extrahead %} | ||
{% if pagename == 'link' %} | ||
<style> | ||
div.body { | ||
max-width: 1000px !important; | ||
padding-right: 0px !important; | ||
} | ||
</style> | ||
{% endif %} | ||
{{ super() }} | ||
{% endblock %} | ||
|
||
<!-- Don't include the "on this page" sidebar for the link generator --> | ||
{% block sidebar1 %} | ||
{% if pagename != 'link' %} | ||
{%- include "rightsidebar.html" %} | ||
{% endif %} | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,178 @@ | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
|
||
import os | ||
import requests | ||
from recommonmark.transform import AutoStructify | ||
|
||
github_doc_root = "https://github.com/rtfd/recommonmark/tree/master/doc/" | ||
|
||
|
||
def setup(app): | ||
app.add_config_value( | ||
"recommonmark_config", | ||
{ | ||
"url_resolver": lambda url: github_doc_root + url, | ||
"auto_toc_tree_section": "Contents", | ||
}, | ||
True, | ||
) | ||
app.add_transform(AutoStructify) | ||
app.add_stylesheet("custom.css") | ||
app.add_stylesheet("link_gen/vendor/bootstrap-4.1.3/css/bootstrap.min.css") | ||
app.add_javascript("link_gen/vendor/jquery-3.3.1.slim.min.js") | ||
app.add_javascript("link_gen/link.js") | ||
app.add_javascript("link_gen/vendor/bootstrap-4.1.3/js/bootstrap.bundle.min.js") | ||
|
||
|
||
# -- 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_copybutton"] | ||
|
||
# Add any paths that contain templates here, relative to this directory. | ||
templates_path = ["_templates"] | ||
|
||
# The suffix(es) of source filenames. | ||
# You can specify multiple suffix as a list of string: | ||
|
||
source_suffix = [".rst", ".md"] | ||
|
||
from recommonmark.parser import CommonMarkParser | ||
|
||
source_parsers = {".md": CommonMarkParser} | ||
|
||
|
||
# The master toctree document. | ||
master_doc = "index" | ||
|
||
# General information about the project. | ||
project = "nbgitpuller" | ||
copyright = "2017, The nbgitpuller Team" | ||
author = "The nbgitpuller 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. | ||
# | ||
# The short X.Y version. | ||
version = "0.1b" | ||
# The full version, including alpha/beta/rc tags. | ||
release = "0.1b" | ||
|
||
# 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 | ||
|
||
# List of patterns, relative to source directory, that match files and | ||
# directories to ignore when looking for source files. | ||
# This patterns also effect to html_static_path and html_extra_path | ||
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] | ||
|
||
html_sidebars = {"**": ["globaltoc.html", "relations.html", "searchbox.html"]} | ||
|
||
# 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. | ||
# | ||
import alabaster_jupyterhub | ||
|
||
html_theme = "alabaster_jupyterhub" | ||
html_theme_path = [alabaster_jupyterhub.get_html_theme_path()] | ||
|
||
# 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. | ||
# | ||
# html_theme_options = {} | ||
|
||
html_context = { | ||
"github_user": "jupyterhub", | ||
"github_repo": "nbgitpuller", | ||
"github_version": "master", | ||
"doc_path": "doc", | ||
"source_suffix": source_suffix, | ||
} | ||
|
||
# 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"] | ||
|
||
|
||
# -- Options for HTMLHelp output ------------------------------------------ | ||
|
||
# Output file base name for HTML help builder. | ||
htmlhelp_basename = "nbgitpullerdoc" | ||
|
||
|
||
# -- Options for LaTeX output --------------------------------------------- | ||
|
||
latex_elements = { | ||
# The paper size ('letterpaper' or 'a4paper'). | ||
# | ||
# 'papersize': 'letterpaper', | ||
# The font size ('10pt', '11pt' or '12pt'). | ||
# | ||
# 'pointsize': '10pt', | ||
# Additional stuff for the LaTeX preamble. | ||
# | ||
# 'preamble': '', | ||
# Latex figure (float) alignment | ||
# | ||
# 'figure_align': 'htbp', | ||
} | ||
|
||
# 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 = [ | ||
( | ||
master_doc, | ||
"nbgitpuller.tex", | ||
"nbgitpuller Documentation", | ||
"The nbgitpuller Team", | ||
"manual", | ||
) | ||
] | ||
|
||
|
||
# -- Options for manual page output --------------------------------------- | ||
|
||
# One entry per manual page. List of tuples | ||
# (source start file, name, description, authors, manual section). | ||
man_pages = [(master_doc, "nbgitpuller", "nbgitpuller Documentation", [author], 1)] | ||
|
||
|
||
# -- Options for Texinfo output ------------------------------------------- | ||
|
||
# Grouping the document tree into Texinfo files. List of tuples | ||
# (source start file, target name, title, author, | ||
# dir menu entry, description, category) | ||
texinfo_documents = [ | ||
( | ||
master_doc, | ||
"nbgitpuller", | ||
"nbgitpuller Documentation", | ||
author, | ||
"nbgitpuller", | ||
"One line description of project.", | ||
"Miscellaneous", | ||
) | ||
] |
Oops, something went wrong.