Skip to content

Commit df2c4c6

Browse files
committed
Updated LICENSE to BSD
fulfilioGH-7
1 parent e6ca61c commit df2c4c6

File tree

13 files changed

+36
-595
lines changed

13 files changed

+36
-595
lines changed

LICENSE

Lines changed: 26 additions & 560 deletions
Large diffs are not rendered by default.

magento/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
'''
33
magento API
44
5-
:copyright: (c) 2010 by Sharoon Thomas.
6-
:copyright: (c) 2010-2013 by Openlabs Technologies & Consulting (P) LTD
7-
:license: AGPLv3, see LICENSE for more details
5+
:license: BSD, see LICENSE for more details
86
'''
97
__all__ = [
108
'API', 'Store', 'Magento',

magento/api.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@
44
55
Generic API for magento
66
7-
:copyright: (c) 2010 by Sharoon Thomas.
8-
:copyright: (c) 2010 by Openlabs Technologies & Consulting (P) LTD
9-
:license: AGPLv3, see LICENSE for more details
7+
:license: BSD, see LICENSE for more details
108
'''
119

1210
PROTOCOLS = []

magento/catalog.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@
44
55
Product Catalog API for magento
66
7-
:copyright: (c) 2010 by Sharoon Thomas.
8-
:copyright: (c) 2010 by Openlabs Technologies & Consulting (P) LTD
9-
:license: AGPLv3, see LICENSE for more details
7+
:license: BSD, see LICENSE for more details
108
'''
119

1210
import warnings

magento/checkout.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,8 @@
55
Checkout API for magento
66
Allows you to manage shopping carts and the checkout process.
77
8-
:copyright: (c) 2010 by Sharoon Thomas.
9-
:copyright: (c) 2010 by Openlabs Technologies & Consulting (P) LTD.
108
11-
:license: AGPLv3, see LICENSE for more details
9+
:license: BSD, see LICENSE for more details
1210
'''
1311

1412
from .api import API

magento/client.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
55
Client API for magento
66
7-
:copyright: (c) 2014 by Openlabs Technologies & Consulting (P) LTD
8-
:license: BSD, see LICENSE for more details
97
'''
108
from threading import RLock
119

magento/customer.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,8 @@
44
55
Customer API for magento
66
7-
:copyright: (c) 2010 by Sharoon Thomas.
8-
:copyright: (c) 2010 by Openlabs Technologies & Consulting (P) LTD.
97
10-
:license: AGPLv3, see LICENSE for more details
8+
:license: BSD, see LICENSE for more details
119
'''
1210
from magento.api import API
1311

magento/directory.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@
44
55
Directory Country API for magento
66
7-
:copyright: (c) 2010 by Sharoon Thomas.
8-
:copyright: (c) 2010 by Openlabs Technologies & Consulting (P) LTD
9-
:license: AGPLv3, see LICENSE for more details
7+
:license: BSD, see LICENSE for more details
108
'''
119
from magento.api import API
1210

magento/miscellaneous.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
55
This API allows to access additional magento information
66
7-
:copyright: (c) 2013 by Openlabs Technologies & Consulting (P) Limited
8-
:license: AGPLv3, see LICENSE for more details.
97
"""
108
from magento.api import API
119

magento/sales.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
Allows to export/import sales orders from/into Magento,
66
to create invoices, shipments, credit memos
77
8-
:copyright: (c) 2010 by Sharoon Thomas.
9-
:copyright: (c) 2010-2013 by Openlabs Technologies & Consulting (P) LTD
10-
:license: AGPLv3, see LICENSE for more details
8+
:license: BSD, see LICENSE for more details
119
'''
1210
from .api import API
1311

0 commit comments

Comments
 (0)