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 >
Text File  |  2006-11-29  |  767b  |  35 lines

  1. /**
  2.  * File:        inst_source.ycp
  3.  *
  4.  * Authors:        Klaus Kaempf <kkaempf@suse.de>
  5.  *            Gabriele Strattner <gs@suse.de>
  6.  *            Stefan Schubert <schubi@suse.de>
  7.  *                      Cornelius Schumacher <cschum@suse.de>
  8.  *
  9.  * Purpose:
  10.  * Displays possibilities to install from NFS, CD or partion
  11.  * Do the "mount" for testing the input.
  12.  *
  13.  * $Id: inst_source_dialogs.ycp 33383 2006-10-13 09:12:02Z lslezak $
  14.  */
  15.  
  16. {
  17.     textdomain "packager";
  18.  
  19.     import "Label";
  20.     import "URL";
  21.     import "SourceDialogs";
  22.  
  23.     define string editUrl2( string url, boolean allowHttps ) ``{
  24.     return allowHttps
  25.         ? SourceDialogs::EditPopup (url)
  26.         : SourceDialogs::EditPopupNoHTTPS (url);
  27.     }
  28.  
  29.     define string editUrl( string url) ``{
  30.     return SourceDialogs::EditPopup (url);
  31.     }
  32.  
  33. }
  34.  
  35.