OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
guzzlehttp
/
guzzle
/
docs
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:34:08 AM
rwxr-xr-x
📄
Makefile
5.58 KB
08/12/2024 10:33:17 AM
rw-r--r--
📁
_static
-
08/12/2024 10:34:06 AM
rwxr-xr-x
📄
conf.py
2.03 KB
08/12/2024 10:33:17 AM
rw-r--r--
📄
faq.rst
7.16 KB
08/12/2024 10:33:17 AM
rw-r--r--
📄
handlers-and-middleware.rst
10.17 KB
08/12/2024 10:33:17 AM
rw-r--r--
📄
index.rst
1.67 KB
08/12/2024 10:33:17 AM
rw-r--r--
📄
overview.rst
5.3 KB
08/12/2024 10:33:17 AM
rw-r--r--
📄
psr7.rst
13.77 KB
08/12/2024 10:33:17 AM
rw-r--r--
📄
quickstart.rst
20.43 KB
08/12/2024 10:33:17 AM
rw-r--r--
📄
request-options.rst
34.14 KB
08/12/2024 10:33:17 AM
rw-r--r--
📄
requirements.txt
83 bytes
08/12/2024 10:33:17 AM
rw-r--r--
📄
testing.rst
6.97 KB
08/12/2024 10:33:17 AM
rw-r--r--
Editing: conf.py
Close
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 = '7' html_title = "Guzzle Documentation" html_short_title = "Guzzle 7" exclude_patterns = ['_build'] html_static_path = ['_static'] ##### Guzzle sphinx theme 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' # Custom sidebar templates, maps document names to template names. html_sidebars = { '**': ['logo-text.html', 'globaltoc.html', 'searchbox.html'] } # Register the theme as an extension to generate a sitemap.xml extensions.append("guzzle_sphinx_theme") # Guzzle theme options (see theme.conf for more information) html_theme_options = { # Set the path to a special layout to include for the homepage # "index_template": "homepage.html", # Allow a separate homepage from the master_doc # homepage = index # Set the name of the project to appear in the nav menu # "project_nav_name": "Guzzle", # Set your Disqus short name to enable comments # "disqus_comments_shortname": "my_disqus_comments_short_name", # Set you GA account ID to enable tracking # "google_analytics_account": "my_ga_account", # Path to a touch icon # "touch_icon": "", # Specify a base_url used to generate sitemap.xml links. If not # specified, then no sitemap will be built. "base_url": "http://guzzlephp.org" # Allow the "Table of Contents" page to be defined separately from "master_doc" # tocpage = Contents # Allow the project link to be overriden to a custom URL. # projectlink = http://myproject.url }