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 / test_proposal.ycp < prev    next >
Text File  |  2006-11-29  |  543b  |  30 lines

  1. /**
  2.  * File:    test_proposal.ycp
  3.  * Summary:    For testing the network and hardware proposals.
  4.  * Author:    Michal Svec <msvec@suse.cz>
  5.  *
  6.  * $Id: test_proposal.ycp 32509 2006-08-22 17:28:33Z mvidner $
  7.  */
  8.  
  9. {
  10.  
  11. import "Mode";
  12. import "Stage";
  13. import "Wizard";
  14.  
  15. Stage::Set ("continue");
  16. Mode::SetMode ("installation");
  17. // Linuxrc::manual () = true;
  18.  
  19. Wizard::CreateDialog ();
  20.  
  21. map args = $[];
  22. args["enable_back"] = true;
  23. args["enable_next"] = nil;
  24. args["proposal"] = WFM::Args (0);
  25. WFM::call ("inst_proposal", [args ]);
  26. UI::CloseDialog ();
  27.  
  28. /* EOF */
  29. }
  30.