summaryrefslogtreecommitdiffstats
path: root/perl-install/install_interactive.pm
Commit message (Collapse)AuthorAgeFilesLines
* create detect_devices::probe_name() & detect_devices::probe_unique_name() ↵Pascal Rigaux2005-06-021-2/+2
| | | | and use them
* s/Mandrivalinux/Mandriva Linux/Pablo Saratxaga2005-04-231-1/+1
|
* switch from MandrakeSoft to MandrivaThierry Vignaud2005-04-211-1/+1
|
* better english (writing style rather than spoken one)Thierry Vignaud2004-12-131-3/+3
|
* remove some unneeded ";", add some for normalization (as told by perl_checker)Pascal Rigaux2004-11-181-2/+2
|
* call fsedit::auto_allocate() with $o->{partitions} so be able to fix a ↵Pascal Rigaux2004-09-231-3/+3
| | | | partitioning scheme in a defcfg
* aspell's typo fixesThierry Vignaud2004-08-231-2/+2
|
* add hint about ala LaTeX strings for translatorsThierry Vignaud2004-08-091-1/+3
|
* many functions in fsedit don't modify anything, they are simply accessors.Pascal Rigaux2004-08-031-10/+9
| | | | | | | | | | | | | | | | | | | | | | | | create fs::get and move them into it - device2part(), up_mount_point() moved from fs to fs::get - part2hd(), file2part(), has_mntpoint(), mntpoint2part(), empty_all_hds() moved from fsedit to fs::get - fsedit::get_root() -> fs::get::root() - fsedit::get_root_() -> fs::get::root_() - fsedit::get_really_all_fstab() -> fs::get::really_all_fstab() - fsedit::get_all_fstab_and_holes() -> fs::get::fstab_and_holes() - fsedit::get_all_fstab() -> fs::get::fstab() - fsedit::get_all_holes() -> fs::get::holes() - fsedit::all_free_space -> fs::get::free_space() - fsedit::get_really_all_fstab() -> fs::get::really_all_fstab() - fsedit::get_fstab_and_holes() -> fs::get::hds_fstab_and_holes() - fsedit::get_holes() -> fs::get::hds_holes() - fsedit::get_fstab() -> fs::get::hds_fstab() - fsedit::free_space() -> fs::get::hds_free_space() - fsedit::get_visible_fstab() unused, removed
* - add field {fs_type} partially replacing {pt_type}Pascal Rigaux2004-07-271-7/+8
| | | | | | | | | | | | | | | | | | | | {pt_type} is always a number, {fs_type} is always a string - introduce set_isFormatted() (to ensure {notFormatted} but also {fs_type_from_magic} and {bad_fs_type_magic} are updated) - don't use 0x483 for ext3 anymore (same for reiserfs...), the type_name gives both a pt_type and a fs_type - many accessors from partition_table removed (type2fs(), fs2pt_type()) - remove isThisFs() (not useful anymore since we can use directly {fs_type}) - remove isFat() (inline the function) - other isXXX() from partition_table are moved to fs::type - part2name() is now fs::type::part2type_name - name2pt_type() is now fs::type::type_name2subpart() - partition_table::important_types() is now fs::type::type_names() - fsedit::typeOfPart() is now fs::type::fs_type_from_magic() - no need to truncate type_name since they are shorter
* big renaming of field {type} to {pt_type},Pascal Rigaux2004-07-051-2/+2
| | | | | | this will allow defining {fs_type} which will always be a string whereas {pt_type} will always be a number
* new function isTrueLocalFS() to make a distinction between ext3/reiserfs/... ↵Pascal Rigaux2004-05-271-1/+1
| | | | | | | and nfs => allow /home on nfs (bugzilla #7460)
* perl now handle cleanly utf8 string in exceptions, no need to die \N("...")Pascal Rigaux2004-04-051-3/+3
|
* spell Mandrakelinux in one wordThierry Vignaud2004-03-101-1/+1
|
* - remove the use of BLKRRPART (telling the kernel to re-read the partition ↵Pascal Rigaux2004-01-151-1/+1
| | | | | | | | | table) in most cases - replace with tell_kernel() and will_tell_kernel() - correctly handle in standalone the need to reboot, with no way to forget it (telling the WM to quit nicely then call reboot when it's done)
* scandisk is not enough! you can destroy your windows XP if youGuillaume Cottenceau2003-08-271-4/+6
| | | | | | | don't use chkdsk and then ntfsresize is used on a buggy partition (drakx should detect it via ntfsresize though), running chkdsk is *mandatory*
* new perl_checker compliancePascal Rigaux2003-04-171-6/+6
|
* fix maximum loopback size (bug #3188)Pascal Rigaux2003-03-121-1/+1
|
* use formatAlaTeX() for the warning "DrakX will now resize your Windows ↵Pascal Rigaux2003-03-031-2/+2
| | | | partition..."
* after ntfs resize, warn user that on Windows next boot fsck will be donePascal Rigaux2003-02-261-0/+3
|
* to workaround perl bug removing UTF8 flag when passing scalars to die's, passGuillaume Cottenceau2003-02-191-3/+3
| | | | | | a scalar-ref. but we need to de-ref, so it might break many things :). let's make a prayer :).
* add some formatError'sPascal Rigaux2003-02-191-3/+3
|
* - factorize "Help"-button handlingPascal Rigaux2003-02-161-1/+1
| | | | | - fix interactive_help_get_id (happily, it was no pb :)
* 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