Skip to content

Commit 402e2e7

Browse files
committed
Merge branch 'modernization' of github.com:aoberoi/Opentok-Python-SDK into v2.2-docs
Conflicts: README.rst
2 parents dd34bcd + 9b888bf commit 402e2e7

File tree

4 files changed

+35
-5
lines changed

4 files changed

+35
-5
lines changed

LICENSE.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2014 TokBox, Inc.
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

README.rst

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
OpenTok Python SDK
33
==================
44

5-
.. image:: https://travis-ci.org/aoberoi/Opentok-Python-SDK.svg?branch=modernization
6-
:target: https://travis-ci.org/aoberoi/Opentok-Python-SDK
5+
.. image:: https://travis-ci.org/opentok/Opentok-Python-SDK.svg?branch=modernization
6+
:target: https://travis-ci.org/opentok/Opentok-Python-SDK
77

88
The OpenTok Python SDK lets you generate
99
`sessions <http://tokbox.com/opentok/tutorials/create-session/>`_ and
@@ -149,6 +149,15 @@ instance of the ``ArchiveList`` class.
149149
# Get the total number of Archives for this API Key
150150
total = archive_list.total
151151
152+
Samples
153+
-------
154+
155+
There are two sample applications included in this repository. To get going as fast as possible, clone the whole
156+
repository and follow the Walkthroughs:
157+
158+
- `HelloWorld <sample/HelloWorld/README.md>`_
159+
- `Archiving <sample/Archiving/README.md>`_
160+
152161
Documentation
153162
-------------
154163

sample/Archiving/templates/participant.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ <h3 class="panel-title">Instructions</h3>
4949
</div>
5050

5151
<script>
52-
var sessionId = "{{ sessionId }}";
53-
var apiKey = "{{ apiKey }}";
52+
var sessionId = "{{ session_id }}";
53+
var apiKey = "{{ api_key }}";
5454
var token = "{{ token }}";
5555
</script>
5656
<script src="{{ url_for('static', filename='js/participant.js') }}"></script>

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def find_version(*file_paths):
3636

3737
author='TokBox, Inc.',
3838
author_email='[email protected]',
39-
license='MIT',
39+
license='LICENSE.txt',
4040

4141
classifiers = [
4242
'Development Status :: 5 - Production/Stable',

0 commit comments

Comments
 (0)