Magellan Linux

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

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

revision 2487 by niro, Wed Jan 8 12:11:44 2014 UTC revision 2488 by niro, Wed Jan 8 12:13:30 2014 UTC
# Line 31  messagebox() Line 31  messagebox()
31    
32   [[ -z ${OK_LABEL} ]] && OK_LABEL="Next"   [[ -z ${OK_LABEL} ]] && OK_LABEL="Next"
33    
  echo "DEBUG: paused" >&2; read  
34   dialog \   dialog \
35   --colors \   --colors \
36   --title "${header}" \   --title "${header}" \
# Line 65  infobox() Line 64  infobox()
64   [[ -z ${height} ]] && height=3   [[ -z ${height} ]] && height=3
65   [[ -z ${width} ]] && width=70   [[ -z ${width} ]] && width=70
66    
  echo "DEBUG: paused" >&2; read  
67   dialog \   dialog \
68   --colors \   --colors \
69   --title "${header}" \   --title "${header}" \
# Line 98  inputbox() Line 96  inputbox()
96   [[ -z ${height} ]] && height=0   [[ -z ${height} ]] && height=0
97   [[ -z ${width} ]] && width=0   [[ -z ${width} ]] && width=0
98    
  echo "DEBUG: paused" >&2; read  
99   dialog \   dialog \
100   --stdout \   --stdout \
101   --colors \   --colors \
# Line 132  passwordbox() Line 129  passwordbox()
129   [[ -z ${height} ]] && height=0   [[ -z ${height} ]] && height=0
130   [[ -z ${width} ]] && width=0   [[ -z ${width} ]] && width=0
131    
  echo "DEBUG: paused" >&2; read  
132   dialog \   dialog \
133   --stdout \   --stdout \
134   --colors \   --colors \
# Line 177  menubox() Line 173  menubox()
173   [[ -z ${OK_LABEL} ]] && OK_LABEL="Next"   [[ -z ${OK_LABEL} ]] && OK_LABEL="Next"
174   [[ -z ${CANCEL_LABEL} ]] && CANCEL_LABEL="Back"   [[ -z ${CANCEL_LABEL} ]] && CANCEL_LABEL="Back"
175    
  echo "DEBUG: paused" >&2; read  
176   eval dialog \   eval dialog \
177   --stdout \   --stdout \
178   --colors \   --colors \
# Line 215  gaugebox() Line 210  gaugebox()
210   [[ -z ${height} ]] && height=0   [[ -z ${height} ]] && height=0
211   [[ -z ${width} ]] && width=70   [[ -z ${width} ]] && width=70
212    
  echo "DEBUG: paused" >&2; read  
213   dialog \   dialog \
214   --colors \   --colors \
215   --title "${header}" \   --title "${header}" \
# Line 248  yesnobox() Line 242  yesnobox()
242   [[ -z ${height} ]] && height=0   [[ -z ${height} ]] && height=0
243   [[ -z ${width} ]] && width=0   [[ -z ${width} ]] && width=0
244    
  echo "DEBUG: paused" >&2; read  
245   dialog \   dialog \
246   --colors \   --colors \
247   --title "${header}" \   --title "${header}" \

Legend:
Removed from v.2487  
changed lines
  Added in v.2488