You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: doc/cache.rst
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
About caching
2
2
=============
3
3
4
-
The JSonic client makes use of various levels of caching to lower the time delay between a call to :meth:`info.mindtrove.JSonic.say` and actual audio output.
4
+
The JSonic client makes use of various levels of caching to lower the time delay between a call to :meth:`uow.audio.JSonic.say` and actual audio output.
Copy file name to clipboardexpand all lines: doc/changelog.rst
+9-4
Original file line number
Diff line number
Diff line change
@@ -1,19 +1,24 @@
1
1
Changelog
2
2
=========
3
3
4
+
Version 0.4
5
+
-----------
6
+
7
+
* Migrated to uow.audio namespace.
8
+
4
9
Version 0.3
5
10
-----------
6
11
7
-
* Corrected :meth:`info.mindtrove.JSonicDeferred.callBefore` and :meth:`info.mindtrove.JSonicDeferred.callAfter` method names and examples.
8
-
* Added better enforcement of singleton nature of :class:`info.mindtrove.JSonic`.
12
+
* Corrected :meth:`uow.audio.JSonicDeferred.callBefore` and :meth:`uow.audio.JSonicDeferred.callAfter` method names and examples.
13
+
* Added better enforcement of singleton nature of :class:`uow.audio.JSonic`.
9
14
* Invoking the :meth:`dijit._Widget.destroyRecursive` method on the JSonic singleton is now possible. Enables destruction of the singleton to make way for the creation of a new singleton with different options.
10
15
* Various JavaScript bug fixes for all browsers.
11
16
12
17
Version 0.2
13
18
-----------
14
19
15
-
* Changed :class:`info.mindtrove.JSonic` to a singleton.
16
-
* Added :func:`info.mindtrove.initJSonic` to create or get the singleton.
20
+
* Changed :class:`uow.audio.JSonic` to a singleton.
21
+
* Added :func:`uow.audio.initJSonic` to create or get the singleton.
Copy file name to clipboardexpand all lines: doc/js.rst
+3-3
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
.. module:: info.mindtrove
1
+
.. module:: uow.audio
2
2
:synopsis: Namespace for the JSonic client.
3
3
4
4
The JavaScript API
@@ -361,11 +361,11 @@ volume
361
361
Example code
362
362
------------
363
363
364
-
The following examples assume an :class:`info.mindtrove.JSonic` instance with caching disabled by default exists in local variable `js`. The following code creates such an instance.
364
+
The following examples assume an :class:`uow.audio.JSonic` instance with caching disabled by default exists in local variable `js`. The following code creates such an instance.
Copy file name to clipboardexpand all lines: doc/start.rst
+2-2
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@ Loading the JSonic Dojo module
68
68
69
69
#. Place the :file:`JSonic.js` file in a web accessible location.
70
70
#. Include `Dojo`_ in your web application.
71
-
#. Inform Dojo of the location of the :mod:`info.mindtrove` namespace on disk.
71
+
#. Inform Dojo of the location of the :mod:`uow.audio` namespace on disk.
72
72
#. Use :func:`dojo.require` to load the JSonic module.
73
73
74
74
See the HTML files in the :file:`examples/` folder for complete applications satisfying these requirements. You can run the examples by visiting the :file:`http://yourdomain:8888/static/examples/` URL of the JSonic server if you start the server with the `--static` parameter.
0 commit comments