summaryrefslogtreecommitdiffstats
path: root/textw/network_text.py
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2000-05-02 13:32:50 +0000
committerErik Troan <ewt@redhat.com>2000-05-02 13:32:50 +0000
commit256aca1d2a0c7725f3e363bac3ad9ec0b3d44669 (patch)
tree62434240b26fe5793b93085798a2689c4fa7026d /textw/network_text.py
parent0c9de351ad920e3a856e1e317f9746f7e79973f4 (diff)
downloadanaconda-256aca1d2a0c7725f3e363bac3ad9ec0b3d44669.tar.gz
anaconda-256aca1d2a0c7725f3e363bac3ad9ec0b3d44669.tar.xz
anaconda-256aca1d2a0c7725f3e363bac3ad9ec0b3d44669.zip
text mode help nearly works
Diffstat (limited to 'textw/network_text.py')
-rw-r--r--textw/network_text.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/textw/network_text.py b/textw/network_text.py
index 1f931610c..a0b23bf04 100644
--- a/textw/network_text.py
+++ b/textw/network_text.py
@@ -92,7 +92,8 @@ class NetworkWindow:
bb = ButtonBar (screen, ((_("OK"), "ok"), (_("Back"), "back")))
- toplevel = GridForm (screen, _("Network Configuration"), 1, 3)
+ toplevel = GridFormHelp (screen, _("Network Configuration"),
+ "network", 1, 3)
toplevel.add (firstg, 0, 0, (0, 0, 0, 1), anchorLeft = 1)
toplevel.add (secondg, 0, 1, (0, 0, 0, 1))
toplevel.add (bb, 0, 2, growx = 1)
@@ -140,7 +141,8 @@ class HostnameWindow:
_("The hostname is the name of your computer. If your "
"computer is attached to a network, this may be "
"assigned by your network administrator."),
- [(_("Hostname"), entry)], buttons = [ _("OK"), _("Back")])
+ [(_("Hostname"), entry)], buttons = [ _("OK"), _("Back")],
+ help = "hostname")
if rc == string.lower (_("Back")):
return INSTALL_BACK