summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* - do not use "foreach $var (...) {...}" use "foreach my $var (...) {...}" ↵Pascal Rigaux2002-11-117-42/+33
| | | | | | | | instead (only pb are functions called in {...} that could use $var, none found except in commands.pm) - various small syntax enhancements to please perl_checker
* various small syntax enhancements to please perl_checkerPascal Rigaux2002-11-119-12/+12
|
* don't use <*> for globbing, use all or glob_Pascal Rigaux2002-11-111-2/+2
|
* replace q@...@ with q(...) or here_docPascal Rigaux2002-11-111-7/+9
|
* replace qq{...} with qq(...)Pascal Rigaux2002-11-111-4/+4
|
* replace availableMemory with availableMemory()Pascal Rigaux2002-11-112-2/+2
|
* ensure "common" is imported to have N()Pascal Rigaux2002-11-109-7/+9
|
* *** empty log message ***Pascal Rigaux2002-11-101-1/+4
|
* don't return a typeglob ref, return the typeglob (reference to typeglobs arePascal Rigaux2002-11-101-1/+1
| | | | | soft references which doesn't increment the ref count)
* don't return a typeglob ref, return the typeglob (reference to typeglobs arePascal Rigaux2002-11-101-1/+1
| | | | | | soft references which doesn't increment the ref count) (thanks to Gerard Patel for the precise bug report)
* - do not use q{...} to please perl_checkerPascal Rigaux2002-11-091-7/+6
| | | | | | - use <<'EOF' instead - at the same time, fix the "\n" at the beginning of the generated script
* make perl_checker happyPascal Rigaux2002-11-091-1/+1
|
* fix typoPascal Rigaux2002-11-091-1/+1
|
* fix my typosPascal Rigaux2002-11-081-2/+2
|
* normalizePascal Rigaux2002-11-081-2/+2
|
* updated pot filePablo Saratxaga2002-11-071-573/+646
|
* 1.1.11-1mdkThierry Vignaud2002-11-071-2/+18
|
* *** empty log message ***Thierry Vignaud2002-11-071-0/+14
|
* - getCPUs() : fix cpu fields parsingThierry Vignaud2002-11-072-8/+15
| | | | | | | - harddrake::detect : o describe most cpu fields o print value of skipped fields
* Added definition of default font for ThaiPablo Saratxaga2002-11-071-6/+9
|
* updated pot filePablo Saratxaga2002-11-072-1012/+1131
|
* Added dependences for greek font and urw-fonts for cyrillicPablo Saratxaga2002-11-071-0/+2
|
* - describe cpu frequencyThierry Vignaud2002-11-071-14/+20
| | | | | | | | | - only display help topics related to currently displayed fields in right framea - if no device selected, display a message explaining the help dialog - simplify the unknow driver case for color choice - only display fields we described
* perl checker fixesThierry Vignaud2002-11-072-8/+8
|
* - add help for some cpu itemsThierry Vignaud2002-11-071-1/+6
| | | | | | - only display choosen items - remove a dead statement
* - harddrake : don't display modem when there're noneThierry Vignaud2002-11-071-6/+3
| | | | | | | | - getModem() : o simplify o remove unused variables - getSerialModem() : indent
* - have "local *FILEHANDLE" before each "open FILEHANDLE, ..."Pascal Rigaux2002-11-0612-94/+50
| | | | | - use some "cat_" and "output" where possible
* (write_resolv_conf): much cleanup (originally it was meant to introducePascal Rigaux2002-11-061-34/+37
| | | | | cat_ and output, but it ended up with a complete rewrite :)
* (cp): use cp_afPascal Rigaux2002-11-061-36/+2
|
* cleanup get_of_dev (aka ofpath)Pascal Rigaux2002-11-061-15/+6
|
* when needVideoRam, don't take the raw value VideoRam_probed,Pascal Rigaux2002-11-061-7/+9
| | | | | better take a known value <= VideoRam_probed
* make perl_checker happyPascal Rigaux2002-11-068-7/+9
|
* fix typoPascal Rigaux2002-11-061-1/+1
|
* make perl_checker happyPascal Rigaux2002-11-064-10/+11
|
* replace "for my ..." with "foreach my ..."Pascal Rigaux2002-11-062-33/+33
|
* replace complex "unless"s with "if"sPascal Rigaux2002-11-0612-29/+27
|
* remove unneeded parentheses on the right side of infix if/foreach/unlessPascal Rigaux2002-11-064-21/+21
|
* please perl_checker:Pascal Rigaux2002-11-0610-54/+60
| | | | | | | - local'ize $_ before doing while (<...>) - use "foreach" instead of "for" - remove unneeded parentheses on the right side of infix if/foreach/unless
* 1.1.10-mdkThierry Vignaud2002-11-061-1/+4
|
* add extra partition support as primary/logical with configurable size and fs.Francois Pons2002-11-061-12/+57
| | | | | allow configurable min_size, def_size, trigger_size, inst_size, swap_size.
* fix for modules.pm not exporting category2modules_and_descriptionThierry Vignaud2002-11-061-1/+1
|
* replace "_" with "N" and "__" with "N_"Pascal Rigaux2002-11-06112-3169/+3175
| | | | | | | | | | | | | | | | | | | 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!
* *** empty log message ***Pascal Rigaux2002-11-061-0/+1
|
* (xmouse2xId): ensure weird ids are ignoredPascal Rigaux2002-11-051-1/+1
|
* - do not handle "format"ing in interactive for combosPascal Rigaux2002-11-052-19/+23
| | | | | | - do it in interactive::gtk instead (that way, "val" is back"format"ed in callbacks as wanted) - die when editable combos are used with non-strings (like arrays or hashes)
* PPC TIOCSCTTY changed to 0x540EStew Benedict2002-11-051-1/+1
|
* basic uml_install support (thanks to Brian Murrell)Pascal Rigaux2002-11-051-2/+3
|
* (format_ext2): better error message when it is called from format_ext3Pascal Rigaux2002-11-051-0/+1
| | | | | (thanks to Brian Murrell)
* - isUBD can tell wether it is an ubd partitionPascal Rigaux2002-11-051-1/+2
| | | | | - isSpecial is true for ubd partitions
* introduce a new flag: getting_rid_of_readonly_allowed. It is set when the ↵Pascal Rigaux2002-11-052-2/+9
| | | | | | | | partition table badly handled by diskdrake, but we are still allowed to wipe the partition table and start with something new.