Skip to content

Commit 6054358

Browse files
committed
Merge pull request #549 from jamiehannaford/rst-conversion
Migrate docs to RST
2 parents a0ec998 + 0d08247 commit 6054358

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+9679
-0
lines changed

doc/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_build/

doc/Makefile

Lines changed: 177 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,177 @@
1+
# Makefile for Sphinx documentation
2+
#
3+
4+
# You can set these variables from the command line.
5+
SPHINXOPTS =
6+
SPHINXBUILD = sphinx-build
7+
PAPER =
8+
BUILDDIR = _build
9+
10+
# User-friendly check for sphinx-build
11+
ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1)
12+
$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http://sphinx-doc.org/)
13+
endif
14+
15+
# Internal variables.
16+
PAPEROPT_a4 = -D latex_paper_size=a4
17+
PAPEROPT_letter = -D latex_paper_size=letter
18+
ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
19+
# the i18n builder cannot share the environment and doctrees with the others
20+
I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
21+
22+
.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext
23+
24+
help:
25+
@echo "Please use \`make <target>' where <target> is one of"
26+
@echo " html to make standalone HTML files"
27+
@echo " dirhtml to make HTML files named index.html in directories"
28+
@echo " singlehtml to make a single large HTML file"
29+
@echo " pickle to make pickle files"
30+
@echo " json to make JSON files"
31+
@echo " htmlhelp to make HTML files and a HTML help project"
32+
@echo " qthelp to make HTML files and a qthelp project"
33+
@echo " devhelp to make HTML files and a Devhelp project"
34+
@echo " epub to make an epub"
35+
@echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
36+
@echo " latexpdf to make LaTeX files and run them through pdflatex"
37+
@echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx"
38+
@echo " text to make text files"
39+
@echo " man to make manual pages"
40+
@echo " texinfo to make Texinfo files"
41+
@echo " info to make Texinfo files and run them through makeinfo"
42+
@echo " gettext to make PO message catalogs"
43+
@echo " changes to make an overview of all changed/added/deprecated items"
44+
@echo " xml to make Docutils-native XML files"
45+
@echo " pseudoxml to make pseudoxml-XML files for display purposes"
46+
@echo " linkcheck to check all external links for integrity"
47+
@echo " doctest to run all doctests embedded in the documentation (if enabled)"
48+
49+
clean:
50+
rm -rf $(BUILDDIR)/*
51+
52+
html:
53+
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
54+
@echo
55+
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
56+
57+
dirhtml:
58+
$(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml
59+
@echo
60+
@echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml."
61+
62+
singlehtml:
63+
$(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml
64+
@echo
65+
@echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml."
66+
67+
pickle:
68+
$(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle
69+
@echo
70+
@echo "Build finished; now you can process the pickle files."
71+
72+
json:
73+
$(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json
74+
@echo
75+
@echo "Build finished; now you can process the JSON files."
76+
77+
htmlhelp:
78+
$(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp
79+
@echo
80+
@echo "Build finished; now you can run HTML Help Workshop with the" \
81+
".hhp project file in $(BUILDDIR)/htmlhelp."
82+
83+
qthelp:
84+
$(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp
85+
@echo
86+
@echo "Build finished; now you can run "qcollectiongenerator" with the" \
87+
".qhcp project file in $(BUILDDIR)/qthelp, like this:"
88+
@echo "# qcollectiongenerator $(BUILDDIR)/qthelp/php-opencloud.qhcp"
89+
@echo "To view the help file:"
90+
@echo "# assistant -collectionFile $(BUILDDIR)/qthelp/php-opencloud.qhc"
91+
92+
devhelp:
93+
$(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
94+
@echo
95+
@echo "Build finished."
96+
@echo "To view the help file:"
97+
@echo "# mkdir -p $$HOME/.local/share/devhelp/php-opencloud"
98+
@echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/php-opencloud"
99+
@echo "# devhelp"
100+
101+
epub:
102+
$(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub
103+
@echo
104+
@echo "Build finished. The epub file is in $(BUILDDIR)/epub."
105+
106+
latex:
107+
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
108+
@echo
109+
@echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex."
110+
@echo "Run \`make' in that directory to run these through (pdf)latex" \
111+
"(use \`make latexpdf' here to do that automatically)."
112+
113+
latexpdf:
114+
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
115+
@echo "Running LaTeX files through pdflatex..."
116+
$(MAKE) -C $(BUILDDIR)/latex all-pdf
117+
@echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
118+
119+
latexpdfja:
120+
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
121+
@echo "Running LaTeX files through platex and dvipdfmx..."
122+
$(MAKE) -C $(BUILDDIR)/latex all-pdf-ja
123+
@echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
124+
125+
text:
126+
$(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text
127+
@echo
128+
@echo "Build finished. The text files are in $(BUILDDIR)/text."
129+
130+
man:
131+
$(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man
132+
@echo
133+
@echo "Build finished. The manual pages are in $(BUILDDIR)/man."
134+
135+
texinfo:
136+
$(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
137+
@echo
138+
@echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo."
139+
@echo "Run \`make' in that directory to run these through makeinfo" \
140+
"(use \`make info' here to do that automatically)."
141+
142+
info:
143+
$(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
144+
@echo "Running Texinfo files through makeinfo..."
145+
make -C $(BUILDDIR)/texinfo info
146+
@echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo."
147+
148+
gettext:
149+
$(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale
150+
@echo
151+
@echo "Build finished. The message catalogs are in $(BUILDDIR)/locale."
152+
153+
changes:
154+
$(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
155+
@echo
156+
@echo "The overview file is in $(BUILDDIR)/changes."
157+
158+
linkcheck:
159+
$(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck
160+
@echo
161+
@echo "Link check complete; look for any errors in the above output " \
162+
"or in $(BUILDDIR)/linkcheck/output.txt."
163+
164+
doctest:
165+
$(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest
166+
@echo "Testing of doctests in the sources finished, look at the " \
167+
"results in $(BUILDDIR)/doctest/output.txt."
168+
169+
xml:
170+
$(SPHINXBUILD) -b xml $(ALLSPHINXOPTS) $(BUILDDIR)/xml
171+
@echo
172+
@echo "Build finished. The XML files are in $(BUILDDIR)/xml."
173+
174+
pseudoxml:
175+
$(SPHINXBUILD) -b pseudoxml $(ALLSPHINXOPTS) $(BUILDDIR)/pseudoxml
176+
@echo
177+
@echo "Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml."

doc/caching-creds.rst

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
Caching credentials
2+
===================
3+
4+
You can speed up your API operations by caching your credentials in a
5+
(semi-)permanent location, such as your DB or local filesystem. This
6+
enable subsequent requests to access a shared resource, instead of
7+
repetitively having to re-authenticate on every thread of execution.
8+
9+
Tokens are valid for 24 hours, so you can effectively re-use the same
10+
cached value for that period. If you try to use a cached version that
11+
has expired, an authentication request will be made.
12+
13+
Filesystem example
14+
------------------
15+
16+
In this example, credentials will be saved to a file in the local
17+
filesystem. Be sure to exclude it from your VCS.
18+
19+
.. code-block:: php
20+
21+
use OpenCloud\Rackspace;
22+
23+
$client = new Rackspace(Rackspace::US_IDENTITY_ENDPOINT, array(
24+
'username' => 'foo',
25+
'apiKey' => 'bar'
26+
));
27+
28+
$cacheFile = __DIR__ . '/.opencloud_token';
29+
30+
// If the cache file exists, try importing it into the client
31+
if (file_exists($cacheFile)) {
32+
$data = unserialize(file_get_contents($cacheFile));
33+
$client->importCredentials($data);
34+
}
35+
36+
$token = $client->getTokenObject();
37+
38+
// If no token exists, or the current token is expired, re-authenticate and save the new token to disk
39+
if (!$token || ($token && $token->hasExpired())) {
40+
$client->authenticate();
41+
file_put_contents($cacheFile, serialize($client->exportCredentials()));
42+
}
43+
44+
In tests, the above code shaved about 1-2s off the execution time.

doc/conf.py

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# -*- coding: utf-8 -*-
2+
#
3+
# php-opencloud documentation build configuration file, created by
4+
# sphinx-quickstart on Tue Mar 3 12:28:19 2015.
5+
#
6+
# This file is execfile()d with the current directory set to its
7+
# containing dir.
8+
#
9+
# Note that not all possible configuration values are present in this
10+
# autogenerated file.
11+
#
12+
# All configuration values have a default; values that are commented out
13+
# serve to show the default.
14+
15+
import sys
16+
import os
17+
from sphinx.highlighting import lexers
18+
from pygments.lexers.web import PhpLexer
19+
20+
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
21+
22+
lexers['php'] = PhpLexer(startinline=True, linenos=1)
23+
lexers['php-annotations'] = PhpLexer(startinline=True, linenos=1)
24+
primary_domain = 'php'
25+
26+
extensions = ['sphinxcontrib.phpdomain']
27+
templates_path = ['_templates']
28+
source_suffix = '.rst'
29+
master_doc = 'index'
30+
project = u'php-opencloud'
31+
copyright = u'2015, Jamie Hannaford, Shaunak Kashyap'
32+
version = '1.12'
33+
release = '1.12.1'
34+
exclude_patterns = ['_build']
35+
pygments_style = 'sphinx'
36+
html_theme = 'default'
37+
38+
if not on_rtd:
39+
import sphinx_rtd_theme
40+
html_theme = 'sphinx_rtd_theme'
41+
html_theme_path = [sphinx_rtd_theme.get_html_theme_path(), "_templates"]
42+
43+
html_static_path = ['_static']
44+
html_use_index = True
45+
46+
# Output file base name for HTML help builder.
47+
htmlhelp_basename = 'php-openclouddoc'
48+
49+
latex_documents = [
50+
('index', 'php-opencloud.tex', u'php-opencloud Documentation',
51+
u'Jamie Hannaford, Shaunak Kashyap', 'manual'),
52+
]
53+
54+
man_pages = [
55+
('index', 'php-opencloud', u'php-opencloud Documentation',
56+
[u'Jamie Hannaford, Shaunak Kashyap'], 1)
57+
]
58+
59+
texinfo_documents = [
60+
('index', 'php-opencloud', u'php-opencloud Documentation',
61+
u'Jamie Hannaford, Shaunak Kashyap', 'php-opencloud', 'One line description of project.',
62+
'Miscellaneous'),
63+
]

doc/debugging.rst

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
Debugging
2+
=========
3+
4+
There are two important debugging strategies to use when encountering
5+
problems with HTTP transactions.
6+
7+
Strategy 1: Meaningful exception handling
8+
-----------------------------------------
9+
10+
If the API returns a ``4xx`` or ``5xx`` status code, it indicates that
11+
there was an error with the sent request, meaning that the transaction
12+
cannot be adequately completed.
13+
14+
The Guzzle HTTP component, which forms the basis of our SDK's transport
15+
layer, utilizes `numerous exception
16+
classes <https://github.com/guzzle/guzzle/tree/master/src/Guzzle/Http/Exception>`__
17+
to handle this error logic.
18+
19+
The two most common exception classes are:
20+
21+
- ``Guzzle\Http\Exception\ClientErrorResponseException``, which is
22+
thrown when a ``4xx`` response occurs
23+
24+
- ``Guzzle\Http\Exception\ServerErrorResponseException``, which is
25+
thrown when a ``5xx`` response occurs
26+
27+
Both of these classes extend the base ``BadResponseException`` class.
28+
29+
This provides you with the granularity you need to debug and handle
30+
exceptions.
31+
32+
An example with Swift
33+
~~~~~~~~~~~~~~~~~~~~~
34+
35+
If you're trying to retrieve a Swift resource, such as a Data Object,
36+
and you're not completely certain that it exists, it makes sense to wrap
37+
your call in a try/catch block:
38+
39+
.. code-block:: php
40+
41+
use Guzzle\Http\Exception\ClientErrorResponseException;
42+
43+
try {
44+
return $service->getObject('foo.jpg');
45+
} catch (ClientErrorResponseException $e) {
46+
if ($e->getResponse()->getStatusCode() == 404) {
47+
// Okay, the resource does not exist
48+
return false;
49+
}
50+
} catch (\Exception $e) {
51+
// Some other exception was thrown...
52+
}
53+
54+
55+
Both ``ClientErrorResponseException`` and
56+
``ServerErrorResponseException`` have two methods that allow you to
57+
access the HTTP transaction:
58+
59+
.. code-block:: php
60+
61+
// Find out the faulty request
62+
$request = $e->getRequest();
63+
64+
// Display everything by casting as string
65+
echo (string) $request;
66+
67+
// Find out the HTTP response
68+
$response = $e->getResponse();
69+
70+
// Output that too
71+
echo (string) $response;
72+
73+
74+
Strategy 2: Wire logging
75+
------------------------
76+
77+
Guzzle provides a `Log
78+
plugin <http://docs.guzzlephp.org/en/latest/plugins/log-plugin.html>`__
79+
that allows you to log everything over the wire, which is useful if you
80+
don't know what's going on.
81+
82+
Here's how you enable it:
83+
84+
Install the plugin
85+
~~~~~~~~~~~~~~~~~~
86+
87+
.. code-block:: bash
88+
89+
composer require guzzle/guzzle
90+
91+
92+
Add to your client
93+
~~~~~~~~~~~~~~~~~~
94+
95+
.. code-block:: php
96+
97+
use Guzzle\Plugin\Log\LogPlugin;
98+
99+
$client->addSubscriber(LogPlugin::getDebugPlugin());
100+
101+
102+
The above will add a generic logging subscriber to your client, which
103+
will output every HTTP transaction to `STDOUT`.

0 commit comments

Comments
 (0)