Skip to content

Commit 05d38fc

Browse files
committed
Code base is maintained by Fulfil.io
1 parent effddf6 commit 05d38fc

10 files changed

+30
-695
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ script:
99
- python setup.py test
1010
notifications:
1111
email:
12-
- ci-notify@openlabs.co.in
12+
- ci-notify@fulfil.io

LICENSE

+25-674
Large diffs are not rendered by default.

__init__.py

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
'''
33
Nereid Integration with MailChimp
44
5-
:copyright: (c) 2011-2014 by Openlabs Technologies & Consulting (P) Ltd.
6-
:license: GPLv3, see LICENSE for more details
75
'''
86
from trytond.pool import Pool
97
from site import WebSite

chimp.py

-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
55
Implements the view function for subscription
66
7-
:copyright: (c) 2011-2014 by Openlabs Technologies & Consulting (P) Limited
8-
:license: GPLv3, see LICENSE for more details.
97
"""
108
from nereid import request, jsonify, current_app
119

i18n.py

-4
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
44
Internationalisation for Nereid
55
6-
:copyright: (c) 2010-2012 by Openlabs Technologies & Consulting (P) Ltd.
7-
:license: GPLv3, see LICENSE for more details
86
97
WARNING: This is incomplete and is under development
108
@@ -75,8 +73,6 @@ def make_lazy_gettext(lookup_func):
7573
"""Creates a lazy gettext function dispatches to a gettext
7674
function as returned by `lookup_func`.
7775
78-
:copyright: (c) 2010 by Armin Ronacher.
79-
8076
Example:
8177
8278
>>> translations = {u'Yes': u'Ja'}

party.py

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
'''
33
nereid_mailchimp.party
44
5-
:copyright: (c) 2010-2014 by Openlabs Technologies & Consulting (P) LTD
6-
:license: GPLv3, see LICENSE for more details
75
'''
86
import json
97

setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,9 @@ def run(self):
100100
name='trytond_nereid_chimp',
101101
version=info.get('version', '0.0.1'),
102102
description="Nereid Integration with MailChimp for newsletter management",
103-
author='Openlabs Technologies & Consulting (P) LTD',
104-
author_email='info@openlabs.co.in',
105-
url='http://www.openlabs.co.in/',
103+
author='Fulfil.IO Inc., Openlabs Technologies & Consulting (P) LTD',
104+
author_email='info@fulfil.io',
105+
url='http://www.fulfil.io/',
106106
package_dir={'trytond.modules.nereid_chimp': '.'},
107107
packages=[
108108
'trytond.modules.nereid_chimp',
@@ -124,7 +124,7 @@ def run(self):
124124
'Programming Language :: Python',
125125
'Topic :: Office/Business',
126126
],
127-
license='GPL-3',
127+
license='BSD',
128128
install_requires=requires,
129129
tests_require=[
130130
'unittest2',

site.py

-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
55
MailChimp configuration fields in site
66
7-
:copyright: (c) 2010-2014 by Openlabs Technologies & Consulting (P) LTD
8-
:license: GPLv3, see LICENSE for more details
97
'''
108
from trytond.pool import PoolMeta
119
from trytond.model import fields

tests/__init__.py

-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
44
Test Nereid Integration with MailChimp
55
6-
:copyright: (c) 2011-2012 by Openlabs Technologies & Consulting (P) Ltd.
7-
:license: GPLv3, see LICENSE for more details
86
97
'''
108
import unittest

tests/test_chimp.py

-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
55
Test the mailchimp plugin for nereid
66
7-
:copyright: (c) 2010-2012 by Openlabs Technologies & Consulting (P) LTD.
8-
:license: GPLv3, see LICENSE for more details.
97
"""
108
import os
119
import sys

0 commit comments

Comments
 (0)