cleanup links

This commit is contained in:
Tobias Oberstein 2016-05-01 18:17:39 +02:00
parent 952feabdcb
commit e90f1cc04c
13 changed files with 9 additions and 21 deletions

View File

@ -74,7 +74,7 @@ It lets you react, using callback defined via decorators, to 3 things :
Ok, this example is cheating a little bit because the application triggers Ok, this example is cheating a little bit because the application triggers
events and listen to them, and it calls it's own code via RPC. You may want events and listen to them, and it calls it's own code via RPC. You may want
to call them from a Web page using autobahn.js (http://autobahn.ws/js/) for to call them from a Web page using autobahn.js (http://crossbar.io/autobahn#js) for
a more convincing demo. a more convincing demo.
If you use "yield" inside any of the callbacks, `@inlineCallbacks` will If you use "yield" inside any of the callbacks, `@inlineCallbacks` will

View File

@ -1,3 +1,3 @@
# Autobahn Testsuite Testee # Autobahn Testsuite Testee
This is an asyncio-based testee for testing against [Autobahn|Testsuite](http://autobahn.ws/testsuite). This is an asyncio-based testee for testing against [Autobahn|Testsuite](http://crossbar.io/autobahn#testsuite).

View File

@ -22,7 +22,6 @@
sock = new MozWebSocket(wsuri); sock = new MozWebSocket(wsuri);
} else { } else {
log("Browser does not support WebSocket!"); log("Browser does not support WebSocket!");
window.location = "http://autobahn.ws/unsupportedbrowser";
} }
if (sock) { if (sock) {

View File

@ -23,7 +23,6 @@
sock = new MozWebSocket(wsuri); sock = new MozWebSocket(wsuri);
} else { } else {
log("Browser does not support WebSocket!"); log("Browser does not support WebSocket!");
window.location = "http://autobahn.ws/unsupportedbrowser";
} }
if (sock) { if (sock) {

View File

@ -22,7 +22,6 @@
sock = new MozWebSocket(wsuri); sock = new MozWebSocket(wsuri);
} else { } else {
log("Browser does not support WebSocket!"); log("Browser does not support WebSocket!");
window.location = "http://autobahn.ws/unsupportedbrowser";
} }
if (sock) { if (sock) {

View File

@ -22,7 +22,6 @@
sock = new MozWebSocket(wsuri); sock = new MozWebSocket(wsuri);
} else { } else {
log("Browser does not support WebSocket!"); log("Browser does not support WebSocket!");
window.location = "http://autobahn.ws/unsupportedbrowser";
} }
if (sock) { if (sock) {

View File

@ -37,7 +37,7 @@ setup(
description='Autobahn WebSocket Echo Service', description='Autobahn WebSocket Echo Service',
long_description=LONGDESC, long_description=LONGDESC,
author='Tavendo GmbH', author='Tavendo GmbH',
url='http://autobahn.ws/python', url='http://crossbar.io/autobahn',
platforms=('Any'), platforms=('Any'),
install_requires=['Twisted>=Twisted-12.2', install_requires=['Twisted>=Twisted-12.2',
'Autobahn>=0.5.9'], 'Autobahn>=0.5.9'],

View File

@ -22,7 +22,6 @@
sock = new MozWebSocket(wsuri); sock = new MozWebSocket(wsuri);
} else { } else {
log("Browser does not support WebSocket!"); log("Browser does not support WebSocket!");
window.location = "http://autobahn.ws/unsupportedbrowser";
} }
if (sock) { if (sock) {

View File

@ -29,7 +29,6 @@
sock = new MozWebSocket(wsuri); sock = new MozWebSocket(wsuri);
} else { } else {
log("Browser does not support WebSocket!"); log("Browser does not support WebSocket!");
window.location = "http://autobahn.ws/unsupportedbrowser";
} }
if (sock) { if (sock) {

View File

@ -22,7 +22,6 @@
sock = new MozWebSocket(wsuri); sock = new MozWebSocket(wsuri);
} else { } else {
log("Browser does not support WebSocket!"); log("Browser does not support WebSocket!");
window.location = "http://autobahn.ws/unsupportedbrowser";
} }
if (sock) { if (sock) {

View File

@ -22,7 +22,6 @@
sock = new MozWebSocket(wsuri); sock = new MozWebSocket(wsuri);
} else { } else {
log("Browser does not support WebSocket!"); log("Browser does not support WebSocket!");
window.location = "http://autobahn.ws/unsupportedbrowser";
} }
if (sock) { if (sock) {

View File

@ -22,7 +22,6 @@
sock = new MozWebSocket(wsuri); sock = new MozWebSocket(wsuri);
} else { } else {
log("Browser does not support WebSocket!"); log("Browser does not support WebSocket!");
window.location = "http://autobahn.ws/unsupportedbrowser";
} }
if (sock) { if (sock) {

View File

@ -16,9 +16,6 @@ Compared are 4 variants of above functionality:
* streaming API with producer-consumer pattern * streaming API with producer-consumer pattern
You can find complete tutorials [here](http://autobahn.ws/python/tutorials/streaming) and [here](http://autobahn.ws/python/tutorials/producerconsumer).
Message-based Processing Message-based Processing
------------------------ ------------------------