mirror of
https://github.com/gryf/wicd.git
synced 2026-01-08 23:04:19 +01:00
Merged r355 of mainline 1.6.
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
.\" First revision was r203
|
.\" First revision was r203
|
||||||
.TH WICD-CURSES "8" "February 2009" "wicd-curses-%CURSES_REVNO%"
|
.TH WICD-CURSES "8" "April 2009" "wicd-curses-%CURSES_REVNO%"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
.B wicd-curses
|
.B wicd-curses
|
||||||
\- curses-based wicd(8) controller
|
\- curses-based wicd(8) controller
|
||||||
@@ -23,7 +23,7 @@ language of choice only uses Latin characters.
|
|||||||
.SH CONTROLS
|
.SH CONTROLS
|
||||||
All of these are case sensitive.
|
All of these are case sensitive.
|
||||||
.TP
|
.TP
|
||||||
.BR enter
|
.BR "C " or " enter"
|
||||||
Connect to selected network
|
Connect to selected network
|
||||||
.TP
|
.TP
|
||||||
.BR "F8 " or " Q " or " q"
|
.BR "F8 " or " Q " or " q"
|
||||||
@@ -52,7 +52,7 @@ Raise the "About wicd-curses" dialog
|
|||||||
.\".PP
|
.\".PP
|
||||||
.\"The following is a work in progress and might not be fully functional as of yet.
|
.\"The following is a work in progress and might not be fully functional as of yet.
|
||||||
.TP
|
.TP
|
||||||
.BR "C " or "enter"
|
.BR "right-arrow"
|
||||||
Bring up network configuration controller for the selected network
|
Bring up network configuration controller for the selected network
|
||||||
.TP
|
.TP
|
||||||
.BR delete
|
.BR delete
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
.TH WICD-CLIENT "1" "September 2008" "wicd-client " "User Commands"
|
.TH WICD-CLIENT "1" "February 2009" "wicd-client " "User Commands"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
wicd-client \- manual page for wicd-client
|
wicd-client \- manual page for wicd-client
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
|
|||||||
@@ -1,2 +1,4 @@
|
|||||||
[install]
|
[install]
|
||||||
record = install.log
|
record = install.log
|
||||||
|
[bdist_rpm]
|
||||||
|
group = Productivity/Networking/System
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -492,7 +492,7 @@ Wicd supports wired and wireless networks, and capable of
|
|||||||
creating and tracking profiles for both. It has a
|
creating and tracking profiles for both. It has a
|
||||||
template-based wireless encryption system, which allows the user
|
template-based wireless encryption system, which allows the user
|
||||||
to easily add encryption methods used. It ships with some common
|
to easily add encryption methods used. It ships with some common
|
||||||
encryption types, such as WPA and WEP. Wicdl will automatically
|
encryption types, such as WPA and WEP. Wicd will automatically
|
||||||
connect at startup to any preferred network within range.
|
connect at startup to any preferred network within range.
|
||||||
""",
|
""",
|
||||||
author="Adam Blackburn, Dan O'Reilly, Andrew Psaltis",
|
author="Adam Blackburn, Dan O'Reilly, Andrew Psaltis",
|
||||||
|
|||||||
@@ -407,7 +407,6 @@ class WirelessInterface(Interface, BaseWirelessInterface):
|
|||||||
except ValueError:
|
except ValueError:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
result = result
|
|
||||||
if result.endswith("COMPLETED"):
|
if result.endswith("COMPLETED"):
|
||||||
return True
|
return True
|
||||||
elif result.endswith("DISCONNECTED"):
|
elif result.endswith("DISCONNECTED"):
|
||||||
|
|||||||
@@ -831,17 +831,17 @@ class WirelessConnectThread(ConnectThread):
|
|||||||
self.reset_ip_addresses(wiface)
|
self.reset_ip_addresses(wiface)
|
||||||
self.stop_wpa(wiface)
|
self.stop_wpa(wiface)
|
||||||
self.flush_routes(wiface)
|
self.flush_routes(wiface)
|
||||||
|
wiface.SetMode(self.network['mode'])
|
||||||
# Generate PSK and authenticate if needed.
|
|
||||||
if self.wpa_driver != 'ralink legacy':
|
|
||||||
self.generate_psk_and_authenticate(wiface)
|
|
||||||
|
|
||||||
# Put interface up.
|
# Put interface up.
|
||||||
self.SetStatus('configuring_interface')
|
self.SetStatus('configuring_interface')
|
||||||
self.put_iface_up(wiface)
|
self.put_iface_up(wiface)
|
||||||
|
|
||||||
|
# Generate PSK and authenticate if needed.
|
||||||
|
if self.wpa_driver != 'ralink legacy':
|
||||||
|
self.generate_psk_and_authenticate(wiface)
|
||||||
|
|
||||||
# Associate.
|
# Associate.
|
||||||
wiface.SetMode(self.network['mode'])
|
|
||||||
wiface.Associate(self.network['essid'], self.network['channel'],
|
wiface.Associate(self.network['essid'], self.network['channel'],
|
||||||
self.network['bssid'])
|
self.network['bssid'])
|
||||||
|
|
||||||
|
|||||||
0
wicd/wicd-daemon.py
Normal file → Executable file
0
wicd/wicd-daemon.py
Normal file → Executable file
Reference in New Issue
Block a user