Skip to content

Commit 4dc7e5f

Browse files
authored
Merge pull request #74 and #78 from CiscoDevNet/pr/74
Incorporating ***new*** GuestIssuer functionality created by @sQu4rks !
2 parents 053d977 + ce8e8d5 commit 4dc7e5f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+289
-88
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016-2018 Cisco and/or its affiliates.
3+
Copyright (c) 2016-2019 Cisco and/or its affiliates.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ Contribution
154154
webexteamssdk_ is a community development projects. Feedback, thoughts, ideas, and code contributions are welcome! Please see the `Contributing`_ guide for more information.
155155

156156

157-
*Copyright (c) 2016-2018 Cisco and/or its affiliates.*
157+
*Copyright (c) 2016-2019 Cisco and/or its affiliates.*
158158

159159

160160
.. _ciscosparkapi: https://github.com/CiscoDevNet/ciscosparkapi/tree/ciscosparkapi

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212

1313
project = u'webexteamssdk'
14-
copyright = u'Copyright (c) 2016-2018 Cisco and/or its affiliates.'
14+
copyright = u'Copyright (c) 2016-2019 Cisco and/or its affiliates.'
1515
author = u'Chris Lunsford'
1616
version = get_versions()['version']
1717
release = get_versions()['version']

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Webex Teams for Developers
6565
Leveraging the Webex Teams APIs and developing on top of the Webex Teams cloud is easy. Signup for a `free account`_ and then head over to the `Webex Teams for Developers`_ website to learn more.
6666

6767

68-
*Copyright (c) 2016-2018 Cisco and/or its affiliates.*
68+
*Copyright (c) 2016-2019 Cisco and/or its affiliates.*
6969

7070

7171
.. _free account: `Webex Teams`

docs/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ command:
5858
$ python setup.py install
5959
6060
61-
*Copyright (c) 2016-2018 Cisco and/or its affiliates.*
61+
*Copyright (c) 2016-2019 Cisco and/or its affiliates.*
6262

6363

6464
.. _Python Package Index (PyPI): https://pypi.python.org/pypi/webexteamssdk

docs/user/api.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,4 +278,4 @@ Warnings
278278
:members:
279279

280280

281-
*Copyright (c) 2016-2018 Cisco and/or its affiliates.*
281+
*Copyright (c) 2016-2019 Cisco and/or its affiliates.*

docs/user/intro.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ webexteamssdk License
151151
.. include:: ../../LICENSE
152152

153153

154-
*Copyright (c) 2016-2018 Cisco and/or its affiliates.*
154+
*Copyright (c) 2016-2019 Cisco and/or its affiliates.*
155155

156156

157157
.. _MIT Open Source License: https://opensource.org/licenses/MIT

docs/user/quickstart.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ contain all of the returned objects.
443443
>>> rooms_list = list(rooms_iterable)
444444
445445
446-
*Copyright (c) 2016-2018 Cisco and/or its affiliates.*
446+
*Copyright (c) 2016-2019 Cisco and/or its affiliates.*
447447

448448

449449
.. _Webex Teams: https://www.webex.com/products/teams/index.html

examples/bot-example-flask.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
2323
This script supports Python versions 2 and 3.
2424
25-
Copyright (c) 2016-2018 Cisco and/or its affiliates.
25+
Copyright (c) 2016-2019 Cisco and/or its affiliates.
2626
2727
Permission is hereby granted, free of charge, to any person obtaining a copy
2828
of this software and associated documentation files (the "Software"), to deal
@@ -57,7 +57,7 @@
5757
__author__ = "Chris Lunsford"
5858
__author_email__ = "[email protected]"
5959
__contributors__ = ["Brad Bester <[email protected]>"]
60-
__copyright__ = "Copyright (c) 2016-2018 Cisco and/or its affiliates."
60+
__copyright__ = "Copyright (c) 2016-2019 Cisco and/or its affiliates."
6161
__license__ = "MIT"
6262

6363

examples/bot-example-webpy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
the time of this writing web.py (v0.38) only supports Python 2.
2323
Therefore this script only supports Python 2.
2424
25-
Copyright (c) 2016-2018 Cisco and/or its affiliates.
25+
Copyright (c) 2016-2019 Cisco and/or its affiliates.
2626
2727
Permission is hereby granted, free of charge, to any person obtaining a copy
2828
of this software and associated documentation files (the "Software"), to deal
@@ -57,7 +57,7 @@
5757
__author__ = "Brad Bester"
5858
__author_email__ = "[email protected]"
5959
__contributors__ = ["Chris Lunsford <[email protected]>"]
60-
__copyright__ = "Copyright (c) 2016-2018 Cisco and/or its affiliates."
60+
__copyright__ = "Copyright (c) 2016-2019 Cisco and/or its affiliates."
6161
__license__ = "MIT"
6262

6363

0 commit comments

Comments
 (0)