Magellan Linux

Diff of /trunk/installer-simple/functions/common-dialogs.sh

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2451 by niro, Tue Jan 7 13:47:35 2014 UTC revision 2452 by niro, Tue Jan 7 15:03:12 2014 UTC
# Line 31  messagebox() Line 31  messagebox()
31    
32   [[ -z ${OK_LABEL} ]] && OK_LABEL="Next"   [[ -z ${OK_LABEL} ]] && OK_LABEL="Next"
33    
34     echo "DEBUG: paused" >&2; read
35   dialog \   dialog \
36   --colors \   --colors \
37   --title "${header}" \   --title "${header}" \
# Line 64  infobox() Line 65  infobox()
65   [[ -z ${height} ]] && height=3   [[ -z ${height} ]] && height=3
66   [[ -z ${width} ]] && width=70   [[ -z ${width} ]] && width=70
67    
68     echo "DEBUG: paused" >&2; read
69   dialog \   dialog \
70   --colors \   --colors \
71   --title "${header}" \   --title "${header}" \
# Line 96  inputbox() Line 98  inputbox()
98   [[ -z ${height} ]] && height=0   [[ -z ${height} ]] && height=0
99   [[ -z ${width} ]] && width=0   [[ -z ${width} ]] && width=0
100    
101     echo "DEBUG: paused" >&2; read
102   dialog \   dialog \
103   --stdout \   --stdout \
104   --colors \   --colors \
# Line 129  passwordbox() Line 132  passwordbox()
132   [[ -z ${height} ]] && height=0   [[ -z ${height} ]] && height=0
133   [[ -z ${width} ]] && width=0   [[ -z ${width} ]] && width=0
134    
135     echo "DEBUG: paused" >&2; read
136   dialog \   dialog \
137   --stdout \   --stdout \
138   --colors \   --colors \
# Line 173  menubox() Line 177  menubox()
177   [[ -z ${OK_LABEL} ]] && OK_LABEL="Next"   [[ -z ${OK_LABEL} ]] && OK_LABEL="Next"
178   [[ -z ${CANCEL_LABEL} ]] && CANCEL_LABEL="Back"   [[ -z ${CANCEL_LABEL} ]] && CANCEL_LABEL="Back"
179    
180     echo "DEBUG: paused" >&2; read
181   eval dialog \   eval dialog \
182   --stdout \   --stdout \
183   --colors \   --colors \
# Line 210  gaugebox() Line 215  gaugebox()
215   [[ -z ${height} ]] && height=0   [[ -z ${height} ]] && height=0
216   [[ -z ${width} ]] && width=70   [[ -z ${width} ]] && width=70
217    
218     echo "DEBUG: paused" >&2; read
219   dialog \   dialog \
220   --colors \   --colors \
221   --title "${header}" \   --title "${header}" \
# Line 242  yesnobox() Line 248  yesnobox()
248   [[ -z ${height} ]] && height=0   [[ -z ${height} ]] && height=0
249   [[ -z ${width} ]] && width=0   [[ -z ${width} ]] && width=0
250    
251     echo "DEBUG: paused" >&2; read
252   dialog \   dialog \
253   --colors \   --colors \
254   --title "${header}" \   --title "${header}" \

Legend:
Removed from v.2451  
changed lines
  Added in v.2452