1
0
mirror of https://github.com/gryf/wicd.git synced 2025-12-24 23:22:27 +01:00
Files
wicd/curses
Andrew Psaltis 68036d91ac curses/curses_misc.py:
Added DynWrapper, a wrapper class with which we can dynamically change the
    selectability of a widget.
  Removed ToggleEdit, replaced by DynWrapper.
curses/netentry_curses.py: ADDED.  Network entry configurator dialog.
  Has a base class for the common elements of the wired/wireless NetEntries.
curses/prefs_curses.py: Replaced ToggleEdits with DynWrapped Edits.
curses/wicd-curses.py:
  Rebuilt the connect function into the main keyhandler.  I discovered that
    implementing that the way I had previously done it would have made
    displaying the dialogs a bit more difficult
  Added support for running the NetEntry selector
in/man=wicd-curses.8.in, curses/README:
  Modified to say that the NetEntry dialog is now a WIP (Raise it with 'C')
setup.py:
  Install netentry_curses.py if we are installing the rest of the curses client
  Install the man page only if we want to install the rest of the man pages and
    the curses client
2009-01-04 20:33:31 -05:00
..
2009-01-04 20:33:31 -05:00
2009-01-04 20:33:31 -05:00
2009-01-04 20:33:31 -05:00
2009-01-04 20:33:31 -05:00
2008-12-30 23:10:18 -05:00
2009-01-04 20:33:31 -05:00

This is a curses-based client for wicd.  It is designed to imitate wicd-client
as much as can be done with a console-based interface.  It is written using the
Urwid (http://excess.org/urwid) toolkit, and thus requires it.

That's all there is to it, really.  It installs unless you disable when you
call setup.py

Right now, it lists current available networks, and whether you are connected
to anything or not, all of which is updated in real time.  It will actually 
connect you to networks now.  Global preferences are now configurable from the
console.  Per-network settings is a work in progress.

Controls:

F5     : refresh wireless networks
F8 or Q: quit 
D      : disconnect from active network
ESC    : if connecting to a network, stop doing so
ENTER  : Attempt connection to selected network
P      : Display preferences dialog
C      : Display network configuration for selected network
A      : Display "About" dialog

IN DIALOGS:
ESC or Q: Quit dialog without saving information (if present)
Meta+Left/Right: Change tabs Left/Right
Meta+Enter : Quit dialog and save information



~NaCl