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
/
include
/
packager
/
inst_source_dialogs.ycp
next >
Wrap
Text File
|
2006-11-29
|
767b
|
35 lines
/**
* File: inst_source.ycp
*
* Authors: Klaus Kaempf <kkaempf@suse.de>
* Gabriele Strattner <gs@suse.de>
* Stefan Schubert <schubi@suse.de>
* Cornelius Schumacher <cschum@suse.de>
*
* Purpose:
* Displays possibilities to install from NFS, CD or partion
* Do the "mount" for testing the input.
*
* $Id: inst_source_dialogs.ycp 33383 2006-10-13 09:12:02Z lslezak $
*/
{
textdomain "packager";
import "Label";
import "URL";
import "SourceDialogs";
define string editUrl2( string url, boolean allowHttps ) ``{
return allowHttps
? SourceDialogs::EditPopup (url)
: SourceDialogs::EditPopupNoHTTPS (url);
}
define string editUrl( string url) ``{
return SourceDialogs::EditPopup (url);
}
}