home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / boot / i386 / root / usr / share / YaST2 / clients / inst_timezone.ycp < prev    next >
Text File  |  2006-11-29  |  450b  |  23 lines

  1. /**
  2.  * Client for initial timezone setting (part of installation sequence)
  3.  * Author:    Jiri Suchomel <jsuchome@suse.cz>
  4.  * $Id$
  5.  */
  6. {
  7.     import "GetInstArgs";
  8.     import "Mode";
  9.     import "Wizard";
  10.  
  11.     include "timezone/dialogs.ycp";
  12.  
  13.     map args = GetInstArgs::argmap();
  14.  
  15.     if (args["first_run"]:"yes" != "no")
  16.     args["first_run"]  = "yes";
  17.  
  18.     if (Mode::mode () == "firstboot")
  19.     Wizard::HideAbortButton();
  20.  
  21.     return TimezoneDialog (args);
  22. }
  23.