Skip to content

Commit 6eee9d0

Browse files
committed
Merge branch 'working'
2 parents 6216c5f + 503141a commit 6eee9d0

File tree

249 files changed

+13559
-15502
lines changed

Some content is hidden

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

249 files changed

+13559
-15502
lines changed

Diff for: .travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ php:
44
- "5.4"
55
- "5.3"
66
notifications:
7-
- email:
7+
email:
88
9-
- "irc.freenode.org#rackspace-dev"
9+
irc: "irc.freenode.org#rackspace-dev"

Diff for: HACKING.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ efforts. Here are a few general guidelines to follow.
1919
a `quickref.md` (quick reference) and `userguide/` (user guide) under the
2020
`docs/` directory.
2121

22-
Thanks again!
22+
Note to self:
2323

24-
Glen Campbell
24+
git tag -s <tagname>
25+
git push origin <tagname>
26+
27+
(I always forget these commands)

Diff for: RELEASENOTES.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ RELEASE NOTES
33

44
### Current branch: master
55

6+
### 1.5.5
7+
* PSR-2 implementation (code formatting)
8+
* issue #95 - attempt to fix default timezone to satisfy folks
9+
610
### 04/30/2013 Version 1.5.4
711
* Issue #38 - added support for Cloud Files TEMP_URL feature
812
* Revised structure around namespaces

Diff for: docs/api/Autoload.html

-3
Original file line numberDiff line numberDiff line change
@@ -524,9 +524,6 @@ <h1>Namespaces</h1>
524524
</ul>
525525
</li>
526526
<li class="closed">
527-
<span class="folder">Autoscale</span><ul><li><span class="class"><a href="OpenCloud.Autoscale.Service.html#Service">Service</a><br><small>The Rackspace Cloud Load Balancers</small></span></li></ul>
528-
</li>
529-
<li class="closed">
530527
<span class="folder">Base</span><ul>
531528
<li><span class="class"><a href="OpenCloud.Base.Base.html#Base">Base</a><br><small>The Base class is the root class for all other objects used or defined by
532529
this SDK.</small></span></li>

Diff for: docs/api/OpenCloud.AbstractClass.Collection.html

+27-31
Original file line numberDiff line numberDiff line change
@@ -315,9 +315,9 @@ <h4>Tags</h4>
315315
</div>
316316
<div class="method">
317317
<a id="Collection::MakeQueryString()"></a><h3>MakeQueryString<span class="nb-faded-text">(
318-
array
318+
319319

320-
$arr,
320+
$array,
321321

322322
)
323323
</span>
@@ -334,10 +334,9 @@ <h4>Description</h4>
334334
<th>Default</th>
335335
</tr></thead>
336336
<tbody><tr>
337-
<td>$arr</td>
338-
<td style="white-space: normal;">array</td>
339-
<td><p>array of key/value pairs</p>
340-
</td>
337+
<td>$array</td>
338+
<td style="white-space: normal;">n/a</td>
339+
<td></td>
341340
<td></td>
342341
</tr></tbody>
343342
</table>
@@ -409,12 +408,12 @@ <h4>Description</h4>
409408
FALSE if there are no more pages</em><br><small><p>Generally, the structure for a multi-page collection will look like
410409
this:</p>
411410

