Skip to content

Commit 71d4204

Browse files
authored
Merge pull request #86 from maxkuzkin/master
Product name fixes
2 parents 04c3792 + 2f40ad5 commit 71d4204

File tree

5 files changed

+16
-14
lines changed

5 files changed

+16
-14
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ apsconnect install-frontend --source SOURCE --oauth-key OAUTH_KEY --oauth-secret
4242
[--network = proxy] [--hub-id HUB_ID] [--instance-only = false]
4343
```
4444
```
45-
⇒ apsconnect install-frontend package.aps.zip application-3-v1-687fd3e99eb 639a0c2bf3ab461aaf74a5c622d1fa34 --backend-url http://127.197.49.26/
46-
APSConnect-cli v.1.7.11
47-
Importing connector http://aps.odin.com/app/connector
48-
Connector http://aps.odin.com/app/connector imported with id=206 [ok]
45+
⇒ apsconnect install-frontend package.aps.zip 687fd3e99eb 61aaf74a5c622d1fa34 --backend-url http://127.0.0.1/
46+
APSConnect-cli v19
47+
Importing connector http://connect.cloudblue.com/product/example
48+
Connector http://connect.cloudblue.com/product/example imported with id=206 [ok]
4949
Resource types creation [ok]
50-
Service template "connector" created with id=16 [ok]
50+
Service template "Product A" created with id=16 [ok]
5151
Limits for Service template "16" are applied [ok]
5252
```
5353

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
19.4
1+
19.5

apsconnectcli/apsconnect.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,12 @@
3737

3838

3939
class APSConnectUtil:
40-
""" A command line tool for APS connector installation on Odin Automation in the relaxed way"""
40+
"""A command line tool for installation of APS packages from
41+
the CloudBlue Connect into the CloudBlue Commerce"""
4142

4243
def init_hub(self, hub_host, user='admin', pwd='1q2w3e', use_tls=False, port=8440,
4344
aps_host=None, aps_port=6308, use_tls_aps=True):
44-
""" Connect your Odin Automation Hub"""
45+
""" Connect your CloudBlue Commerce Instance (Hub)"""
4546
Hub.configure(hub_host, user, pwd, use_tls, port, aps_host, aps_port, use_tls_aps)
4647

4748
def version(self):
@@ -59,8 +60,8 @@ def version(self):
5960

6061
def install_frontend(self, source, oauth_key, oauth_secret, backend_url, settings=None,
6162
network='proxy', hub_id=None, instance_only=False, experimental=False):
62-
""" Install connector-frontend in Odin Automation Hub, --source can be http(s):// or
63-
filepath"""
63+
""" Install connector-frontend in the CloudBlue Commerce Instance (Hub),
64+
--source can be http(s):// or filepath"""
6465

6566
if backend_url.startswith('http://'):
6667
print("WARN: Make sure that the APS development mode enabled for http backend. "

apsconnectcli/config.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ def get_config():
1515
except IOError as e:
1616
if e.errno == 2:
1717
print("Could not find connected hub data. "
18-
"Please run the init-hub command to connect Odin Automation hub.")
18+
"Please run the init-hub command to connect to the "
19+
"CloudBlue Commerce instance (hub).")
1920
else:
2021
print("Could not open configuration file:\n{}".format(e))
2122
sys.exit(1)

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@
2020

2121
setup(
2222
name='apsconnectcli',
23-
author='Ingram Micro',
23+
author='CloudBlue',
2424
version=VERSION,
2525
keywords='aps apsconnect connector automation',
2626
extras_require={
2727
':python_version<="2.7"': ['backports.tempfile==1.0']},
2828
packages=['apsconnectcli'],
29-
description='A command line tool for APS connector installation on Odin Automation in '
30-
'the relaxed way.',
29+
description='A command line tool that automates lifecycle management of APS packages '
30+
'generated by CloudBlue Connect into the CloudBlue Commerce instance.',
3131
url='https://github.com/cloudblue/apsconnect-cli',
3232
license='Apache Software License',
3333
include_package_data=True,

0 commit comments

Comments
 (0)