Skip to content

Commit 57d5214

Browse files
committed
added getCollection and rank* methods to interface.rst, changed doc theme to the RTD theme, built the 1.2.0 tar.gz and zip distributions
1 parent 2f6af77 commit 57d5214

35 files changed

+1973
-514
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Full Documentation
9292
The complete documentation for the Python toolkit for Rally REST API
9393
is in the doc/build/html subdirectory in the repository.
9494
The rendered version of this is also available at
95-
http://readthedocs.org/docs/pyral.
95+
http://pyral.readthedocs.io/en/latest/
9696

9797

9898
Sample code

README.short

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ Documentation
4848
Obtain the zip file containing the HTML and CSS files comprising the document set for pyral.
4949
Unzip in a suitable location and point your web browser to the doc/build/html/index.html file
5050

51-
DISABLED: The rendered documentation is also available at http://readthedocs.org/docs/pyral .
51+
The rendered documentation is also available at http://pyral.readthedocs.io/en/latest/
5252

build_dist.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,10 @@ def main(args):
8484
zf = zipfile.ZipFile(zipped, 'r')
8585
for info in zf.infolist():
8686
#print(info.filename, info.date_time, info.file_size, info.compress_size)
87-
reduction_fraction = float(info.compress_size) / float(info.file_size)
87+
if info.file_size:
88+
reduction_fraction = float(info.compress_size) / float(info.file_size)
89+
else:
90+
reduction_fraction = 0.0
8891
reduction_pct = int(reduction_fraction * 100)
8992
print("%-52.52s %6d (%2d%%)" % (info.filename, info.compress_size, reduction_pct))
9093

dists/pyral-1.2.0.tar.gz

861 KB
Binary file not shown.

dists/pyral-1.2.0.zip

236 KB
Binary file not shown.
793 Bytes
Binary file not shown.

doc/build/doctrees/index.doctree

5 Bytes
Binary file not shown.
21.8 KB
Binary file not shown.
21 Bytes
Binary file not shown.

doc/build/html/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: ab43c34d713cfed30f66981a3090babd
3+
config: bc481c91bc67b7eba85aa1ce56db2b8a
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

0 commit comments

Comments
 (0)