1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- import sys, os
- from sphinx.highlighting import lexers
- from pygments.lexers.web import PhpLexer
- lexers['php'] = PhpLexer(startinline=True, linenos=1)
- lexers['php-annotations'] = PhpLexer(startinline=True, linenos=1)
- primary_domain = 'php'
- extensions = []
- templates_path = ['_templates']
- source_suffix = '.rst'
- master_doc = 'index'
- project = u'Guzzle'
- copyright = u'2015, Michael Dowling'
- version = '6'
- html_title = "Guzzle Documentation"
- html_short_title = "Guzzle 6"
- exclude_patterns = ['_build']
- html_static_path = ['_static']
- import guzzle_sphinx_theme
- html_translator_class = 'guzzle_sphinx_theme.HTMLTranslator'
- html_theme_path = guzzle_sphinx_theme.html_theme_path()
- html_theme = 'guzzle_sphinx_theme'
- html_sidebars = {
- '**': ['logo-text.html', 'globaltoc.html', 'searchbox.html']
- }
- extensions.append("guzzle_sphinx_theme")
- html_theme_options = {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- "base_url": "http://guzzlephp.org"
-
-
-
-
- }
|