Browse Source

Renamed flask-socketio references to python-socketio (Fixes #1377)

pull/1381/head
Miguel Grinberg 7 months ago
parent
commit
5f83cd0f7b
Failed to extract signature
  1. 4
      examples/server/sanic/app.html
  2. 4
      examples/server/wsgi/templates/index.html
  3. 2
      src/socketio/kombu_manager.py

4
examples/server/sanic/app.html

@ -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">

4
examples/server/wsgi/templates/index.html

@ -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">

2
src/socketio/kombu_manager.py

@ -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)

Loading…
Cancel
Save