Skip to content

Commit f3dfb67

Browse files
committed
Fixing the tulip example to handle more than one connexion
1 parent d189370 commit f3dfb67

File tree

2 files changed

+27
-29
lines changed

2 files changed

+27
-29
lines changed

tulip-angular/templates/index.html

+24-27
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,33 @@
11
<html ng-app>
22
<head>
3-
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.4/angular.min.js"></script>
3+
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.4/angular.min.js"></script>
4+
<script>
5+
function ChatCtrl($scope) {
6+
var ws = new WebSocket("ws://127.0.0.1:8081");
7+
$scope.messages = [];
48

5-
<script>
6-
function ChatCtrl($scope) {
7-
var wsuri = "ws://127.0.0.1:8081",
8-
ws = new WebSocket(wsuri);
9-
$scope.messages = [];
9+
$scope.sendMessage = function() {
10+
ws.send($scope.messageText);
11+
$scope.messageText = "";
12+
};
1013

11-
$scope.sendMessage = function() {
12-
ws.send($scope.messageText);
13-
$scope.messageText = "";
14-
};
15-
16-
ws.onmessage = function(e) {
17-
$scope.messages.push(e.data);
18-
$scope.$apply();
19-
};
20-
}
21-
</script>
14+
ws.onmessage = function(e) {
15+
$scope.messages.push(e.data);
16+
$scope.$apply();
17+
};
18+
}
19+
</script>
2220
</head>
23-
2421
<body>
25-
<div ng-controller="ChatCtrl">
26-
<ul id="messages">
27-
{% raw %}<li ng-repeat="message in messages">{{message}}</li>{% endraw %}
28-
</ul>
22+
<div ng-controller="ChatCtrl">
23+
<ul id="messages">
24+
{% raw %}<li ng-repeat="message in messages">{{message}}</li>{% endraw %}
25+
</ul>
2926

30-
<form ng-submit="sendMessage()">
31-
<input type="text" ng-model="messageText" placeholder="Type your message here" autofocus />
32-
<input type="submit" value="Send" />
33-
</form
34-
</div>
27+
<form ng-submit="sendMessage()">
28+
<input type="text" ng-model="messageText" placeholder="Type your message here" autofocus />
29+
<input type="submit" value="Send" />
30+
</form
31+
</div>
3532
</body>
3633
</html>

tulip-angular/websockets_server.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99

1010
@tulip.coroutine
1111
def ws_tulip(websocket, uri):
12-
name = yield from websocket.recv()
13-
websocket.send("ws> {}".format(name))
12+
while True:
13+
message = yield from websocket.recv()
14+
websocket.send("ws> {}".format(message))
1415

1516

1617
if __name__ == '__main__':

0 commit comments

Comments
 (0)