Skip to content

Commit f79b16e

Browse files
committed
Merge pull request #559 from rackspace/working
Merging working -> master in preparation for release
2 parents 23105f0 + 975866e commit f79b16e

File tree

158 files changed

+11110
-120
lines changed

Some content is hidden

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

158 files changed

+11110
-120
lines changed

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,12 @@ php:
66
- "5.3"
77
- hhvm
88

9+
sudo: false
10+
911
matrix:
1012
allow_failures:
1113
- php: hhvm
14+
fast_finish: true
1215

1316
branches:
1417
only:
@@ -28,3 +31,6 @@ notifications:
2831
2932
3033
34+
35+
env:
36+
- secure: "bdrUeYb3nSGgBB+QtDZxUHVPw6B/wjb3KXLm8TgonWrQm4GPeWKK29qhmDnFZmQjwQPfuebe7wAk1ZxGoZKbEiELVpJJ+8XYVOt6W/6V53H31JL6FqiIE5+7qBwDe+9ziveM6GcTXHT1GI5mUeACIbeBDPZaNubIJH3U6MPim64="

CONTRIBUTING.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,15 @@ efforts. Here are a few general guidelines to follow:
1717
minor typographical error, create a description which explains your changes
1818
and, where relevant, references the existing issue you're hoping to fix.
1919

20-
5. Document your code!
20+
5. If your pull request introduces a large change or addition, please consider
21+
creating a work-in-progress (WIP) pull request. This lets us review your changes
22+
and provide feedback early and often rather than all at once when the entire pull
23+
request is ready. To denote a pull request as WIP, simply add the "PR: Work In Progress"
24+
label to it. When you are finished with your work in the pull request and
25+
are ready for a final review and merge, please remove the "PR: Work In Progress"
26+
label.
27+
28+
6. Document your code!
2129

2230
If you submit code, please add your name and email address to the
2331
CONTRIBUTORS file.

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,15 @@ php composer.phar require rackspace/php-opencloud
3232
```
3333

3434
Once you have installed the library, you will need to load Composer's autoloader (which registers all the required
35-
namespaces):
35+
namespaces). To do this, place the following line of PHP code at the top of your application's PHP files:
3636

3737
```php
3838
require 'vendor/autoload.php';
3939
```
4040

41+
**Note**: this assumes your application's PHP files are located in the same folder as `vendor/`. If your files are located
42+
elsewhere, please supply the path to `vendor/autoload.php` in the `require` statement above.
43+
4144
And you're ready to go!
4245

4346
You can also check out the [Getting Started guide](docs/getting-started.md) for a quick tutorial.
@@ -60,7 +63,7 @@ Your feedback is appreciated! If you have specific problems or bugs with this SD
6063
also have a [mailing list](https://groups.google.com/forum/#!forum/php-opencloud), so feel free to join to keep up to
6164
date with all the latest changes and announcements to the library.
6265

63-
For general feedback and support requests, send an email to sdk-support@rackspace.com.
66+
For general feedback and support requests, contact us at https://developer.rackspace.com/support/
6467

6568
You can also find assistance via IRC on #rackspace at freenode.net.
6669

apigen.neon

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
templateTheme: bootstrap
2+
3+
accessLevels: [public]

composer.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@
1313
{
1414
"name": "Glen Campbell",
1515
"email": "[email protected]"
16+
},
17+
{
18+
"name": "Shaunak Kashyap",
19+
"email": "[email protected]",
20+
"homepage": "https://github.com/ycombinator"
1621
}
1722
],
1823
"autoload": {
@@ -22,14 +27,14 @@
2227
},
2328
"require": {
2429
"php" : ">=5.3.3",
25-
"guzzle/http" : "~3.8",
30+
"guzzle/guzzle" : "~3.8",
2631
"psr/log": "~1.0"
2732
},
2833
"require-dev" : {
2934
"phpunit/phpunit": "4.3.*",
30-
"guzzle/guzzle": "~3.8",
3135
"satooshi/php-coveralls": "0.6.*@dev",
3236
"jakub-onderka/php-parallel-lint": "0.*",
33-
"fabpot/php-cs-fixer": "1.0.*@dev"
37+
"fabpot/php-cs-fixer": "1.0.*@dev",
38+
"apigen/apigen": "~2.8"
3439
}
3540
}

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+
]

0 commit comments

Comments
 (0)