Rename option/field "server" to "hostname"
This commit is contained in:
parent
c05ab0e534
commit
ae648fd7f6
@ -42,7 +42,7 @@ You have to add a relay port in WeeChat, for example on port 1234:
|
|||||||
|
|
||||||
In QWeeChat, click on connect and enter fields:
|
In QWeeChat, click on connect and enter fields:
|
||||||
|
|
||||||
- `server`: the IP address or hostname of your machine with WeeChat running
|
- `hostname`: the IP address or hostname of your machine with WeeChat running
|
||||||
- `port`: the relay port (defined in WeeChat)
|
- `port`: the relay port (defined in WeeChat)
|
||||||
- `password`: the relay password (defined in WeeChat)
|
- `password`: the relay password (defined in WeeChat)
|
||||||
- `totp`: the Time-Based One-Time Password (optional, to set if required by WeeChat)
|
- `totp`: the Time-Based One-Time Password (optional, to set if required by WeeChat)
|
||||||
|
@ -40,16 +40,16 @@ class ConnectionDialog(QtWidgets.QDialog):
|
|||||||
self.fields = {}
|
self.fields = {}
|
||||||
focus = None
|
focus = None
|
||||||
|
|
||||||
# server
|
# hostname
|
||||||
grid.addWidget(QtWidgets.QLabel('<b>Server</b>'), 0, 0)
|
grid.addWidget(QtWidgets.QLabel('<b>Hostname</b>'), 0, 0)
|
||||||
line_edit = QtWidgets.QLineEdit()
|
line_edit = QtWidgets.QLineEdit()
|
||||||
line_edit.setFixedWidth(200)
|
line_edit.setFixedWidth(200)
|
||||||
value = self.values.get('server', '')
|
value = self.values.get('hostname', '')
|
||||||
line_edit.insert(value)
|
line_edit.insert(value)
|
||||||
grid.addWidget(line_edit, 0, 1)
|
grid.addWidget(line_edit, 0, 1)
|
||||||
self.fields['server'] = line_edit
|
self.fields['hostname'] = line_edit
|
||||||
if not focus and not value:
|
if not focus and not value:
|
||||||
focus = 'server'
|
focus = 'hostname'
|
||||||
|
|
||||||
# port / SSL
|
# port / SSL
|
||||||
grid.addWidget(QtWidgets.QLabel('<b>Port</b>'), 1, 0)
|
grid.addWidget(QtWidgets.QLabel('<b>Port</b>'), 1, 0)
|
||||||
|
@ -115,7 +115,7 @@ class Network(QtCore.QObject):
|
|||||||
|
|
||||||
def _init_connection(self):
|
def _init_connection(self):
|
||||||
self.status = STATUS_DISCONNECTED
|
self.status = STATUS_DISCONNECTED
|
||||||
self._server = None
|
self._hostname = None
|
||||||
self._port = None
|
self._port = None
|
||||||
self._ssl = None
|
self._ssl = None
|
||||||
self._password = None
|
self._password = None
|
||||||
@ -236,9 +236,9 @@ class Network(QtCore.QObject):
|
|||||||
"""Return True if SSL is used, False otherwise."""
|
"""Return True if SSL is used, False otherwise."""
|
||||||
return self._ssl
|
return self._ssl
|
||||||
|
|
||||||
def connect_weechat(self, server, port, ssl, password, totp, lines):
|
def connect_weechat(self, hostname, port, ssl, password, totp, lines):
|
||||||
"""Connect to WeeChat."""
|
"""Connect to WeeChat."""
|
||||||
self._server = server
|
self._hostname = hostname
|
||||||
try:
|
try:
|
||||||
self._port = int(port)
|
self._port = int(port)
|
||||||
except ValueError:
|
except ValueError:
|
||||||
@ -256,9 +256,9 @@ class Network(QtCore.QObject):
|
|||||||
self._socket.abort()
|
self._socket.abort()
|
||||||
if self._ssl:
|
if self._ssl:
|
||||||
self._socket.ignoreSslErrors()
|
self._socket.ignoreSslErrors()
|
||||||
self._socket.connectToHostEncrypted(self._server, self._port)
|
self._socket.connectToHostEncrypted(self._hostname, self._port)
|
||||||
else:
|
else:
|
||||||
self._socket.connectToHost(self._server, self._port)
|
self._socket.connectToHost(self._hostname, self._port)
|
||||||
self.set_status(STATUS_CONNECTING)
|
self.set_status(STATUS_CONNECTING)
|
||||||
|
|
||||||
def disconnect_weechat(self):
|
def disconnect_weechat(self):
|
||||||
@ -316,7 +316,7 @@ class Network(QtCore.QObject):
|
|||||||
def get_options(self):
|
def get_options(self):
|
||||||
"""Get connection options."""
|
"""Get connection options."""
|
||||||
return {
|
return {
|
||||||
'server': self._server,
|
'hostname': self._hostname,
|
||||||
'port': self._port,
|
'port': self._port,
|
||||||
'ssl': 'on' if self._ssl else 'off',
|
'ssl': 'on' if self._ssl else 'off',
|
||||||
'password': self._password,
|
'password': self._password,
|
||||||
|
@ -188,12 +188,12 @@ class MainWindow(QtWidgets.QMainWindow):
|
|||||||
# auto-connect to relay
|
# auto-connect to relay
|
||||||
if self.config.getboolean('relay', 'autoconnect'):
|
if self.config.getboolean('relay', 'autoconnect'):
|
||||||
self.network.connect_weechat(
|
self.network.connect_weechat(
|
||||||
server=self.config.get('relay', 'server'),
|
hostname=self.config.get('relay', 'hostname', fallback=''),
|
||||||
port=self.config.get('relay', 'port'),
|
port=self.config.get('relay', 'port', fallback=''),
|
||||||
ssl=self.config.getboolean('relay', 'ssl'),
|
ssl=self.config.getboolean('relay', 'ssl', fallback=''),
|
||||||
password=self.config.get('relay', 'password'),
|
password=self.config.get('relay', 'password', fallback=''),
|
||||||
totp=None,
|
totp=None,
|
||||||
lines=self.config.get('relay', 'lines'),
|
lines=self.config.get('relay', 'lines', fallback=''),
|
||||||
)
|
)
|
||||||
|
|
||||||
self.show()
|
self.show()
|
||||||
@ -230,8 +230,8 @@ class MainWindow(QtWidgets.QMainWindow):
|
|||||||
def open_connection_dialog(self):
|
def open_connection_dialog(self):
|
||||||
"""Open a dialog with connection settings."""
|
"""Open a dialog with connection settings."""
|
||||||
values = {}
|
values = {}
|
||||||
for option in ('server', 'port', 'ssl', 'password', 'lines'):
|
for option in ('hostname', 'port', 'ssl', 'password', 'lines'):
|
||||||
values[option] = self.config.get('relay', option)
|
values[option] = self.config.get('relay', option, fallback='')
|
||||||
self.connection_dialog = ConnectionDialog(values, self)
|
self.connection_dialog = ConnectionDialog(values, self)
|
||||||
self.connection_dialog.dialog_buttons.accepted.connect(
|
self.connection_dialog.dialog_buttons.accepted.connect(
|
||||||
self.connect_weechat)
|
self.connect_weechat)
|
||||||
@ -239,7 +239,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|||||||
def connect_weechat(self):
|
def connect_weechat(self):
|
||||||
"""Connect to WeeChat."""
|
"""Connect to WeeChat."""
|
||||||
self.network.connect_weechat(
|
self.network.connect_weechat(
|
||||||
server=self.connection_dialog.fields['server'].text(),
|
hostname=self.connection_dialog.fields['hostname'].text(),
|
||||||
port=self.connection_dialog.fields['port'].text(),
|
port=self.connection_dialog.fields['port'].text(),
|
||||||
ssl=self.connection_dialog.fields['ssl'].isChecked(),
|
ssl=self.connection_dialog.fields['ssl'].isChecked(),
|
||||||
password=self.connection_dialog.fields['password'].text(),
|
password=self.connection_dialog.fields['password'].text(),
|
||||||
|
Loading…
Reference in New Issue
Block a user