Skip to content

Commit

Permalink
fixes to sphinxdoc css
Browse files Browse the repository at this point in the history
  • Loading branch information
garlovel committed Nov 29, 2012
1 parent e9a346b commit 68da257
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 14 deletions.
10 changes: 3 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
*/*~
*/*kate-swp

# cloud9 revision tracking
.c9revisions/*

# built folder content (.html, .doc, .pdf)
*build/*
*/*build/*
Expand All @@ -18,13 +21,6 @@
*deploy/*
*/*deploy/*

# static folder content
# *static/*
*/*static/*

# cloud9 revision tracking
.c9revisions/*

# keep directories which include .gitkeep
!.git_keep
!.gitkeep
Expand Down
61 changes: 54 additions & 7 deletions conf.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
#
# Cloud Development documentation build configuration file, created by
# sphinx-quickstart on Fri Nov 9 13:50:37 2012.
# sphinx-quickstart on Thu Nov 29 10:59:32 2012.
#
# This file is execfile()d with the current directory set to its containing dir.
#
Expand All @@ -25,7 +25,7 @@

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

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
Expand All @@ -41,7 +41,7 @@

# General information about the project.
project = u'Cloud Development'
copyright = u'2012, Gerald Lovel'
copyright = u'2012, Gerald Lovel, Julia Lovel'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down Expand Up @@ -141,7 +141,7 @@
#html_domain_indices = True

# If false, no index is generated.
#html_use_index = True
html_use_index = False

# If true, the index is split into individual pages for each letter.
#html_split_index = False
Expand Down Expand Up @@ -184,7 +184,7 @@
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
('index', 'CloudDevelopment.tex', u'Cloud Development Documentation',
u'Gerald Lovel', 'manual'),
u'Gerald Lovel, Julia Lovel', 'manual'),
]

# The name of an image file (relative to this directory) to place at the top of
Expand Down Expand Up @@ -214,7 +214,7 @@
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'clouddevelopment', u'Cloud Development Documentation',
[u'Gerald Lovel'], 1)
[u'Gerald Lovel, Julia Lovel'], 1)
]

# If true, show URL addresses after external links.
Expand All @@ -228,7 +228,7 @@
# dir menu entry, description, category)
texinfo_documents = [
('index', 'CloudDevelopment', u'Cloud Development Documentation',
u'Gerald Lovel', 'CloudDevelopment', 'One line description of project.',
u'Gerald Lovel, Julia Lovel', 'CloudDevelopment', 'One line description of project.',
'Miscellaneous'),
]

Expand All @@ -240,3 +240,50 @@

# How to display URL addresses: 'footnote', 'no', or 'inline'.
#texinfo_show_urls = 'footnote'


# -- Options for Epub output ---------------------------------------------------

# Bibliographic Dublin Core info.
epub_title = u'Cloud Development'
epub_author = u'Gerald Lovel, Julia Lovel'
epub_publisher = u'Gerald Lovel, Julia Lovel'
epub_copyright = u'2012, Gerald Lovel, Julia Lovel'

# The language of the text. It defaults to the language option
# or en if the language is not set.
#epub_language = ''

# The scheme of the identifier. Typical schemes are ISBN or URL.
#epub_scheme = ''

# The unique identifier of the text. This can be a ISBN number
# or the project homepage.
#epub_identifier = ''

# A unique identification for the text.
#epub_uid = ''

# A tuple containing the cover image and cover page html template filenames.
#epub_cover = ()

# HTML files that should be inserted before the pages created by sphinx.
# The format is a list of tuples containing the path and title.
#epub_pre_files = []

# HTML files shat should be inserted after the pages created by sphinx.
# The format is a list of tuples containing the path and title.
#epub_post_files = []

# A list of files that should not be packed into the epub file.
#epub_exclude_files = []

# The depth of the table of contents in toc.ncx.
#epub_tocdepth = 3

# Allow duplicate toc entries.
#epub_tocdup = True


# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {'http://docs.python.org/': None}

0 comments on commit 68da257

Please sign in to comment.