Browse Source
Renamed flask-socketio references to python-socketio (Fixes #1377)
pull/1381/head
Miguel Grinberg
7 months ago
Failed to extract signature
3 changed files with
5 additions and
5 deletions
-
examples/server/sanic/app.html
-
examples/server/wsgi/templates/index.html
-
src/socketio/kombu_manager.py
|
@ -1,7 +1,7 @@ |
|
|
<!DOCTYPE HTML> |
|
|
<!DOCTYPE HTML> |
|
|
<html> |
|
|
<html> |
|
|
<head> |
|
|
<head> |
|
|
<title>Flask-SocketIO Test</title> |
|
|
<title>Python-SocketIO Test</title> |
|
|
<script type="text/javascript" src="//code.jquery.com/jquery-2.1.4.min.js"></script> |
|
|
<script type="text/javascript" src="//code.jquery.com/jquery-2.1.4.min.js"></script> |
|
|
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/socket.io/4.7.2/socket.io.min.js"></script> |
|
|
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/socket.io/4.7.2/socket.io.min.js"></script> |
|
|
<script type="text/javascript" charset="utf-8"> |
|
|
<script type="text/javascript" charset="utf-8"> |
|
@ -54,7 +54,7 @@ |
|
|
</script> |
|
|
</script> |
|
|
</head> |
|
|
</head> |
|
|
<body> |
|
|
<body> |
|
|
<h1>Flask-SocketIO Test</h1> |
|
|
<h1>Python-SocketIO Test</h1> |
|
|
<h2>Send:</h2> |
|
|
<h2>Send:</h2> |
|
|
<form id="emit" method="POST" action='#'> |
|
|
<form id="emit" method="POST" action='#'> |
|
|
<input type="text" name="emit_data" id="emit_data" placeholder="Message"> |
|
|
<input type="text" name="emit_data" id="emit_data" placeholder="Message"> |
|
|
|
@ -1,7 +1,7 @@ |
|
|
<!DOCTYPE HTML> |
|
|
<!DOCTYPE HTML> |
|
|
<html> |
|
|
<html> |
|
|
<head> |
|
|
<head> |
|
|
<title>Flask-SocketIO Test</title> |
|
|
<title>Python-SocketIO Test</title> |
|
|
<script type="text/javascript" src="//code.jquery.com/jquery-2.1.4.min.js"></script> |
|
|
<script type="text/javascript" src="//code.jquery.com/jquery-2.1.4.min.js"></script> |
|
|
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/socket.io/4.7.2/socket.io.min.js"></script> |
|
|
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/socket.io/4.7.2/socket.io.min.js"></script> |
|
|
<script type="text/javascript" charset="utf-8"> |
|
|
<script type="text/javascript" charset="utf-8"> |
|
@ -54,7 +54,7 @@ |
|
|
</script> |
|
|
</script> |
|
|
</head> |
|
|
</head> |
|
|
<body> |
|
|
<body> |
|
|
<h1>Flask-SocketIO Test</h1> |
|
|
<h1>Python-SocketIO Test</h1> |
|
|
<h2>Send:</h2> |
|
|
<h2>Send:</h2> |
|
|
<form id="emit" method="POST" action='#'> |
|
|
<form id="emit" method="POST" action='#'> |
|
|
<input type="text" name="emit_data" id="emit_data" placeholder="Message"> |
|
|
<input type="text" name="emit_data" id="emit_data" placeholder="Message"> |
|
|
|
@ -86,7 +86,7 @@ class KombuManager(PubSubManager): # pragma: no cover |
|
|
return kombu.Exchange(self.channel, **options) |
|
|
return kombu.Exchange(self.channel, **options) |
|
|
|
|
|
|
|
|
def _queue(self): |
|
|
def _queue(self): |
|
|
queue_name = 'flask-socketio.' + str(uuid.uuid4()) |
|
|
queue_name = 'python-socketio.' + str(uuid.uuid4()) |
|
|
options = {'durable': False, 'queue_arguments': {'x-expires': 300000}} |
|
|
options = {'durable': False, 'queue_arguments': {'x-expires': 300000}} |
|
|
options.update(self.queue_options) |
|
|
options.update(self.queue_options) |
|
|
return kombu.Queue(queue_name, self._exchange(), **options) |
|
|
return kombu.Queue(queue_name, self._exchange(), **options) |
|
|