-
Notifications
You must be signed in to change notification settings - Fork 20
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
21 changed files
with
190 additions
and
42 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -23,7 +23,7 @@ | |
# -- Project information ----------------------------------------------------- | ||
|
||
project = u'pancloud' | ||
copyright = u'2018, Palo Alto Networks' | ||
copyright = u'2019, Palo Alto Networks' | ||
author = u'[email protected]' | ||
|
||
# The short X.Y version | ||
|
@@ -46,7 +46,8 @@ | |
'sphinx.ext.coverage', | ||
'sphinx.ext.viewcode', | ||
'sphinxcontrib.napoleon', | ||
'sphinx.ext.intersphinx' | ||
'sphinx.ext.intersphinx', | ||
'pallets_sphinx_themes', | ||
] | ||
|
||
intersphinx_mapping = { | ||
|
@@ -89,7 +90,7 @@ def setup(app): | |
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] | ||
|
||
# The name of the Pygments (syntax highlighting) style to use. | ||
pygments_style = 'flask_theme_support.FlaskyStyle' | ||
# pygments_style = 'flask_theme_support.FlaskyStyle' | ||
|
||
|
||
# -- Options for HTML output ------------------------------------------------- | ||
|
@@ -98,20 +99,21 @@ def setup(app): | |
# a list of builtin themes. | ||
# | ||
# html_theme = 'alabaster' | ||
html_theme = 'sphinx_rtd_theme' | ||
# html_theme = 'sphinx_rtd_theme' | ||
html_theme = 'flask' | ||
|
||
# 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 = { | ||
'show_powered_by': True, | ||
'github_user': 'PaloAltoNetworks', | ||
'github_repo': 'pancloud', | ||
'github_banner': True, | ||
'show_related': True, | ||
'note_bg': '#999999' | ||
} | ||
# html_theme_options = { | ||
# 'show_powered_by': True, | ||
# 'github_user': 'PaloAltoNetworks', | ||
# 'github_repo': 'pancloud', | ||
# 'github_banner': True, | ||
# 'show_related': True, | ||
# 'note_bg': '#999999' | ||
# } | ||
|
||
# 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, | ||
|
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
Oops, something went wrong.