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 >
Wrap
Text File
|
2006-11-29
|
543b
|
30 lines
/**
* File: test_proposal.ycp
* Summary: For testing the network and hardware proposals.
* Author: Michal Svec <msvec@suse.cz>
*
* $Id: test_proposal.ycp 32509 2006-08-22 17:28:33Z mvidner $
*/
{
import "Mode";
import "Stage";
import "Wizard";
Stage::Set ("continue");
Mode::SetMode ("installation");
// Linuxrc::manual () = true;
Wizard::CreateDialog ();
map args = $[];
args["enable_back"] = true;
args["enable_next"] = nil;
args["proposal"] = WFM::Args (0);
WFM::call ("inst_proposal", [args ]);
UI::CloseDialog ();
/* EOF */
}