summaryrefslogtreecommitdiffstats
path: root/MDK
Commit message (Collapse)AuthorAgeFilesLines
...
* cp_af() now handles devices (block and character)Pascal Rigaux2004-03-311-1/+1
|
* cp_af() now handles devices (mknod)Pascal Rigaux2004-03-111-2/+6
|
* warn when there is a spaces only linePascal Rigaux2004-01-131-1/+4
|
* remove spaces from line with spaces only (less warning in pod2html)Pascal Rigaux2004-01-132-2/+2
|
* perl_checker compliancePascal Rigaux2004-01-091-1/+1
|
* check the name given to whereis_binary() doesn't contain a "/"Pascal Rigaux2004-01-071-0/+4
|
* add whereis_binary()Pascal Rigaux2004-01-072-3/+13
|
* new snapshot (many perl_checker enhancements)Pascal Rigaux2004-01-051-1/+1
|
* perl_checker fixPascal Rigaux2004-01-051-1/+1
|
* titi sucks? yes! reverting...Pascal Rigaux2003-12-161-3/+0
|
* prevent MDK::Common from breaking all gi codeThierry Vignaud2003-12-151-0/+3
|
* MDK::Common::File::cp_f() addedPascal Rigaux2003-11-281-3/+13
|
* substInFile: if file is a symlink, make sure it stays a symlinkGuillaume Cottenceau2003-11-171-0/+9
|
* titi doesn't suckGuillaume Cottenceau2003-10-151-0/+1
|
* for damsGuillaume Cottenceau2003-10-151-1/+1
|
* add uniq_ (uniq but according to some code results on each value)Guillaume Cottenceau2003-10-151-1/+15
|
* export cat_or_die()MDK-92Pascal Rigaux2003-09-191-1/+1
|
* - read_gnomekderc() & update_gnomekderc() will now handle key=value where keyPascal Rigaux2003-09-192-3/+3
| | | | | can contain spaces
* MDK::Common::System::list_users() should list user 500 if it existsPascal Rigaux2003-09-011-1/+1
|
* simplify chomp_ as suggested by Guillaume RoussePascal Rigaux2003-08-121-1/+1
|
* - perl_checker:Pascal Rigaux2003-08-111-1/+1
| | | | | | | | | | | | - allow $_o_XXX parameter name which is both unused and optional (same for $_b_XXX) - shift is a ONE_SCALAR_PARA so that $box->pack_start(shift @l, 0, 0, 4) is parsed correctly - in arrange_global_vars_declared(), don't keep anything in global_vars_declared, better create shadow packages to contain them - much better merging of multiple files defining functions in the same package. This fixes the bad behaviour when using the cache (esp. do_pkgs, but it was even worse with things in ugtk2.pm) - adapt to perl-Gtk2 xs (which replace the perl-GTK2 inline version)
* Add amd64 compat_arch mappingsGwenolé Beauchesne2003-08-041-0/+2
|
* - add read_gnomekderc() (and make update_gnomekderc() a little more robust ↵Pascal Rigaux2003-07-302-3/+22
| | | | when the category is plain weird)
* new releasePascal Rigaux2003-05-271-1/+1
|
* fix pot generation (have \" instead of \\\")Pascal Rigaux2003-05-161-1/+1
|
* - perl_checker: more context checksPascal Rigaux2003-04-291-1/+1
| | | | | | - ensure the values are used (eg: "map { ... } ...", "/xxx/") - ensure the values "... or ...", "... and ..." are not used
* perl_checker compliancePascal Rigaux2003-04-291-2/+2
|
* perl_checker: enhanced "number of arguments" checking, including method callsPascal Rigaux2003-04-251-1/+1
|
* perl_checker adaptationsPascal Rigaux2003-04-242-5/+5
|
* fix description of moduleGuillaume Cottenceau2003-04-171-1/+1
|
* perl_checker compliancePascal Rigaux2003-04-172-4/+3
|
* fix rpmdrake, draksound, and every other each_index user crashThierry Vignaud2003-04-171-1/+1
|
* MDK::Common::Func: map_index, each_index and grep_index do not pass $::i asPascal Rigaux2003-04-162-4/+4
| | | | | | a parameter anymore (this breaks backward compatibility, but it is cleaner and otherwise perl_checker doesn't handle it correctly)
* many perl_checker enhancementsPascal Rigaux2003-04-111-1/+1
|
* perl_checker is so right...Pascal Rigaux2003-04-111-1/+1
|
* (fuzzy_pidofs): handle the empty /proc/XXX/cmdline case (using /proc/XXX/exe ↵Pascal Rigaux2003-04-011-1/+3
| | | | | | | to have the name of the prog) (it is now useful for xfs (XFree86))
* to handle transparently the new die in DrakX needing to sendGuillaume Cottenceau2003-02-191-0/+1
| | | | | | | scalar-refs instead of scalars (to workaround perl bug breaking the utf8 flag for die with scalars), handle the case when err is a scalar ref, and deref it
* perl_checker compliance ("ref" now need parentheses in many case)Pascal Rigaux2003-02-121-2/+2
|
* remove "Use of uninitialized value" in formatAlaTeXPascal Rigaux2003-01-311-1/+1
|
* (list_users) introduce it to get the id list of unprivilegied users,Thierry Vignaud2003-01-291-1/+10
| | | | | | thus enabling to consolidate code in printerdrake, mcc/menu_launchers, drakcronat and the like
* fix stupid find exampleThierry Vignaud2003-01-071-1/+1
|
* MDK::Common::Func: add "find", "any" and "every"Pascal Rigaux2003-01-061-2/+41
|
* - perl_checker: add some more Gtk2 functionsPascal Rigaux2002-12-281-0/+3
| | | | | | - MDK::Common::File: mkdir_p, rm_rf and cp_af returns 1 on success (allowing "eval { mkdir_p() } or ...")
* remove unused variablesPascal Rigaux2002-12-042-3/+3
|
* fix (old!) typo ($root is undefined, replaced with $dir)Pascal Rigaux2002-12-041-1/+1
|
* fix (old!) typoPascal Rigaux2002-12-041-1/+1
|
* more restricted detection of non-use of if_()-like exprsPascal Rigaux2002-12-041-4/+4
|
* - warn use of "cond ? list : ()" (use if_(cond, list) instead)Pascal Rigaux2002-12-041-4/+4
| | | | | - adapt MDK::Common::* to this (using @{[]} instead of () to avoid the warning)
* add output_with_perm(), cat_or_die()Pascal Rigaux2002-12-021-3/+13
|
* make it perl_checker compliantPascal Rigaux2002-11-156-14/+14
|