mirror of
https://github.com/guzzle/guzzle.git
synced 2025-02-25 02:22:57 +01:00
Merge branch 'master' into muzzle
This commit is contained in:
commit
612ab33d1a
1
docs/_static/homepage.css
vendored
1
docs/_static/homepage.css
vendored
@ -62,6 +62,7 @@
|
||||
padding: 40px 0 30px;
|
||||
margin-bottom: 0;
|
||||
color: #fff;
|
||||
margin-top: -19px;
|
||||
}
|
||||
|
||||
.masthead h1 {
|
||||
|
4
docs/_templates/index.html
vendored
4
docs/_templates/index.html
vendored
@ -8,8 +8,8 @@
|
||||
<h1>Guzzle</h1>
|
||||
<p>Guzzle is a PHP HTTP client<br />& framework for building RESTful web service clients.</p>
|
||||
<p>
|
||||
<a class="btn btn-primary btn-large" href="https://github.com/guzzle/guzzle">View Guzzle on GitHub</a>
|
||||
<a class="btn btn-large" href="{{ pathto('docs') }}">Read the docs</a>
|
||||
<a class="btn btn-primary btn-lg" href="https://github.com/guzzle/guzzle">View Guzzle on GitHub</a>
|
||||
<a class="btn btn-default btn-lg" href="{{ pathto('docs') }}">Read the docs</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
10
docs/_templates/leftbar.html
vendored
10
docs/_templates/leftbar.html
vendored
@ -1,10 +0,0 @@
|
||||
<div class="hidden-phone">
|
||||
<h3>Need help?</h3>
|
||||
<p>Please post to our google group or #guzzlephp IRC channel on freenode if you need support or have a technical
|
||||
question.</p>
|
||||
</div>
|
||||
<div class="hidden-phone">
|
||||
<h3>Found an error?</h3>
|
||||
<p>If you find an error in the documentation, please file a ticket or submit a pull request on
|
||||
<a href="https://github.com/guzzle/guzzle">GitHub</a></p>
|
||||
</div>
|
1
docs/_templates/nav_links.html
vendored
1
docs/_templates/nav_links.html
vendored
@ -2,5 +2,4 @@
|
||||
<li><a href="http://guzzlephp.org/api/index.html">API</a></li>
|
||||
<li><a href="https://github.com/guzzle/guzzle">GitHub</a></li>
|
||||
<li><a href="https://groups.google.com/forum/?hl=en#!forum/guzzle">Forum</a></li>
|
||||
<li><a href="https://packagist.org/packages/guzzle/guzzle">Packagist</a></li>
|
||||
<li><a href="irc:irc.freenode.com/#guzzlephp">IRC</a></li>
|
||||
|
@ -42,6 +42,8 @@ htmlhelp_basename = 'Guzzledoc'
|
||||
|
||||
# -- Guzzle Sphinx theme setup ------------------------------------------------
|
||||
|
||||
sys.path.insert(0, '/Users/dowling/projects/guzzle_sphinx_theme')
|
||||
|
||||
import guzzle_sphinx_theme
|
||||
pygments_style = 'guzzle_sphinx_theme.GuzzleStyle'
|
||||
html_translator_class = 'guzzle_sphinx_theme.HTMLTranslator'
|
||||
|
117
docs/docs.rst
117
docs/docs.rst
@ -1,43 +1,5 @@
|
||||
.. title:: Guzzle | PHP HTTP client and framework for consuming RESTful web services
|
||||
|
||||
.. toctree::
|
||||
:hidden:
|
||||
|
||||
getting-started/overview
|
||||
getting-started/installation
|
||||
|
||||
http-client/client
|
||||
http-client/request
|
||||
http-client/response
|
||||
http-client/entity-bodies
|
||||
http-client/http-redirects
|
||||
|
||||
plugins/plugins-overview
|
||||
plugins/creating-plugins
|
||||
plugins/async-plugin
|
||||
plugins/backoff-plugin
|
||||
plugins/cache-plugin
|
||||
plugins/cookie-plugin
|
||||
plugins/curl-auth-plugin
|
||||
plugins/history-plugin
|
||||
plugins/log-plugin
|
||||
plugins/md5-validator-plugin
|
||||
plugins/mock-plugin
|
||||
plugins/oauth-plugin
|
||||
|
||||
webservice-client/webservice-client
|
||||
webservice-client/using-the-service-builder
|
||||
webservice-client/guzzle-service-descriptions
|
||||
|
||||
batching/batching
|
||||
|
||||
iterators/resource-iterators
|
||||
iterators/guzzle-iterators
|
||||
|
||||
testing/unit-testing.rst
|
||||
http-client/uri-templates
|
||||
getting-started/faq
|
||||
|
||||
====================
|
||||
Guzzle Documentation
|
||||
====================
|
||||
@ -45,58 +7,67 @@ Guzzle Documentation
|
||||
Getting started
|
||||
---------------
|
||||
|
||||
.. list-table::
|
||||
:header-rows: 0
|
||||
:stub-columns: 0
|
||||
:class: two-column
|
||||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
||||
* - :doc:`getting-started/overview`
|
||||
- :doc:`getting-started/installation`
|
||||
* - :doc:`getting-started/faq`
|
||||
- `Read the API docs <http://guzzlephp.org/api/index.html>`_
|
||||
getting-started/overview
|
||||
getting-started/installation
|
||||
getting-started/faq
|
||||
|
||||
The HTTP client
|
||||
---------------
|
||||
|
||||
.. list-table::
|
||||
:header-rows: 0
|
||||
:stub-columns: 0
|
||||
:class: two-column
|
||||
.. toctree::
|
||||
:maxdepth: 2
|
||||
|
||||
* - :doc:`http-client/client`
|
||||
- :doc:`http-client/request`
|
||||
* - :doc:`http-client/response`
|
||||
- :doc:`http-client/entity-bodies`
|
||||
* - :doc:`http-client/http-redirects`
|
||||
- :doc:`http-client/uri-templates`
|
||||
http-client/client
|
||||
http-client/request
|
||||
http-client/response
|
||||
http-client/entity-bodies
|
||||
http-client/http-redirects
|
||||
http-client/uri-templates
|
||||
|
||||
Plugins
|
||||
-------
|
||||
|
||||
.. list-table::
|
||||
:header-rows: 0
|
||||
:stub-columns: 0
|
||||
:class: two-column
|
||||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
||||
* - :doc:`plugins/plugins-overview`
|
||||
- :doc:`plugins/creating-plugins`
|
||||
plugins/plugins-overview
|
||||
plugins/creating-plugins
|
||||
plugins/async-plugin
|
||||
plugins/backoff-plugin
|
||||
plugins/cache-plugin
|
||||
plugins/cookie-plugin
|
||||
plugins/curl-auth-plugin
|
||||
plugins/history-plugin
|
||||
plugins/log-plugin
|
||||
plugins/md5-validator-plugin
|
||||
plugins/mock-plugin
|
||||
plugins/oauth-plugin
|
||||
|
||||
The web service client
|
||||
----------------------
|
||||
|
||||
.. list-table::
|
||||
:header-rows: 0
|
||||
:stub-columns: 0
|
||||
:class: two-column
|
||||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
||||
* - :doc:`webservice-client/webservice-client`
|
||||
- :doc:`webservice-client/using-the-service-builder`
|
||||
* - :doc:`webservice-client/guzzle-service-descriptions`
|
||||
- :doc:`batching/batching`
|
||||
* - :doc:`iterators/resource-iterators`
|
||||
- :doc:`iterators/guzzle-iterators`
|
||||
webservice-client/webservice-client
|
||||
webservice-client/using-the-service-builder
|
||||
webservice-client/guzzle-service-descriptions
|
||||
batching/batching
|
||||
iterators/resource-iterators
|
||||
iterators/guzzle-iterators
|
||||
|
||||
Testing
|
||||
-------
|
||||
|
||||
* :doc:`testing/unit-testing`
|
||||
.. toctree::
|
||||
:maxdepth: 2
|
||||
|
||||
testing/unit-testing
|
||||
|
||||
API Docs
|
||||
--------
|
||||
|
||||
`Read the API docs <http://guzzlephp.org/api/index.html>`_
|
||||
|
@ -1,2 +1,2 @@
|
||||
Sphinx>=1.2b1
|
||||
guzzle_sphinx_theme>=0.4.0
|
||||
guzzle_sphinx_theme>=0.5.0
|
||||
|
Loading…
x
Reference in New Issue
Block a user