[gnome-builder/wip/chergert/readthedocs] doc: stub out documentation for readthedocs



commit c2ccedd85c118556e373c47dc76896816f49892f
Author: Christian Hergert <chergert redhat com>
Date:   Wed Feb 22 00:04:15 2017 -0800

    doc: stub out documentation for readthedocs
    
    We need to aggressively start filling in information on these topics, but
    this should get us started with something we can parallelize the work on.

 doc/Makefile.am                        |   42 ++++
 doc/api/index.rst                      |   17 ++
 doc/conf.py                            |  339 ++++++++++++++++++++++++++++++++
 doc/credits.rst                        |   13 ++
 doc/index.rst                          |   22 ++
 doc/introduction.rst                   |   10 +
 doc/plugins/building/buildsystem.rst   |    3 +
 doc/plugins/building/index.rst         |   11 +
 doc/plugins/building/pipeline.rst      |    4 +
 doc/plugins/creating.rst               |    3 +
 doc/plugins/devices.rst                |    3 +
 doc/plugins/editor/autocompletion.rst  |    3 +
 doc/plugins/editor/buffers.rst         |    3 +
 doc/plugins/editor/diagnostics.rst     |    3 +
 doc/plugins/editor/filesettings.rst    |    3 +
 doc/plugins/editor/highlighting.rst    |    3 +
 doc/plugins/editor/index.rst           |   17 ++
 doc/plugins/editor/snippets.rst        |    5 +
 doc/plugins/greeter.rst                |    3 +
 doc/plugins/headerbar.rst              |    3 +
 doc/plugins/index.rst                  |   28 +++
 doc/plugins/keybindings.rst            |    3 +
 doc/plugins/langserv.rst               |    3 +
 doc/plugins/preferences.rst            |    3 +
 doc/plugins/processes/index.rst        |   11 +
 doc/plugins/processes/runtimes.rst     |    3 +
 doc/plugins/processes/subprocesses.rst |    3 +
 doc/plugins/running.rst                |    4 +
 doc/plugins/search.rst                 |    3 +
 doc/plugins/subprocesses.rst           |    3 +
 doc/plugins/symbols/gotodef.rst        |    4 +
 doc/plugins/symbols/index.rst          |   11 +
 doc/plugins/symbols/rename.rst         |    3 +
 doc/plugins/symbols/symbols.rst        |    3 +
 doc/plugins/transfers.rst              |    3 +
 doc/plugins/vcs.rst                    |    3 +
 doc/plugins/workbench.rst              |    3 +
 doc/plugins/workers.rst                |    3 +
 doc/workbench.rst                      |    9 +
 39 files changed, 616 insertions(+), 0 deletions(-)
---
diff --git a/doc/Makefile.am b/doc/Makefile.am
index 36da204..78b47b9 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -1,3 +1,45 @@
 SUBDIRS = examples
 
+EXTRA_DIST = \
+       api/index.rst \
+       credits.rst \
+       index.rst \
+       introduction.rst \
+       plugins/building/buildsystem.rst \
+       plugins/building/index.rst \
+       plugins/building/pipeline.rst \
+       plugins/creating.rst \
+       plugins/devices.rst \
+       plugins/editor/autocompletion.rst \
+       plugins/editor/buffers.rst \
+       plugins/editor/diagnostics.rst \
+       plugins/editor/filesettings.rst \
+       plugins/editor/highlighting.rst \
+       plugins/editor/index.rst \
+       plugins/editor/snippets.rst \
+       plugins/greeter.rst \
+       plugins/headerbar.rst \
+       plugins/index.rst \
+       plugins/keybindings.rst \
+       plugins/langserv.rst \
+       plugins/preferences.rst \
+       plugins/processes/index.rst \
+       plugins/processes/runtimes.rst \
+       plugins/processes/subprocesses.rst \
+       plugins/running.rst \
+       plugins/search.rst \
+       plugins/subprocesses.rst \
+       plugins/symbols/gotodef.rst \
+       plugins/symbols/index.rst \
+       plugins/symbols/rename.rst \
+       plugins/symbols/symbols.rst \
+       plugins/transfers.rst \
+       plugins/vcs.rst \
+       plugins/workbench.rst \
+       plugins/workers.rst \
+       workbench.rst \
+       $(NULL)
+
+GITIGNOREFILES = _build
+
 -include $(top_srcdir)/git.mk
