Skip to content

Commit 14b740f

Browse files
committed
Merge branch 'master' into develop
2 parents cd0ee78 + f6abdc9 commit 14b740f

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

Diff for: docs/Gemfile.lock

+1-3
Original file line numberDiff line numberDiff line change
@@ -224,8 +224,7 @@ GEM
224224
rb-fsevent (0.11.2)
225225
rb-inotify (0.10.1)
226226
ffi (~> 1.0)
227-
rexml (3.3.6)
228-
strscan
227+
rexml (3.3.9)
229228
rouge (3.26.0)
230229
ruby2_keywords (0.0.5)
231230
rubyzip (2.3.2)
@@ -240,7 +239,6 @@ GEM
240239
faraday (>= 0.17.3, < 3)
241240
simpleidn (0.2.1)
242241
unf (~> 0.1.4)
243-
strscan (3.1.0)
244242
terminal-table (1.8.0)
245243
unicode-display_width (~> 1.1, >= 1.1.1)
246244
typhoeus (1.4.0)

Diff for: docs/creating-client.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ from marklogic import Client
6767
client = Client('http://localhost:8000', auth=('python-user', 'pyth0n'))
6868
```
6969

70-
### MarkLogic Cloud Authentication
70+
### Progress Data Cloud Authentication
7171

72-
When connecting to a [MarkLogic Cloud instance](https://developer.marklogic.com/products/cloud/), you will need to set
72+
When connecting to a Progress Data Cloud instance, you will need to set
7373
the `cloud_api_key` and `base_path` arguments. You only need to specify a `host` as well, as port 443 and HTTPS will be
7474
used by default. For example:
7575

@@ -85,8 +85,8 @@ from marklogic import Client
8585
client = Client('https://example.marklogic.cloud', cloud_api_key='some-key-value', base_path='/ml/example/manage')
8686
```
8787

88-
MarkLogic Cloud uses an access token for authentication; the access token is generated using the API key value. In some
89-
scenarios, you may wish to set the token expiration time to a value other than the default used by MarkLogic Cloud. To
88+
Progress Data Cloud uses an access token for authentication; the access token is generated using the API key value. In some
89+
scenarios, you may wish to set the token expiration time to a value other than the default used by Progress Data Cloud. To
9090
do so, set the `cloud_token_duration` argument to a number greater than zero that defines the token duration in
9191
minutes:
9292

Diff for: marklogic/cloud_auth.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
class MarkLogicCloudAuth(AuthBase):
1111
"""
12-
Handles authenticating with MarkLogic Cloud.
12+
Handles authenticating with Progress Data Cloud.
1313
See https://requests.readthedocs.io/en/latest/user/advanced/#custom-authentication
1414
for more information on custom authentication classes in requests.
1515

0 commit comments

Comments
 (0)