summaryrefslogtreecommitdiffstats
path: root/perl-install/install_interactive.pm
Commit message (Collapse)AuthorAgeFilesLines
* fix and some more HelpPascal Rigaux2003-02-131-1/+1
|
* - set_help is deprecatedPascal Rigaux2003-02-131-14/+14
| | | | | | | - it is replaced by interactive_help_id on each ask_* - many set_help do not have any correspondance in help.pm (drakxid-*), those are commented for now
* please perl_checkerPascal Rigaux2003-02-021-1/+1
|
* fix "one big ntfs" resizing (in the limit case)Pascal Rigaux2003-01-311-1/+5
|
* small fixesPascal Rigaux2003-01-311-4/+3
|
* add ntfs resize to the wizardPascal Rigaux2003-01-311-17/+38
|
* drop $o->{lnx4win} handlingPascal Rigaux2003-01-301-7/+0
|
* add isFat_or_NTFS() and use it where possible instead of isFat() since WindowsPascal Rigaux2003-01-301-1/+1
| | | | | is now using ntfs, not only Windows NT
* remove or fix some "Previous"Pascal Rigaux2003-01-211-9/+8
|
* don't say "You must have a swap partition"Pascal Rigaux2003-01-131-1/+0
| | | | | (since it's after using diskdrake which is for experts)
* fsedit::part2hd() returns a scalar, no need to do "my ($hd) = ↵Pascal Rigaux2003-01-071-1/+1
| | | | fsedit::part2hd(...)"
* use "if any" instead of "if grep", and various other occurences of "any", ↵Pascal Rigaux2003-01-071-2/+2
| | | | "every", "partition"
* (partition_with_diskdrake): fix reloading partition tablePascal Rigaux2003-01-061-0/+1
|
* - handle more locally "Reload partition table" (esp. without using setstep)Pascal Rigaux2002-12-091-4/+9
| | | | | => no exception is called through gtk
* remove unused variables or rename them with an underscore (eg: $o becomes $_o)Pascal Rigaux2002-12-041-3/+3
|
* perl_checker adaptationsPascal Rigaux2002-11-271-4/+2
|
* replace "_" with "N" and "__" with "N_"Pascal Rigaux2002-11-061-36/+36
| | | | | | | | | | | | | | | | | | | rationale: - currently, we use _("xxx") as a shorthand for gettext("xxx"). It also used to call xgettext with --keyword=_ - alas, function &_ is global and not by package (notice esp. that _ is not exported in common.pm) - this lead to big ugly pb with packages defining their own &_, overriding common.pm's &_ - a fix is to set @::textdomains to add a new domain (the default being "libDrakX") but relying on the global "_" is still dangerous!
* tellAboutProprietaryModules: use formatAlaTeXGuillaume Cottenceau2002-09-231-2/+2
|
* warn "You don't have a swap partition.\n\nContinue anyway?" in expert modePascal Rigaux2002-09-081-1/+1
|
* handle "readonly" flag per hard drives instead of a global onePascal Rigaux2002-08-271-12/+14
|
* make new perl_checker happyPascal Rigaux2002-07-311-1/+1
|
* make new perl_checker happy (and that's not easy!)Pascal Rigaux2002-07-311-3/+3
|
* fix partition wizard choice updating after calling diskdrakePascal Rigaux2002-07-291-14/+13
|
* g Move 2: partition table: hierarchyThierry Vignaud2002-07-231-2/+2
|
* fix a few english stringsGuillaume Cottenceau2002-04-081-6/+6
|
* use from_Mb for choosing the size of the windows partitionPascal Rigaux2002-02-011-3/+15
|
* - adapt to new diskdrake modulesPascal Rigaux2002-01-271-2/+2
| | | | | - some cleanup in drakxtools build
* defaults to ext3 instead of ext2Pascal Rigaux2002-01-221-1/+1
|
* fix a few cancel's (reported by slegros)Pascal Rigaux2002-01-221-7/+14
|
* try to not get something poorly wrappedGuillaume Cottenceau2001-12-041-4/+5
|
* OOize can_raw_addPascal Rigaux2001-10-191-1/+1
|
* (partition_with_diskdrake): ensure the $::expert flag modifications inPascal Rigaux2001-09-201-1/+4
| | | | | diskdrake do not escape from diskdrake
* - "Wizard" and "More" are backPascal Rigaux2001-09-091-2/+3
| | | | | | | | | | - allow "Use for loopback" when there is already a loopback - set the options on newly created partitions - recompute_loopbacks called after modification of loopbacks, no more before reading - restrict the lenght of the lines in partition description - make loopback work
* big renaming of ask_from_entries_refH in ask_from and ↵Pascal Rigaux2001-08-181-2/+2
| | | | ask_from_entries_refH_powered in ask_from_
* use diskdrake_interactive instead of diskdrakePascal Rigaux2001-08-171-3/+3
|
* a hell lot of cleanup/rewrite:Pascal Rigaux2001-08-171-17/+18
| | | | | | | | | | | * diskdrake_interactive created, diskdrake is now interactive aware * added some documentation about the structure used for partitioning * all_hds now contain the various hds, lvm, raid * cleanup the isLVM, isRAID and alike functions * field {type} in detect_devices is now {media_type} * detect_devices::floppies is now floppies_dev * removed old function prototypes
* instead of testing if ref($in) or ref($o) contains /gtk/, test if ↵Pascal Rigaux2001-08-021-1/+1
| | | | interactive_gtk is in ISA of the object
* move to MDK::Common, bool->to_boolPascal Rigaux2001-07-241-1/+1
|
* fix typoPascal Rigaux2001-07-041-1/+1
|
* verify a /boot/efi partition existsPascal Rigaux2001-07-041-0/+4
|
* small fixes for LVMPascal Rigaux2001-03-031-2/+2
|
* *** empty log message ***Stew Benedict2001-03-031-1/+6
|
* auto_allocate partitions choice modified. diskdrake in expert asks what kindMystery Man 5532001-02-121-4/+4
| | | | | of auto_allocation is wanted, others choose 'simple' in %fsedit::suggestions
* cleanupPascal Rigaux2001-02-101-9/+0
|
* adapt format functions given to ask_from_listf. $_ is no more setPascal Rigaux2001-01-301-2/+4
|
* $::beginner is deprecated, replaced by !$::expertPascal Rigaux2001-01-221-3/+3
|
* ask_from_entries_refH parameter format has changed so change all accesses to it.Pascal Rigaux2001-01-061-3/+3
|
* (partitionWizardSolutions): add "require resize_fat::main" as it should bePascal Rigaux2000-10-231-0/+1
|
* *** empty log message ***Francois Pons2000-10-091-1/+1
|
* no_commentPascal Rigaux2000-10-021-1/+8
|