diff --git a/doc/api/index.rst b/doc/api/index.rst
new file mode 100644
index 0000000..aa16bf7
--- /dev/null
+++ b/doc/api/index.rst
@@ -0,0 +1,17 @@
+###
+API
+###
+
+.. toctree::
+   :maxdepth: 3
+   :titlesonly:
+
+   context
+   buffers
+   configs
+   devices
+   running
+   subprocess
+   transfers
+   vcs
+   workers
diff --git a/doc/conf.py b/doc/conf.py
new file mode 100644
index 0000000..23f1042
--- /dev/null
+++ b/doc/conf.py
@@ -0,0 +1,339 @@
+#!/usr/bin/env python3
+# -*- coding: utf-8 -*-
+#
+# Builder documentation build configuration file, created by
+# sphinx-quickstart on Tue Feb 21 20:40:48 2017.
+#
+# 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.
+
+# 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('.'))
+
+# -- 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 = []
+
+# 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']
+source_suffix = '.rst'
+
+# The encoding of source files.
+#
+# source_encoding = 'utf-8-sig'
+
+# The master toctree document.
+master_doc = 'index'
+
+# General information about the project.
+project = 'Builder'
+copyright = '2017, Christian Hergert, et al.'
+author = 'Christian Hergert, et al.'
+
+# 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 = '3.24'
+# The full version, including alpha/beta/rc tags.
+release = '3.24'
+
+# 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
+
+# There are two options for replacing |today|: either, you set today to some
+# non-false value, then it is used:
+#
+# today = ''
+#
+# Else, today_fmt is used as the format for a strftime call.
+#
+# today_fmt = '%B %d, %Y'
+
+# 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']
+
+# The reST default role (used for this markup: `text`) to use for all
+# documents.
+#
+# default_role = None
+
+# If true, '()' will be appended to :func: etc. cross-reference text.
+#
+# add_function_parentheses = True
+
+# If true, the current module name will be prepended to all description
+# unit titles (such as .. function::).
+#
+# add_module_names = True
+
+# If true, sectionauthor and moduleauthor directives will be shown in the
+# output. They are ignored by default.
+#
+# show_authors = False
+
+# The name of the Pygments (syntax highlighting) style to use.
+pygments_style = 'sphinx'
+
+# A list of ignored prefixes for module index sorting.
+# modindex_common_prefix = []
+
+# If true, keep warnings as "system message" paragraphs in the built documents.
+# keep_warnings = False
+
+# 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.
+#
+html_theme = 'alabaster'
+
+# 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 = {}
+
+# Add any paths that contain custom themes here, relative to this directory.
+# html_theme_path = []
+
+# The name for this set of Sphinx documents.
+# "<project> v<release> documentation" by default.
+#
+# html_title = 'Builder v3.24'
+
+# A shorter title for the navigation bar.  Default is the same as html_title.
+#
+# html_short_title = None
+
+# 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 (relative to this directory) to use as a favicon of
+# the docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
+# pixels large.
+#
+# html_favicon = None
+
+# 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']
+
+# Add any extra paths that contain custom files (such as robots.txt or
+# .htaccess) here, relative to this directory. These files are copied
+# directly to the root of the documentation.
+#
+# html_extra_path = []
+
+# If not None, a 'Last updated on:' timestamp is inserted at every page
+# bottom, using the given strftime format.
+# The empty string is equivalent to '%b %d, %Y'.
+#
+# html_last_updated_fmt = None
+
+# If true, SmartyPants will be used to convert quotes and dashes to
+# typographically correct entities.
+#
+# html_use_smartypants = True
+
+# Custom sidebar templates, maps document names to template names.
+#
+# html_sidebars = {}
+
+# Additional templates that should be rendered to pages, maps page names to
+# template names.
+#
+# html_additional_pages = {}
+
+# If false, no module index is generated.
+#
+# html_domain_indices = True
+
+# If false, no index is generated.
+#
+# html_use_index = True
+
+# If true, the index is split into individual pages for each letter.
+#
+# html_split_index = False
+
+# If true, links to the reST sources are added to the pages.
+#
+# html_show_sourcelink = True
+
+# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
+#
+# html_show_sphinx = True
+
+# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
+#
+# html_show_copyright = True
+
+# If true, an OpenSearch description file will be output, and all pages will
+# contain a <link> tag referring to it.  The value of this option must be the
+# base URL from which the finished HTML is served.
+#
+# html_use_opensearch = ''
+
+# This is the file name suffix for HTML files (e.g. ".xhtml").
+# html_file_suffix = None
+
+# Language to be used for generating the HTML full-text search index.
+# Sphinx supports the following languages:
+#   'da', 'de', 'en', 'es', 'fi', 'fr', 'h', 'it', 'ja'
+#   'nl', 'no', 'pt', 'ro', 'r', 'sv', 'tr', 'zh'
+#
+# html_search_language = 'en'
+
+# A dictionary with options for the search language support, empty by default.
+# 'ja' uses this config value.
+# 'zh' user can custom change `jieba` dictionary path.
+#
+# html_search_options = {'type': 'default'}
+
+# The name of a javascript file (relative to the configuration directory) that
+# implements a search results scorer. If empty, the default will be used.
+#
+# html_search_scorer = 'scorer.js'
+
+# Output file base name for HTML help builder.
+htmlhelp_basename = 'Builderdoc'
+
+# -- 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, 'Builder.tex', 'Builder Documentation',
+     'Christian Hergert, et al.', 'manual'),
+]
+
+# The name of an image file (relative to this directory) to place at the top of
+# the title page.
+#
+# latex_logo = None
+
+# For "manual" documents, if this is true, then toplevel headings are parts,
+# not chapters.
+#
+# latex_use_parts = False
+
+# If true, show page references after internal links.
+#
+# latex_show_pagerefs = False
+
+# If true, show URL addresses after external links.
+#
+# latex_show_urls = False
+
+# Documents to append as an appendix to all manuals.
+#
+# latex_appendices = []
+
+# It false, will not define \strong, \code,    itleref, \crossref ... but only
+# \sphinxstrong, ..., \sphinxtitleref, ... To help avoid clash with user added
+# packages.
+#
+# latex_keep_old_macro_names = True
+
+# If false, no module index is generated.
+#
+# latex_domain_indices = True
+
+
+# -- 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, 'builder', 'Builder Documentation',
+     [author], 1)
+]
+
+# If true, show URL addresses after external links.
+#
+# man_show_urls = False
+
+
+# -- 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, 'Builder', 'Builder Documentation',
+     author, 'Builder', 'One line description of project.',
+     'Miscellaneous'),
+]
+
+# Documents to append as an appendix to all manuals.
+#
+# texinfo_appendices = []
+
+# If false, no module index is generated.
+#
+# texinfo_domain_indices = True
+
+# How to display URL addresses: 'footnote', 'no', or 'inline'.
+#
+# texinfo_show_urls = 'footnote'
+
+# If true, do not generate a @detailmenu in the "Top" node's menu.
+#
+# texinfo_no_detailmenu = False
diff --git a/doc/credits.rst b/doc/credits.rst
new file mode 100644
index 0000000..fae93fa
--- /dev/null
+++ b/doc/credits.rst
@@ -0,0 +1,13 @@
+#######
+Credits
+#######
+
+Builder was started by Christian Hergert in 2014 improve the quality of
+software for the GNOME ecosystem. Many contributors have helped create
+and improve Builder to the state you find it today.
+
+Some of those contributors can be found below.
+
+.. include:: ../AUTHORS
+   :start-line: 2
+   :literal:
diff --git a/doc/index.rst b/doc/index.rst
new file mode 100644
index 0000000..e4f4cd2
--- /dev/null
+++ b/doc/index.rst
@@ -0,0 +1,22 @@
+########
+Builder
+########
+
+Welcome to the Builder project!
+
+We're excited to have you here!
+The Builder project started out of a class teaching people to program for the GNOME platform.
+In the process, we realized that we need to improve our tooling so we started creating Builder!
+We hope you love using Builder to create great software for GNOME!
+
+Contents
+========
+
+.. toctree::
+   :maxdepth: 4
+   :titlesonly:
+
+   introduction
+   plugins/index
+   api/index
+   credits
diff --git a/doc/introduction.rst b/doc/introduction.rst
new file mode 100644
index 0000000..2e8cad0
--- /dev/null
+++ b/doc/introduction.rst
@@ -0,0 +1,10 @@
+#############################
+Getting to know the interface
+#############################
+
+=============
+The Workbench
+=============
+
+This is some text
+
diff --git a/doc/plugins/building/buildsystem.rst b/doc/plugins/building/buildsystem.rst
new file mode 100644
index 0000000..1a50e9a
--- /dev/null
+++ b/doc/plugins/building/buildsystem.rst
@@ -0,0 +1,3 @@
+###########################
+Implementing a Build System
+###########################
diff --git a/doc/plugins/building/index.rst b/doc/plugins/building/index.rst
new file mode 100644
index 0000000..8f3dedf
--- /dev/null
+++ b/doc/plugins/building/index.rst
@@ -0,0 +1,11 @@
+############################
+Extending the Build Pipeline
+############################
+
+.. toctree::
+   :maxdepth: 3
+   :titlesonly:
+
+   buildsystem
+   pipeline
+
diff --git a/doc/plugins/building/pipeline.rst b/doc/plugins/building/pipeline.rst
new file mode 100644
index 0000000..1dbcdbc
--- /dev/null
+++ b/doc/plugins/building/pipeline.rst
@@ -0,0 +1,4 @@
+############################
+Extending the Build Pipeline
+############################
+
diff --git a/doc/plugins/creating.rst b/doc/plugins/creating.rst
new file mode 100644
index 0000000..1c46939
--- /dev/null
+++ b/doc/plugins/creating.rst
@@ -0,0 +1,3 @@
+##########################
+Creating Your First Plugin
+##########################
diff --git a/doc/plugins/devices.rst b/doc/plugins/devices.rst
new file mode 100644
index 0000000..f284f53
--- /dev/null
+++ b/doc/plugins/devices.rst
@@ -0,0 +1,3 @@
+############################
+Extending the Device Manager
+############################
diff --git a/doc/plugins/editor/autocompletion.rst b/doc/plugins/editor/autocompletion.rst
new file mode 100644
index 0000000..87c7dd5
--- /dev/null
+++ b/doc/plugins/editor/autocompletion.rst
@@ -0,0 +1,3 @@
+##############
+Autocompletion
+##############
diff --git a/doc/plugins/editor/buffers.rst b/doc/plugins/editor/buffers.rst
new file mode 100644
index 0000000..f57c2d8
--- /dev/null
+++ b/doc/plugins/editor/buffers.rst
@@ -0,0 +1,3 @@
+################
+Managing Buffers
+################
diff --git a/doc/plugins/editor/diagnostics.rst b/doc/plugins/editor/diagnostics.rst
new file mode 100644
index 0000000..f29944e
--- /dev/null
+++ b/doc/plugins/editor/diagnostics.rst
@@ -0,0 +1,3 @@
+#######################
+Diagnostics and Fix-Its
+#######################
diff --git a/doc/plugins/editor/filesettings.rst b/doc/plugins/editor/filesettings.rst
new file mode 100644
index 0000000..a733857
--- /dev/null
+++ b/doc/plugins/editor/filesettings.rst
@@ -0,0 +1,3 @@
+#############################
+File Settings and Indentation
+#############################
diff --git a/doc/plugins/editor/highlighting.rst b/doc/plugins/editor/highlighting.rst
new file mode 100644
index 0000000..6756bf1
--- /dev/null
+++ b/doc/plugins/editor/highlighting.rst
@@ -0,0 +1,3 @@
+###################
+Syntax Highlighting
+###################
diff --git a/doc/plugins/editor/index.rst b/doc/plugins/editor/index.rst
new file mode 100644
index 0000000..89ed8b5
--- /dev/null
+++ b/doc/plugins/editor/index.rst
@@ -0,0 +1,17 @@
+####################
+Extending the Editor
+####################
+
+.. toctree::
+   :maxdepth: 1
+   :titlesonly:
+
+   buffers
+   highlighting
+   diagnostics
+   autocompletion
+   snippets
+   filesettings
+   gotodef
+   symbols
+   rename
diff --git a/doc/plugins/editor/snippets.rst b/doc/plugins/editor/snippets.rst
new file mode 100644
index 0000000..6045d29
--- /dev/null
+++ b/doc/plugins/editor/snippets.rst
@@ -0,0 +1,5 @@
+########
+Snippets
+########
+
+
diff --git a/doc/plugins/greeter.rst b/doc/plugins/greeter.rst
new file mode 100644
index 0000000..5d2924c
--- /dev/null
+++ b/doc/plugins/greeter.rst
@@ -0,0 +1,3 @@
+#####################
+Extending the Greeter
+#####################
diff --git a/doc/plugins/headerbar.rst b/doc/plugins/headerbar.rst
new file mode 100644
index 0000000..0b7480b
--- /dev/null
+++ b/doc/plugins/headerbar.rst
@@ -0,0 +1,3 @@
+########################
+Extending the Header Bar
+########################
diff --git a/doc/plugins/index.rst b/doc/plugins/index.rst
new file mode 100644
index 0000000..9c61813
--- /dev/null
+++ b/doc/plugins/index.rst
@@ -0,0 +1,28 @@
+#######
+Plugins
+#######
+
+.. toctree::
+   :maxdepth: 3
+   :titlesonly:
+
+   creating
+   workbench
+   headerbar
+   greeter
+   editor/index
+   symbols/index
+   building/index
+   processes/index
+   devices
+   runtimes
+   running
+   symbols
+   keybindings
+   langserv
+   search
+   preferences
+   transfers
+   workers
+   vcs
+
diff --git a/doc/plugins/keybindings.rst b/doc/plugins/keybindings.rst
new file mode 100644
index 0000000..4e116e7
--- /dev/null
+++ b/doc/plugins/keybindings.rst
@@ -0,0 +1,3 @@
+#######################
+Registering Keybindings
+#######################
diff --git a/doc/plugins/langserv.rst b/doc/plugins/langserv.rst
new file mode 100644
index 0000000..ed99dbe
--- /dev/null
+++ b/doc/plugins/langserv.rst
@@ -0,0 +1,3 @@
+############################
+Integrating Language Servers
+############################
diff --git a/doc/plugins/preferences.rst b/doc/plugins/preferences.rst
new file mode 100644
index 0000000..27b79bc
--- /dev/null
+++ b/doc/plugins/preferences.rst
@@ -0,0 +1,3 @@
+###################################
+Registering Application Preferences
+###################################
diff --git a/doc/plugins/processes/index.rst b/doc/plugins/processes/index.rst
new file mode 100644
index 0000000..8425614
--- /dev/null
+++ b/doc/plugins/processes/index.rst
@@ -0,0 +1,11 @@
+########################
+Processes and Containers
+########################
+
+.. toctree::
+   :maxdepth: 3
+   :titlesonly:
+
+   runtimes
+   subprocesses
+
diff --git a/doc/plugins/processes/runtimes.rst b/doc/plugins/processes/runtimes.rst
new file mode 100644
index 0000000..d138fa1
--- /dev/null
+++ b/doc/plugins/processes/runtimes.rst
@@ -0,0 +1,3 @@
+###################################
+Application Runtimes and Containers
+###################################
diff --git a/doc/plugins/processes/subprocesses.rst b/doc/plugins/processes/subprocesses.rst
new file mode 100644
index 0000000..0976d0c
--- /dev/null
+++ b/doc/plugins/processes/subprocesses.rst
@@ -0,0 +1,3 @@
+#################################
+Subprocesses and Psuedo Terminals
+#################################
diff --git a/doc/plugins/running.rst b/doc/plugins/running.rst
new file mode 100644
index 0000000..ceb4913
--- /dev/null
+++ b/doc/plugins/running.rst
@@ -0,0 +1,4 @@
+#########################
+Extending the Run Manager
+#########################
+
diff --git a/doc/plugins/search.rst b/doc/plugins/search.rst
new file mode 100644
index 0000000..5b592e8
--- /dev/null
+++ b/doc/plugins/search.rst
@@ -0,0 +1,3 @@
+########################
+Extending Project Search
+########################
diff --git a/doc/plugins/subprocesses.rst b/doc/plugins/subprocesses.rst
new file mode 100644
index 0000000..33e4e0e
--- /dev/null
+++ b/doc/plugins/subprocesses.rst
@@ -0,0 +1,3 @@
+######################
+Executing Subprocesses
+######################
diff --git a/doc/plugins/symbols/gotodef.rst b/doc/plugins/symbols/gotodef.rst
new file mode 100644
index 0000000..56ace8f
--- /dev/null
+++ b/doc/plugins/symbols/gotodef.rst
@@ -0,0 +1,4 @@
+################
+Go To Definition
+################
+
diff --git a/doc/plugins/symbols/index.rst b/doc/plugins/symbols/index.rst
new file mode 100644
index 0000000..37e9666
--- /dev/null
+++ b/doc/plugins/symbols/index.rst
@@ -0,0 +1,11 @@
+#############################
+Symbols and Semantic Analysis
+#############################
+
+.. toctree::
+   :maxdepth: 3
+   :titlesonly:
+
+   gotodef
+   symbols
+   rename
diff --git a/doc/plugins/symbols/rename.rst b/doc/plugins/symbols/rename.rst
new file mode 100644
index 0000000..7727006
--- /dev/null
+++ b/doc/plugins/symbols/rename.rst
@@ -0,0 +1,3 @@
+################
+Renaming Symbols
+################
diff --git a/doc/plugins/symbols/symbols.rst b/doc/plugins/symbols/symbols.rst
new file mode 100644
index 0000000..93bd5a5
--- /dev/null
+++ b/doc/plugins/symbols/symbols.rst
@@ -0,0 +1,3 @@
+#########################
+Extending the Symbol Tree
+#########################
diff --git a/doc/plugins/transfers.rst b/doc/plugins/transfers.rst
new file mode 100644
index 0000000..986e477
--- /dev/null
+++ b/doc/plugins/transfers.rst
@@ -0,0 +1,3 @@
+#################################
+Creating and Performing Transfers
+#################################
diff --git a/doc/plugins/vcs.rst b/doc/plugins/vcs.rst
new file mode 100644
index 0000000..d0550a3
--- /dev/null
+++ b/doc/plugins/vcs.rst
@@ -0,0 +1,3 @@
+###########################
+Integrating Version Control
+###########################
diff --git a/doc/plugins/workbench.rst b/doc/plugins/workbench.rst
new file mode 100644
index 0000000..5222786
--- /dev/null
+++ b/doc/plugins/workbench.rst
@@ -0,0 +1,3 @@
+#######################
+Extending the Workbench
+#######################
diff --git a/doc/plugins/workers.rst b/doc/plugins/workers.rst
new file mode 100644
index 0000000..3358fb7
--- /dev/null
+++ b/doc/plugins/workers.rst
@@ -0,0 +1,3 @@
+#########################
+Managing Worker Processes
+#########################
diff --git a/doc/workbench.rst b/doc/workbench.rst
new file mode 100644
index 0000000..ac0f2d9
--- /dev/null
+++ b/doc/workbench.rst
@@ -0,0 +1,9 @@
+#########
+Workbench
+#########
+
+Header Bar
+==========
+
+Perspectives
+============


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]