Skip to content

Commit 2bb05e3

Browse files
committed
Fix rst files and update docs.
1 parent e2135bb commit 2bb05e3

File tree

5 files changed

+37
-5
lines changed

5 files changed

+37
-5
lines changed

HISTORY.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Upcoming
1212
- Added a logging network class that logs requests and responses.
1313
- Added new options for auth classes, including storing tokens in Redis and storing them on a remote server.
1414

15-
1.2.1 (2015-07-22)
15+
1.2.2 (2015-07-22)
1616
++++++++++++++++++
1717

1818
- The SDK now supports setting a password when creating a shared link.

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -288,11 +288,11 @@ Other Auth Options
288288
For advanced uses of the SDK, two additional auth classes are provided:
289289

290290
- `RemoteOAuth2`: Allows use of the SDK on clients without access to your application's client secret. Instead, you
291-
provide a `retrieve_access_token` callback. That callback should perform the token refresh, perhaps on your server
292-
that does have access to the client secret.
291+
provide a `retrieve_access_token` callback. That callback should perform the token refresh, perhaps on your server
292+
that does have access to the client secret.
293293
- `RedisManagedOAuth2`: Stores access and refresh tokens in Redis. This allows multiple processes (possibly spanning
294-
multiple machines) to share access tokens while synchronizing token refresh. This could be useful for a multiprocess
295-
web server, for example.
294+
multiple machines) to share access tokens while synchronizing token refresh. This could be useful for a multiprocess
295+
web server, for example.
296296

297297
Other Network Options
298298
---------------------

docs/source/boxsdk.auth.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,22 @@ boxsdk.auth.oauth2 module
2020
:undoc-members:
2121
:show-inheritance:
2222

23+
boxsdk.auth.redis_managed_oauth2 module
24+
---------------------------------------
25+
26+
.. automodule:: boxsdk.auth.redis_managed_oauth2
27+
:members:
28+
:undoc-members:
29+
:show-inheritance:
30+
31+
boxsdk.auth.remote_oauth2 module
32+
--------------------------------
33+
34+
.. automodule:: boxsdk.auth.remote_oauth2
35+
:members:
36+
:undoc-members:
37+
:show-inheritance:
38+
2339

2440
Module contents
2541
---------------

docs/source/boxsdk.network.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,14 @@ boxsdk.network.default_network module
1212
:undoc-members:
1313
:show-inheritance:
1414

15+
boxsdk.network.logging_network module
16+
-------------------------------------
17+
18+
.. automodule:: boxsdk.network.logging_network
19+
:members:
20+
:undoc-members:
21+
:show-inheritance:
22+
1523
boxsdk.network.network_interface module
1624
---------------------------------------
1725

docs/source/boxsdk.util.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,14 @@ boxsdk.util.compat module
1212
:undoc-members:
1313
:show-inheritance:
1414

15+
boxsdk.util.log module
16+
----------------------
17+
18+
.. automodule:: boxsdk.util.log
19+
:members:
20+
:undoc-members:
21+
:show-inheritance:
22+
1523
boxsdk.util.lru_cache module
1624
----------------------------
1725

0 commit comments

Comments
 (0)