[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
68/80: installer: Indicate which wireless access points are encrypted.
From: |
John Darrington |
Subject: |
68/80: installer: Indicate which wireless access points are encrypted. |
Date: |
Tue, 3 Jan 2017 15:49:45 +0000 (UTC) |
jmd pushed a commit to branch wip-installer
in repository guix.
commit 241c4159a79651f1e11239f7dcbafad84195012f
Author: John Darrington <address@hidden>
Date: Sun Jan 1 17:43:37 2017 +0100
installer: Indicate which wireless access points are encrypted.
* gnu/system/installer/wireless.scm (essid-page-init): Add field indicating
whether
the access point is encrypted or not.
---
gnu/system/installer/wireless.scm | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/gnu/system/installer/wireless.scm
b/gnu/system/installer/wireless.scm
index d0bfce7..65b60df 100644
--- a/gnu/system/installer/wireless.scm
+++ b/gnu/system/installer/wireless.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2016 John Darrington <address@hidden>
+;;; Copyright © 2016, 2017 John Darrington <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -142,8 +142,11 @@ network={
(assq-ref j 'signal)
(assq-ref i 'signal))))
#:disp-proc
- (lambda (d _) (assq-ref d 'essid)))
- ))
+ (lambda (d _)
+ (format #f "~30a ~a" (assq-ref d 'essid)
+ (if (assq-ref d 'encryption)
+ (N_ "Encr.")
+ (N_ "Clear")))))))
(addstr* text-window (format #f
(gettext
- 66/80: installer: Format configuration to fix width of window., (continued)
- 66/80: installer: Format configuration to fix width of window., John Darrington, 2017/01/03
- 80/80: installer: Use --fallback when installing., John Darrington, 2017/01/03
- 69/80: installer: Add page with which the wifi password can be entered., John Darrington, 2017/01/03
- 60/80: installer: Change N_ from a procedure to a macro., John Darrington, 2017/01/03
- 67/80: installer: Do not allow forms to set the cursor visibility., John Darrington, 2017/01/03
- 74/80: installer: Add option to final page to reboot the system., John Darrington, 2017/01/03
- 77/80: installer: Remove "continue" button from host name page., John Darrington, 2017/01/03
- 76/80: installer: Add new page to set the system role., John Darrington, 2017/01/03
- 79/80: installer: Add confidence indicator., John Darrington, 2017/01/03
- 73/80: Merge remote-tracking branch 'origin/master' into wip-installer, John Darrington, 2017/01/03
- 68/80: installer: Indicate which wireless access points are encrypted.,
John Darrington <=
- 01/80: gnu: Add graphical installer, John Darrington, 2017/01/03