412-
<pre><code>$coll = $obj-&gt;Collection();
413-
do {
414-
while($item = $coll-&gt;Next()) {
415-
// do something with the item
416-
|
417-
} while ($coll = $coll-&gt;NextPage());
411+
<pre><code> $coll = $obj-&gt;Collection();
412+
do {
413+
while($item = $coll-&gt;Next()) {
414+
// do something with the item
415+
|
416+
} while ($coll = $coll-&gt;NextPage());
418417
</code></pre></small><br><h4>Return value</h4>
419418
<table>
420419
<thead><tr>
@@ -515,9 +514,9 @@ <h4>Description</h4>
515514
<td>$testfunc</td>
516515
<td style="white-space: normal;">callable</td>
517516
<td><p>a callback function that is passed each item
518-
in turn. Note that <code>Select()</code> performs an explicit test for
519-
<code>FALSE</code>, so functions like <code>strpos()</code> need to be cast into a
520-
boolean value (and not just return the integer).</p>
517+
in turn. Note that <code>Select()</code> performs an explicit test for
518+
<code>FALSE</code>, so functions like <code>strpos()</code> need to be cast into a
519+
boolean value (and not just return the integer).</p>
521520
</td>
522521
<td></td>
523522
</tr></tbody>
@@ -594,7 +593,7 @@ <h4>Description</h4>
594593
<em>for paginated collection, sets the callback function and URL for
595594
the next page</em><br><small><p>The callback function should have the signature:</p>
596595

597-
<pre><code>function Whatever($class, $url, $parent)
596+
<pre><code> function Whatever($class, $url, $parent)
598597
</code></pre>
599598

600599
<p>and the <code>$url</code> should be the URL of the next page of results</p></small><br><h4>Arguments</h4>
@@ -610,7 +609,7 @@ <h4>Description</h4>
610609
<td>$callback</td>
611610
<td style="white-space: normal;">callable</td>
612611
<td><p>the name of the function (or array of
613-
object, function name)</p>
612+
object, function name)</p>
614613
</td>
615614
<td></td>
616615
</tr>
@@ -888,7 +887,7 @@ <h4>Description</h4>
888887
<td style="white-space: normal;">string</td>
889888
<td><ul>
890889
<li>the Class of each item in the collection
891-
(assumed to be the name of the factory method)</li>
890+
(assumed to be the name of the factory method)</li>
892891
</ul>
893892
</td>
894893
<td></td>
@@ -988,23 +987,23 @@ <h4>Tags</h4>
988987
mixed
989988

990989
$p1
991-
= NULL,
990+
= null,
992991
mixed
993992

994993
$p2
995-
= NULL,
994+
= null,
996995
mixed
997996

998997
$p3
999-
= NULL,
998+
= null,
1000999
mixed
10011000

10021001
$p4
1003-
= NULL,
1002+
= null,
10041003
mixed
10051004

10061005
$p5
1007-
= NULL,
1006+
= null,
10081007

10091008
)
10101009
</span>
@@ -1039,35 +1038,35 @@ <h4>Description</h4>
10391038
<td style="white-space: normal;">mixed</td>
10401039
<td><p>Optional argument to be passed to sprintf()</p>
10411040
</td>
1042-
<td>NULL</td>
1041+
<td>null</td>
10431042
</tr>
10441043
<tr>
10451044
<td>$p2</td>
10461045
<td style="white-space: normal;">mixed</td>
10471046
<td><p>Optional argument to be passed to sprintf()</p>
10481047
</td>
1049-
<td>NULL</td>
1048+
<td>null</td>
10501049
</tr>
10511050
<tr>
10521051
<td>$p3</td>
10531052
<td style="white-space: normal;">mixed</td>
10541053
<td><p>Optional argument to be passed to sprintf()</p>
10551054
</td>
1056-
<td>NULL</td>
1055+
<td>null</td>
10571056
</tr>
10581057
<tr>
10591058
<td>$p4</td>
10601059
<td style="white-space: normal;">mixed</td>
10611060
<td><p>Optional argument to be passed to sprintf()</p>
10621061
</td>
1063-
<td>NULL</td>
1062+
<td>null</td>
10641063
</tr>
10651064
<tr>
10661065
<td>$p5</td>
10671066
<td style="white-space: normal;">mixed</td>
10681067
<td><p>Optional argument to be passed to sprintf()</p>
10691068
</td>
1070-
<td>NULL</td>
1069+
<td>null</td>
10711070
</tr>
10721071
</tbody>
10731072
</table>
@@ -1471,9 +1470,6 @@ <h1>Namespaces</h1>
14711470
</ul>
14721471
</li>
14731472
<li class="closed">
1474-
<span class="folder">Autoscale</span><ul><li><span class="class"><a href="OpenCloud.Autoscale.Service.html#Service">Service</a><br><small>The Rackspace Cloud Load Balancers</small></span></li></ul>
1475-
</li>
1476-
<li class="closed">
14771473
<span class="folder">Base</span><ul>
14781474
<li><span class="class"><a href="OpenCloud.Base.Base.html#Base">Base</a><br><small>The Base class is the root class for all other objects used or defined by
14791475
this SDK.</small></span></li>

0 commit comments

Comments
 (0)