Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removing unused CSS and normalizing indents in docs/conf.py. #1043

Merged
merged 1 commit into from
Aug 19, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion docs/_static/css/github.min.css

This file was deleted.

4 changes: 2 additions & 2 deletions docs/_templates/layout.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% extends "basic/layout.html" %}
{% extends "!layout.html" %}
{% set script_files = ['_static/js/vendor/modernizr-2.6.2.min.js'] %}
{% set css_files = css_files + ['_static/css/normalize.css', '_static/css/github.min.css'] %}
{% set css_files = css_files + ['_static/css/normalize.css'] %}

{%- block doctype -%}
<!DOCTYPE html>
Expand Down
20 changes: 10 additions & 10 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@

# Add any paths that contain templates here, relative to this directory.
if ON_READ_THE_DOCS or LOCAL_READ_THE_DOCS:
templates_path = []
templates_path = []
else:
templates_path = ['_templates']
templates_path = ['_templates']

# The suffix of source filenames.
source_suffix = '.rst'
Expand Down Expand Up @@ -112,10 +112,10 @@
# a list of builtin themes.

if LOCAL_READ_THE_DOCS:
html_theme = 'sphinx_rtd_theme'
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
html_theme = 'sphinx_rtd_theme'
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
elif not ON_READ_THE_DOCS:
html_style = 'css/main.css'
html_style = 'css/main.css'

# 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
Expand Down Expand Up @@ -213,8 +213,8 @@
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
('index', 'gcloud.tex', u'gCloud Documentation',
author, 'manual'),
('index', 'gcloud.tex', u'gCloud Documentation',
author, 'manual'),
]

# The name of an image file (relative to this directory) to place at the top of
Expand Down Expand Up @@ -257,9 +257,9 @@
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
('index', 'gcloud', u'gCloud Documentation',
author, 'gcloud', 'Python API for Google Cloud.',
'Miscellaneous'),
('index', 'gcloud', u'gCloud Documentation',
author, 'gcloud', 'Python API for Google Cloud.',
'Miscellaneous'),
]

# Documents to append as an appendix to all manuals.
Expand Down
1 change: 0 additions & 1 deletion scripts/versions.html.template
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
<link rel="stylesheet" href="_landing-page-static/css/docs-main.css" type="text/css" />
<link rel="stylesheet" href="_landing-page-static/pygments.css" type="text/css" />
<link rel="stylesheet" href="_landing-page-static/css/normalize.css" type="text/css" />
<link rel="stylesheet" href="_landing-page-static/css/github.min.css" type="text/css" />

<script type="text/javascript" src="_landing-page-static/js/vendor/modernizr-2.6.2.min.js"></script>
<link rel="shortcut icon" href="_landing-page-static/favicon.ico"/>
Expand Down