]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - contrib/dialog/samples/passwordform1-utf8
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / contrib / dialog / samples / passwordform1-utf8
1 #! /bin/sh
2 # $Id: passwordform1-utf8,v 1.7 2010/01/13 10:47:35 tom Exp $
3
4 . ./setup-vars
5
6 . ./setup-utf8
7
8 backtitle="An Example for the use of --passwordform:"
9
10 ids=`id|sed -e 's/([^)]*)//g'`
11 uid=`echo "$ids" | sed -e 's/^uid=//' -e 's/ .*//'`
12 gid=`echo "$ids" | sed -e 's/^.* gid=//' -e 's/ .*//'`
13
14 user="DOG"         
15 home=/usr/home/$user
16
17 returncode=0
18 while test $returncode != 1 && test $returncode != 250
19 do
20 exec 3>&1
21 value=`$DIALOG --ok-label "Submit" \
22           --backtitle "$backtitle" \
23           --insecure "$@" \
24           --passwordform "Here is a possible piece of a configuration program." \
25 20 50 0 \
26         "Username:" 1 1 "$user" 1 10 10 0 \
27         "UID:"      2 1 "$uid"  2 10  8 0 \
28         "GID:"      3 1 "$gid"  3 10  8 0 \
29         "HOME:"     4 1 "$home" 4 10 40 0 \
30 2>&1 1>&3`
31 returncode=$?
32 exec 3>&-
33
34 show=`echo "$value" |sed -e 's/^/       /'`
35
36         case $returncode in
37         $DIALOG_CANCEL)
38                 "$DIALOG" \
39                 --clear \
40                 --backtitle "$backtitle" \
41                 --yesno "Really quit?" 10 30
42                 case $? in
43                 $DIALOG_OK)
44                         break
45                         ;;
46                 $DIALOG_CANCEL)
47                         returncode=99
48                         ;;
49                 esac
50                 ;;
51         $DIALOG_OK)
52                 "$DIALOG" \
53                 --clear \
54                 --backtitle "$backtitle" --no-collapse --cr-wrap \
55                 --msgbox "Resulting data:\n\
56 $show" 10 40
57                 ;;
58         $DIALOG_HELP)
59                 echo "Button 2 (Help) pressed."
60                 exit
61                 ;;
62         $DIALOG_EXTRA)
63                 echo "Button 3 (Extra) pressed."
64                 exit
65                 ;;
66         *)
67                 echo "Return code was $returncode"
68                 exit
69                 ;;
70         esac
71 done