summaryrefslogtreecommitdiffstats
path: root/perl-install/lvm.pm
blob: c660e4d95fc625d1bf1eae8bdb2cffa99d5ef6d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
package lvm; # $Id$

use diagnostics;
use strict;

#-######################################################################################
#- misc imports
#-######################################################################################
use common;
use modules;
use fsedit;
use devices;
use run_program;

#- for partition_table_xxx emulation
sub new {
    my ($class, $name) = @_;
    $name =~ s/\W/_/g;
    $name = substr($name, 0, 63); # max length must be < NAME_LEN / 2  where NAME_LEN is 128
    bless { disks => [], VG_name => $name }, $class;
}
sub hasExtended { 0 }
sub adjustStart {}
sub adjustEnd {}
sub write {}
sub cylinder_size { 
    my ($hd) = @_;
    $hd->{extent_size};
}

init();

sub init() {
    eval { modules::load('dm-mod') };
    devices::make('urandom');
    my $control = '/dev/mapper/control';
    if (! -e $control) {
	my ($major) = cat_('/proc/devices') =~ /(\d+) misc$/m or die "device-mapper error";
	my ($minor) = cat_('/proc/misc') =~ /(\d+) device-mapper$/m or die "device-mapper error";
	mkdir_p(dirname($control));
	syscall_('mknod', $control, c::S_IFCHR() | 0600, makedev($major, $minor)) or die "mknod $control failed: $!";	
    }
    run_program::run('lvm2', 'vgscan') if !-e '/etc/lvmtab';
    run_program::run('lvm2', 'vgchange', '-a', 'y');
}

sub lvm_cmd {
    if (my $r = run_program::run('lvm2', @_)) {
	$r;
    } else {
	$? >> 8 == 98 or return;

	#- sometimes, it needs running vgscan again, doing so:
	run_program::run('lvm2', 'vgscan');
	run_program::run('lvm2', @_);
    }
}
sub lvm_cmd_or_die {
    my ($prog, @para) = @_;
    lvm_cmd($prog, @para) or die "$prog failed\n";
}

sub check {
    my ($in) = @_;

    $in->do_pkgs->ensure_is_installed('lvm2', '/sbin/lvm2') or return;
    init();
    1;
}

sub get_vg {
    my ($part) = @_;
    my $dev = expand_symlinks(devices::make($part->{device}));
    run_program::get_stdout('lvm2', 'pvs', '--noheadings', '-o', 'vg_name', $dev) =~ /(\S+)/ && $1;
}

sub update_size {
    my ($lvm) = @_;
    $lvm->{extent_size} = to_int(run_program::get_stdout('lvm2', 'vgs', '--noheadings', '--nosuffix', '--units', 's', '-o', 'vg_extent_size', $lvm->{VG_name}));
    $lvm->{totalsectors} = to_int(run_program::get_stdout('lvm2', 'vgs', '--noheadings', '--nosuffix', '--units', 's', '-o', 'vg_size', $lvm->{VG_name}));
}

sub get_lv_size {
    my ($lvm_device) = @_;
    to_int(run_program::get_stdout('lvm2', 'lvs', '--noheadings', '--nosuffix', '--units', 's', '-o', 'lv_size', "/dev/$lvm_device"));
}

sub get_lvs {
    my ($lvm) = @_;
    my @l = run_program::get_stdout('lvm2', 'lvs', '--noheadings', '--nosuffix', '--units', 's', '-o', 'lv_name', $lvm->{VG_name}) =~ /(\S+)/g;
    $lvm->{primary}{normal} = 
      [
       map {
	   my $device = "$lvm->{VG_name}/$_";
	   my $pt_type = -e "/dev/$device" && fsedit::typeOfPart($device);

	   { device => $device, 
	     type => $pt_type || 0x83,
	     size => get_lv_size($device) }
       } @l
      ];
}

sub vg_add {
    my ($part) = @_;
    my $dev = expand_symlinks(devices::make($part->{device}));
    lvm_cmd_or_die('pvcreate', '-y', '-ff', $dev);
    my $prog = lvm_cmd('vgs', $part->{lvm}) ? 'vgextend' : 'vgcreate';
    lvm_cmd_or_die($prog, $part->{lvm}, $dev);
}

sub vg_destroy {
    my ($lvm) = @_;

    is_empty_array_ref($lvm->{primary}{normal}) or die N("Remove the logical volumes first\n");
    lvm_cmd('vgchange', '-a', 'n', $lvm->{VG_name});
    lvm_cmd_or_die('vgremove', $lvm->{VG_name});
    foreach (@{$lvm->{disks}}) {
	delete $_->{lvm};
	$_->{isFormatted} = 0;
	$_->{notFormatted} = 1;	
    }
}

sub lv_delete {
    my ($lvm, $lv) = @_;

    lvm_cmd_or_die('lvremove', '-f', "/dev/$lv->{device}");

    my $list = $lvm->{primary}{normal};
    @$list = grep { $_ != $lv } @$list;
}

sub lv_create {
    my ($lvm, $lv) = @_;
    my $list = $lvm->{primary}{normal} ||= [];
    $lv->{lv_name} ||= 1 + max(map { if_($_->{device} =~ /(\d+)$/, $1) } @$list);
    $lv->{device} = "$lvm->{VG_name}/$lv->{lv_name}";
    lvm_cmd_or_die('lvcreate', '--size', int($lv->{size} / 2) . 'k', '-n', $lv->{lv_name}, $lvm->{VG_name});
    $lv->{size} = get_lv_size($lv->{device}); #- the created size is smaller than asked size
    $lv->{notFormatted} = 1;
    $lv->{isFormatted} = 0;
    push @$list, $lv;
}

sub lv_resize {
    my ($lv, $oldsize) = @_;
    lvm_cmd_or_die($oldsize > $lv->{size} ? ('lvreduce', '-f') : 'lvextend', 
		   '--size', int($lv->{size} / 2) . 'k', "/dev/$lv->{device}");
    $lv->{size} = get_lv_size($lv->{device}); #- the resized partition may not be the exact asked size
}

1;
install/standalone/po/eo.po,
+ perl-install/standalone/po/es.po,
+ perl-install/standalone/po/et.po,
+ perl-install/standalone/po/eu.po,
+ perl-install/standalone/po/fa.po,
+ perl-install/standalone/po/fi.po,
+ perl-install/standalone/po/fr.po,
+ perl-install/standalone/po/fur.po,
+ perl-install/standalone/po/ga.po,
+ perl-install/standalone/po/gl.po,
+ perl-install/standalone/po/he.po,
+ perl-install/standalone/po/hi.po,
+ perl-install/standalone/po/hr.po,
+ perl-install/standalone/po/hu.po,
+ perl-install/standalone/po/id.po,
+ perl-install/standalone/po/is.po,
+ perl-install/standalone/po/it.po,
+ perl-install/standalone/po/ja.po,
+ perl-install/standalone/po/ko.po,
+ perl-install/standalone/po/ky.po,
+ perl-install/standalone/po/libDrakX-standalone.pot,
+ perl-install/standalone/po/lt.po,
+ perl-install/standalone/po/ltg.po,
+ perl-install/standalone/po/lv.po,
+ perl-install/standalone/po/mk.po,
+ perl-install/standalone/po/mn.po,
+ perl-install/standalone/po/ms.po,
+ perl-install/standalone/po/mt.po,
+ perl-install/standalone/po/nb.po,
+ perl-install/standalone/po/nl.po,
+ perl-install/standalone/po/nn.po,
+ perl-install/standalone/po/pa_IN.po,
+ perl-install/standalone/po/pl.po,
+ perl-install/standalone/po/pt.po,
+ perl-install/standalone/po/pt_BR.po,
+ perl-install/standalone/po/ro.po,
+ perl-install/standalone/po/ru.po,
+ perl-install/standalone/po/sc.po,
+ perl-install/standalone/po/sk.po,
+ perl-install/standalone/po/sl.po,
+ perl-install/standalone/po/sq.po,
+ perl-install/standalone/po/sr.po,
+ perl-install/standalone/po/sr@Latn.po,
+ perl-install/standalone/po/sv.po,
+ perl-install/standalone/po/ta.po,
+ perl-install/standalone/po/tg.po,
+ perl-install/standalone/po/th.po,
+ perl-install/standalone/po/tl.po,
+ perl-install/standalone/po/tr.po,
+ perl-install/standalone/po/uk.po,
+ perl-install/standalone/po/uz.po,
+ perl-install/standalone/po/uz@Latn.po,
+ perl-install/standalone/po/vi.po,
+ perl-install/standalone/po/wa.po,
+ perl-install/standalone/po/zh_CN.po,
+ perl-install/standalone/po/zh_TW.po: sync with code
+
+2007-01-09 16:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakpxe: remove obsolete tool
+
+2007-01-09 16:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Makefile.config: remove uninstalled moved network
+ tools
+
+2007-01-09 16:04 Olivier Blin <oblin at mandriva.com>
+
+ * soft/drakx-net/trunk/tools/drakhosts,
+ soft/drakx-net/trunk/tools/draknfs,
+ soft/drakx-net/trunk/tools/draksambashare,
+ perl-install/standalone/drakhosts,
+ perl-install/standalone/draknfs,
+ perl-install/standalone/draksambashare: move more network tools
+ in drakx-net
+
+2007-01-09 16:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/Makefile: (merge) fix rule
+
+2007-01-09 16:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/af.po, perl-install/share/po/am.po,
+ perl-install/share/po/ar.po, perl-install/share/po/az.po,
+ perl-install/share/po/be.po, perl-install/share/po/bg.po,
+ perl-install/share/po/bn.po, perl-install/share/po/br.po,
+ perl-install/share/po/bs.po, perl-install/share/po/ca.po,
+ perl-install/share/po/cs.po, perl-install/share/po/cy.po,
+ perl-install/share/po/da.po, perl-install/share/po/de.po,
+ perl-install/share/po/el.po, perl-install/share/po/eo.po,
+ perl-install/share/po/es.po, perl-install/share/po/et.po,
+ perl-install/share/po/eu.po, perl-install/share/po/fa.po,
+ perl-install/share/po/fi.po, perl-install/share/po/fr.po,
+ perl-install/share/po/fur.po, perl-install/share/po/ga.po,
+ perl-install/share/po/gl.po, perl-install/share/po/he.po,
+ perl-install/share/po/hi.po, perl-install/share/po/hr.po,
+ perl-install/share/po/hu.po, perl-install/share/po/id.po,
+ perl-install/share/po/is.po, perl-install/share/po/it.po,
+ perl-install/share/po/ja.po, perl-install/share/po/ko.po,
+ perl-install/share/po/ky.po, perl-install/share/po/libDrakX.pot,
+ perl-install/share/po/lt.po, perl-install/share/po/ltg.po,
+ perl-install/share/po/lv.po, perl-install/share/po/mk.po,
+ perl-install/share/po/mn.po, perl-install/share/po/ms.po,
+ perl-install/share/po/mt.po, perl-install/share/po/nb.po,
+ perl-install/share/po/nl.po, perl-install/share/po/nn.po,
+ perl-install/share/po/pa_IN.po, perl-install/share/po/pl.po,
+ perl-install/share/po/pt.po, perl-install/share/po/pt_BR.po,
+ perl-install/share/po/ro.po, perl-install/share/po/ru.po,
+ perl-install/share/po/sc.po, perl-install/share/po/sk.po,
+ perl-install/share/po/sl.po, perl-install/share/po/sq.po,
+ perl-install/share/po/sr.po, perl-install/share/po/sr@Latn.po,
+ perl-install/share/po/sv.po, perl-install/share/po/ta.po,
+ perl-install/share/po/tg.po, perl-install/share/po/th.po,
+ perl-install/share/po/tl.po, perl-install/share/po/tr.po,
+ perl-install/share/po/uk.po, perl-install/share/po/uz.po,
+ perl-install/share/po/uz@Latn.po, perl-install/share/po/vi.po,
+ perl-install/share/po/wa.po, perl-install/share/po/zh_CN.po,
+ perl-install/share/po/zh_TW.po: sync with code
+
+2007-01-09 15:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draktermserv: move draktermserv in its
+ own module
+
+2007-01-09 15:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbackup,
+ perl-install/standalone/icons/ic82-CD-40.png,
+ perl-install/standalone/icons/ic82-back-up-48.png,
+ perl-install/standalone/icons/ic82-discdurwhat-40.png,
+ perl-install/standalone/icons/ic82-dossier-32.png,
+ perl-install/standalone/icons/ic82-moreoption-40.png,
+ perl-install/standalone/icons/ic82-others-40.png,
+ perl-install/standalone/icons/ic82-system-40.png,
+ perl-install/standalone/icons/ic82-users-40.png,
+ perl-install/standalone/icons/ic82-when-40.png,
+ perl-install/standalone/icons/ic82-where-40.png,
+ perl-install/standalone/icons/printerdrake.png,
+ perl-install/standalone/man: move drakbackup in its own module
+
+2007-01-09 13:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: fix choosing a not important mouse (ie
+ inside the [Other] subtree)
+
+2007-01-09 11:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksec: add missing interactive use (fix
+ crash at startup)
+
+2007-01-08 17:39 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2007-01-08 17:10 stewb
+
+ * perl-install/standalone/draktermserv: perl_checker
+
+2007-01-08 16:59 Pixel <pixel at mandriva.com>
+
+ * docs/HACKING, docs/README, kernel/Makefile, kernel/modules.pl,
+ kernel/update_kernel, make_boot_img, mdk-stage1/Makefile,
+ mdk-stage1/mar, mdk-stage1/modules.c, mdk-stage1/modules.h,
+ mdk-stage1/stage1.c, perl-install/install/install2.pm,
+ tools/update_images: drop floppy images (kernel-BOOT doesn't have
+ support for squashfs 3.0) (#27899),
+ as a consequence:
+ - drop mar support (mar was not used for all.rdz)
+ - drop code handling BOOT kernel
+ - drop the old update_images script
+
+ !! ask_insmod() in mdk-stage1/modules.c is currently broken for
+ non-mar, ie for all images !!
+
+2007-01-08 16:54 stewb
+
+ * perl-install/standalone/draktermserv: more drakTermServ ->
+ draktermserv
+
+2007-01-08 17:10 stewb
+
+ * perl-install/standalone/draktermserv: perl_checker
+
+2007-01-08 16:59 Pixel <pixel at mandriva.com>
+
+ * docs/HACKING, docs/README, kernel/Makefile, kernel/modules.pl,
+ kernel/update_kernel, make_boot_img, mdk-stage1/Makefile,
+ mdk-stage1/mar, mdk-stage1/modules.c, mdk-stage1/modules.h,
+ mdk-stage1/stage1.c, perl-install/install/install2.pm,
+ tools/update_images: drop floppy images (kernel-BOOT doesn't have
+ support for squashfs 3.0) (#27899),
+ as a consequence:
+ - drop mar support (mar was not used for all.rdz)
+ - drop code handling BOOT kernel
+ - drop the old update_images script
+
+ !! ask_insmod() in mdk-stage1/modules.c is currently broken for
+ non-mar, ie for all images !!
+
+2007-01-08 16:54 stewb
+
+ * perl-install/standalone/draktermserv: more drakTermServ ->
+ draktermserv
+
+2007-01-08 15:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (setupBootloader__entries) make default
+ entry more visible when
+ "add_modify_remove" is set
+
+2007-01-08 12:55 Pixel <pixel at mandriva.com>
+
+ * tools/install-xml-file-list: make it more explicit that this is
+ fatal
+
+2007-01-08 10:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: copy files not available at boot time
+ in /boot/copied/ (#28028)
+
+2007-01-08 10:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: no grub-graphic when using serial
+ console
+
+2007-01-08 09:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table/raw.pm: detect standard grub (which
+ is currently at 0x17f) (#27983)
+
+2007-01-06 15:27 berthy
+
+ * perl-install/standalone/po/fr.po: Update fr translation
+
+2007-01-05 16:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: don't give absolute file name to
+ set_current_name
+ (fixes install::any::media_browser)
+
+2007-01-05 09:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: add voikko-fi and
+ openoffice.org-voikko/openoffice.org64-voikko per Anssi Hannula
+ request
+
+2007-01-05 08:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: fix set_login_serial_console (use agetty, as
+ reported by buchan, #27861)
+
+2007-01-03 16:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: install "input-utils"
+ instead of "joystick"
+
+2007-01-03 11:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile.config: drakTermServ was renamed as
+ draktermserv
+
+2007-01-03 03:12 mmodem
+
+ * perl-install/install/share/po/pt.po: up
+
+2007-01-03 03:11 mmodem
+
+ * perl-install/share/po/pt.po: up
+
+2007-01-03 03:07 mmodem
+
+ * perl-install/install/share/po/pt.po: up
+
+2007-01-03 02:49 mmodem
+
+ * perl-install/share/po/pt.po: up
+
+2007-01-03 02:49 mmodem
+
+ * perl-install/standalone/po/pt.po: up
+
+2007-01-02 11:54 stewb
+
+ * perl-install/standalone/drakTermServ,
+ perl-install/standalone/draktermserv: rename (#27835)
+
+2007-01-02 10:32 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/list_modules.pm: add rt73
+
+2006-12-29 16:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm,
+ perl-install/install/steps_interactive.pm: allow to retry
+ installing a pkg (even if it already failed 3 times in a row
+ without asking)
+
+2006-12-29 16:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: further cleanup
+
+2006-12-29 16:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: cleanup
+
+2006-12-29 15:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: factorize code into _install_raw()
+ (also dropping test mode)
+
+2006-12-29 15:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: cleanup
+
+2006-12-29 15:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: factorize/cleanup some $retry_pkg
+ code
+
+2006-12-29 15:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/install2.pm: remove ugly cleaning in
+ local_install
+
+2006-12-29 14:54 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-12-29 14:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: fix ModeLine_from_string (broken
+ when introducing a normal hash in commit 101042)
+
+2006-12-29 14:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: fix ModeLine_from_string (broken
+ when introducing a normal hash in commit 101042)
+
+2006-12-29 14:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: fix ModeLine_from_string (broken
+ when introducing a normal hash in commit 101042)
+
+2006-12-29 13:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: do not allow password with grub-graphic
+
+2006-12-29 13:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: use "advanced" callbacks instead of main
+ "complete" callback
+
+2006-12-29 11:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: no resume=/dev/xxx for the failsafe
+ entry
+
+2006-12-22 15:24 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-12-22 13:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile: 10.4.88
+
+2006-12-22 12:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: fix writing gfxmenu line in menu.lst
+ when the line already existed
+
+2006-12-22 12:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: (install_server) DRI_GLX is no more
+ set for voodoo cards since there's
+ no 3D support in current driver; so don't bother installing a
+ package
+ (which what's more only driver older voodoo cards that tdfx
+ driver
+ doesn't manage)
+
+2006-12-22 12:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm,
+ perl-install/install/steps_interactive.pm: when a pkg install
+ fail, allow skipping all packages from the same medium
+
+2006-12-22 13:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile: 10.4.88
+
+2006-12-22 12:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: fix writing gfxmenu line in menu.lst
+ when the line already existed
+
+2006-12-22 12:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: (install_server) DRI_GLX is no
+ more set for voodoo cards since there's
+ no 3D support in current driver; so don't bother installing a
+ package
+ (which what's more only driver older voodoo cards that tdfx
+ driver
+ doesn't manage)
+
+2006-12-22 12:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm,
+ perl-install/install/steps_interactive.pm: when a pkg install
+ fail, allow skipping all packages from the same medium
+
+2006-12-22 12:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_gtk.pm,
+ perl-install/install/steps_interactive.pm: factorize code into
+ installPackages__handle_error()
+
+2006-12-22 11:43 ybando
+
+ * perl-install/standalone/po/ja.po: adding Plural-Forms definition
+ to ja.po
+
+2006-12-22 11:41 ybando
+
+ * perl-install/share/po/ja.po: adding Plural-Forms definition to
+ ja.po
+
+2006-12-22 11:40 ybando
+
+ * perl-install/install/share/po/ja.po: adding Plural-Forms
+ definition to ja.po
+
+2006-12-22 11:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_gtk.pm,
+ perl-install/install/steps_interactive.pm: allow deselecting
+ media if going back to setPackages()
+
+2006-12-22 11:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: don't use a global var for
+ skipping pkgs already seen, otherwise after
+ cleaning $o->{packages} in setPackages and starting again, all
+ pkgs are
+ rejected
+
+2006-12-22 10:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_interactive.pm: factorize
+
+2006-12-21 18:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: (install_server) install proper
+ driver for voodoo cards (bug seen by Gérard Delafond)
+
+2006-12-21 16:53 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/install/share/po/sr.po,
+ perl-install/install/share/po/sr@Latn.po: updated Serbian files
+
+2006-12-21 16:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: fix get_Revision (was broken of 2
+ previous commits)
+
+2006-12-21 15:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: better var name
+
+2006-12-21 15:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: use a normal hash for the object
+ instead of a array ref
+ (it will allow adding some more attrs in next commit)
+
+2006-12-21 15:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile: new release
+
+2006-12-21 14:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mygtk2.pm: (_gtk_any_Button) do not add an empty
+ child if none was provided, thus
+ preventing later ->add() to failed
+
+2006-12-21 14:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/common.pm: introduce P() for translating
+ singular/plural strings
+
+2006-12-21 13:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/main.pm, perl-install/Xconfig/xfree.pm:
+ handle empty/missing xorg.conf in Xconfig::xfree
+
+2006-12-21 13:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: install openoffice.org64 on
+ x86_64
+
+2006-12-21 10:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/parse.pm: rename a few more vars
+
+2006-12-21 10:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/parse.pm: - make it clearer which functions
+ are used internally to this module
+ - make it a little clearer the difference between "raw" and
+ "rraw"
+
+2006-12-20 19:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: menudrake doesn't exist
+ anymore
+
+2006-12-20 18:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: raise drakx tools level
+
+2006-12-20 16:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm: allow
+ to skip packages in auto_install, with new $o->{skipped_packages}
+
+2006-12-20 16:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/any.pm: fix automatic X video dkms packages
+ installation
+
+2006-12-20 15:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/install2.pm, perl-install/install/steps.pm:
+ move deploy_server notification in install::steps::exitInstall()
+ now that it is called even if autoExitInstall is set
+
+2006-12-20 12:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/media.pm: fix selected_names option (which
+ is a string now)
+
+2006-12-19 17:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/fs/partitioning_wizard.pm,
+ perl-install/install/interactive.pm: move use utf8 in
+ fs::partitioning_wizard
+
+2006-12-19 17:29 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-12-19 16:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: bump koffice level, it is
+ required by kivio anyway
+ * perl-install/install/share/rpmsrate: lower kivio and dia level
+
+2006-12-19 16:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: group kde stuff in
+ CAT_OFFICE
+
+2006-12-19 16:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: bump koffice level, it is
+ required by kivio anyway
+ * perl-install/install/share/rpmsrate: lower kivio and dia level
+
+2006-12-19 16:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: group kde stuff in
+ CAT_OFFICE
+
+2006-12-19 15:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: lower nvu and planner
+ rpmsrate level
+
+2006-12-19 15:25 Olivier Blin <oblin at mandriva.com>
+
+ * soft/drakx-net/trunk/lib/network/network.pm,
+ perl-install/install/steps.pm: move install specific code in
+ install::steps
+
+2006-12-19 14:53 mmodem
+
+ * perl-install/standalone/po/pt.po: update
+ * perl-install/share/po/pt.po: update
+
+2006-12-19 10:08 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-12-18 17:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_gtk.pm,
+ perl-install/install/steps_interactive.pm: use formatAlaTeX for
+ better wrapping
+
+2006-12-18 16:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: {all_hds} and {fstab} need to be
+ created
+
+2006-12-18 16:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps.pm: fix creating a sub calling
+ $o->rebootNeeded
+
+2006-12-18 16:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/fs/any.pm: fix reverted "skip mtab" conditionnal
+
+2006-12-18 17:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_gtk.pm,
+ perl-install/install/steps_interactive.pm: use formatAlaTeX for
+ better wrapping
+
+2006-12-18 16:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: {all_hds} and {fstab} need to be
+ created
+
+2006-12-18 16:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps.pm: fix creating a sub calling
+ $o->rebootNeeded
+
+2006-12-18 16:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/fs/any.pm: fix reverted "skip mtab" conditionnal
+
+2006-12-18 14:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/install2.pm, perl-install/install/steps.pm,
+ perl-install/install/steps_auto_install.pm: - do postInstall and
+ postInstallNonRooted at beginning of step exitInstall so
+ that it's done before umounting /tmp/image
+ - create postInstallBeforeReboot which is alike postInstall but
+ is done just
+ before rebooting
+
+2006-12-16 01:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/harddrake/autoconf.pm: always disable compositing
+ desktop effects when configuring a new video card
+
+2006-12-16 01:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/do_pkgs.pm: remove interactive object vivification
+ in do_pkgs, thus making the harddrake service really
+ non-interactive, as well as localedrake --apply
+
+2006-12-16 01:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/harddrake2: do not explicitely create
+ do_pkgs objects
+
+2006-12-16 01:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksec: perl_checker style
+ * perl-install/standalone/draksec: simplify
+
+2006-12-16 00:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksec: do not create
+ do_pkgs_standalone objects directly
+
+2006-12-16 00:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksec: require to be root to run
+ draksec (and introduce interactive object for future usage)
+
+2006-12-16 00:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/do_pkgs.pm: protect some do->in calls
+
+2006-12-15 23:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/any.pm: simplify
+ * perl-install/any.pm, perl-install/standalone/drakboot: move
+ bootloader choice loop from drakboot to
+ any::setupBootloaderUntilInstalled()
+
+2006-12-15 23:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakboot: perl_checker style
+
+2006-12-15 22:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/diskdrake: remove one more nowizard
+ variable
+
+2006-12-15 22:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/diskdrake/hd_gtk.pm,
+ perl-install/diskdrake/interactive.pm,
+ perl-install/fs/partitioning_wizard.pm: the Wizard choice
+ actually died the day the expert mode stopped starting diskdrake
+ (20021212 in install_steps_interactive)
+
+2006-12-15 22:26 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/fs/partitioning_wizard.pm: use original nodiskdrake
+ name
+
+2006-12-15 22:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/fs/partitioning_wizard.pm: fix nowizard
+
+2006-12-15 22:12 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/diskdrake/hd_gtk.pm,
+ perl-install/standalone/diskdrake: gather help functions back in
+ diskdrake::hd_gtk
+
+2006-12-15 21:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm,
+ perl-install/fs/partitioning_wizard.pm: restore actually used
+ Wizard
+
+2006-12-15 21:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm,
+ perl-install/fs/partitioning_wizard.pm: remove unused nowizard
+ variable
+
+2006-12-15 20:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/fs/partitioning_wizard.pm,
+ perl-install/install/steps_interactive.pm: move "reboot needed"
+ warning in fs::partitioning_wizard
+
+2006-12-15 20:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/fs/any.pm, perl-install/fs/partitioning_wizard.pm:
+ fix really lame typos/mistakes
+
+2006-12-15 19:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/fs/partitioning_wizard.pm,
+ perl-install/install/steps_interactive.pm: rename
+ partitionWizard as fs::partitioning_wizard::main
+
+2006-12-15 19:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/steps_interactive.pm: use
+ fs::partitioning_wizard
+
+2006-12-15 19:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/fs/partitioning_wizard.pm,
+ perl-install/install/interactive.pm: move partitioning wizard
+ from install::interactive to fs::partitioning_wizard
+
+2006-12-15 19:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm,
+ perl-install/install/interactive.pm,
+ perl-install/standalone/diskdrake: remove unused diskdrake help
+ code
+
+2006-12-15 18:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/interactive.pm,
+ perl-install/install/steps_interactive.pm: explode install
+ specific stuff in install:interactive partitioning wizard
+
+2006-12-15 18:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm,
+ perl-install/install/interactive.pm: remove unused code
+
+2006-12-15 18:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/fs/any.pm, perl-install/install/steps.pm: split
+ some doPartitionDisksAfter code in fs::any::write::hds and
+ fs::any::check_hds_boot_and_root
+
+2006-12-15 17:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/fs/any.pm, perl-install/install/any.pm: move
+ install::any::getHds code in new fs::any::get_hds
+
+2006-12-15 13:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/ftp.pm: after _rewindGetFile(), we *must*
+ call _new() !
+
+2006-12-15 12:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/list.xml: we don't use imlib anymore,
+ no need for its conf files
+
+2006-12-15 11:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: ignore etags not installed
+
+2006-12-15 11:39 Olivier Blin <oblin at mandriva.com>
+
+ * Makefile: upload sqfs files instead of clp
+
+2006-12-15 10:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/ftp.pm: be more verbose when things go wrong
+
+2006-12-15 09:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/list.xml: Scalar::Util and List::Util
+ are needeed by autoload (from Net::FTP::close) (?)
+
+2006-12-14 17:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/fs/mount_point.pm, perl-install/fs/partitioning.pm:
+ return a true value
+
+2006-12-14 17:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/any.pm: remove unused label
+
+2006-12-14 17:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/fs/partitioning.pm: remove unnecessary use
+
+2006-12-14 17:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/fs/partitioning.pm: use fs::type
+
+2006-12-14 17:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/install2.pm, perl-install/install/steps.pm,
+ perl-install/install/steps_interactive.pm: factorize some
+ local_install check and drop unused fstab argument
+
+2006-12-14 17:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/fs/partitioning.pm, perl-install/install/steps.pm,
+ perl-install/install/steps_interactive.pm: move
+ choosePartitionsToFormat in fs::partitioning
+
+2006-12-14 16:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/fs/partitioning.pm,
+ perl-install/install/steps_interactive.pm: move
+ install::steps_interactive::formatMountPartitions in new
+ fs::partitioning
+
+2006-12-14 16:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/fs/mount_point.pm: add Id
+
+2006-12-14 15:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/fs/mount_point.pm,
+ perl-install/install/interactive.pm,
+ perl-install/install/steps.pm,
+ perl-install/install/steps_interactive.pm: move ask_mntpoint
+ functions in fs::mount_point
+
+2006-12-14 15:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/fs/mount_point.pm, perl-install/install/any.pm,
+ perl-install/install/steps_interactive.pm: move some mount point
+ related functions in fs::mount_point
+
+2006-12-14 15:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_interactive.pm: allow choosing
+ deselect_media and copy_on_disk in non gtk install
+
+2006-12-14 14:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/dbus_object.pm, perl-install/do_pkgs.pm: revert
+ debug code /o\
+
+2006-12-14 14:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/dbus_object.pm, perl-install/do_pkgs.pm,
+ perl-install/install/any.pm, perl-install/install/media.pm:
+ introduce a 'selected_names' option for media_cfg media, to
+ allow to provide a default media selection in auto_install
+
+2006-12-14 14:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/curses.pm: correctly size truncated
+ labels
+
+2006-12-14 10:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/curses.pm: handle separately a checkbox
+ that can be "disabled" ("disabled" is not handled
+ in "checkboxes")
+
+2006-12-14 02:15 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/standalone/po/ru.po: updated translation
+
+2006-12-13 20:16 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/install/share/po/wa.po: updated po file
+
+2006-12-13 17:43 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-12-13 17:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/format.pm: setting user_xattr on /home (or "/"
+ if no /home)
+
+2006-12-13 17:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_auto_install.pm: create
+ ->wait_message_with_progress_bar which doesn't do anything
+
+2006-12-13 17:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/format.pm: setting user_xattr on /home (or "/"
+ if no /home)
+
+2006-12-13 17:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_auto_install.pm: create
+ ->wait_message_with_progress_bar which doesn't do anything
+
+2006-12-13 14:37 Olivier Blin <oblin at mandriva.com>
+
+ * soft/draklive, soft/draklive-install,
+ soft/draklive-install/trunk, soft/draklive/trunk, live: move
+ draklive and draklive-install in their own remodule (thus
+ removing /soft/drakx/live)
+
+2006-12-13 14:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive.pm, perl-install/interactive/curses.pm,
+ perl-install/interactive/gtk.pm: fix the various
+ wait_message_with_progress_bar, changing a little the
+ behaviour. This helps those windows to disappear after being
+ used. Esp. for
+ curses, but may also gtk. Also fix the generic method displaying
+ "ARRAY..."
+
+2006-12-13 14:30 Olivier Blin <oblin at mandriva.com>
+
+ * config/One/trunk, live/One: move One config in /config/One
+
+2006-12-13 14:17 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl, live/One/config/live.cfg,
+ live/One/config/local.cfg, live/One/config/rpmsrate,
+ live/One/files/kside-FLASH238.png,
+ live/One/files/mandriva-RealPlayer.desktop,
+ live/One/patches/harddrake-interactive.patch,
+ live/One/patches/harddrake-switch3d.patch, live/One/tools: merge
+ changes from 2007.0 branch
+
+2006-12-13 14:02 Olivier Blin <oblin at mandriva.com>
+
+ * tools/drakx-in-chroot: use squashfs instead of clp
+
+2006-12-13 13:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: *** empty log message ***
+
+2006-12-13 12:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/cy.po: update (Rhoslyn Prys)
+
+2006-12-13 12:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/cy.po: update (Rhoslyn Prys)
+
+2006-12-13 12:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/cy.po: update (Rhoslyn Prys)
+
+2006-12-13 11:51 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: merge more 2007.0 changes
+
+2006-12-13 10:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: don't drop password in grub menu.lst
+
+2006-12-13 10:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: drop unused callback
+
+2006-12-13 09:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: don't use focus_first
+ when the first entry is a title (#26977)
+
+2006-12-12 16:30 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-12-12 16:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/devices.pm, perl-install/install/any.pm,
+ perl-install/install/install2.pm: adapt to mdkinst.clp ->
+ mdkinst.sqfs
+
+2006-12-12 16:08 Olivier Blin <oblin at mandriva.com>
+
+ * docs/HACKING: simplify using task-drakx-devel
+
+2006-12-12 15:50 Pixel <pixel at mandriva.com>
+
+ * rescue: ignore rescue.sqfs
+
+2006-12-12 15:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/compssUsers.pl: nicer layout
+
+2006-12-12 15:40 Olivier Blin <oblin at mandriva.com>
+
+ * tools/mdkinst_stage2_tool: fix package name
+
+2006-12-12 15:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/steps_gtk.pm: (reallyChooseGroups) better
+ layout that fit with most locale/font combinaisons
+
+2006-12-12 15:35 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/list_modules.pm, mdk-stage1/config-stage1.h,
+ mdk-stage1/lomount.c, rescue/Makefile, rescue/make_rescue_img,
+ tools/mdkinst_stage2_tool: use squashfs instead of gzloop
+
+2006-12-12 15:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: also add a progress bar for
+ downloading synthesis (is this really needed?)
+
+2006-12-12 15:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/ftp.pm, perl-install/install/http.pm,
+ perl-install/install/media.pm,
+ perl-install/install/share/list.xml: create
+ getAndSaveFile_progress() and the various code needed for it.
+ it allows a nice progress bar when downloading hdlist :)
+
+2006-12-12 16:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/devices.pm, perl-install/install/any.pm,
+ perl-install/install/install2.pm: adapt to mdkinst.clp ->
+ mdkinst.sqfs
+
+2006-12-12 16:08 Olivier Blin <oblin at mandriva.com>
+
+ * docs/HACKING: simplify using task-drakx-devel
+
+2006-12-12 15:50 Pixel <pixel at mandriva.com>
+
+ * rescue: ignore rescue.sqfs
+
+2006-12-12 15:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/compssUsers.pl: nicer layout
+
+2006-12-12 15:40 Olivier Blin <oblin at mandriva.com>
+
+ * tools/mdkinst_stage2_tool: fix package name
+
+2006-12-12 15:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/steps_gtk.pm: (reallyChooseGroups) better
+ layout that fit with most locale/font combinaisons
+
+2006-12-12 15:35 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/list_modules.pm, mdk-stage1/config-stage1.h,
+ mdk-stage1/lomount.c, rescue/Makefile, rescue/make_rescue_img,
+ tools/mdkinst_stage2_tool: use squashfs instead of gzloop
+
+2006-12-12 15:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: also add a progress bar for
+ downloading synthesis (is this really needed?)
+
+2006-12-12 15:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/ftp.pm, perl-install/install/http.pm,
+ perl-install/install/media.pm,
+ perl-install/install/share/list.xml: create
+ getAndSaveFile_progress() and the various code needed for it.
+ it allows a nice progress bar when downloading hdlist :)
+
+2006-12-12 14:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Makefile, tools/mdkinst_stage2_tool: rename
+ mdkinst_stage2_tool parameters and makefile target to remove clp
+ occurences
+
+2006-12-12 14:09 Olivier Blin <oblin at mandriva.com>
+
+ * docs/HACKING: add more fonts
+
+2006-12-12 13:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: when the mirror list can't be
+ retrieved, prompt for a URL
+
+2006-12-12 13:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/media.pm,
+ perl-install/install/steps.pm,
+ perl-install/install/steps_interactive.pm: global wait_message
+ is evil here since the function may even ask questions (in
+ selectSupplMedia)
+
+2006-12-12 13:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/.perl_checker: have no error when urpmi-ldap and
+ urpmi-parallel-* are not installed
+
+2006-12-12 12:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: always display the wait_message
+ when copying/downloading hdlist
+
+2006-12-12 12:09 Olivier Blin <oblin at mandriva.com>
+
+ * tools/drakx-in-chroot: rename compressed file variables
+
+2006-12-12 12:02 Olivier Blin <oblin at mandriva.com>
+
+ * rescue/Makefile: simplify
+
+2006-12-12 12:01 Olivier Blin <oblin at mandriva.com>
+
+ * docs/HACKING: add testdisk in required packages list (needed for
+ rescue)
+
+2006-12-12 11:48 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/lomount.c, mdk-stage1/lomount.h: remove more gz
+ variables
+
+2006-12-12 11:44 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/cdrom.c, mdk-stage1/config-stage1.h,
+ mdk-stage1/directory.c, mdk-stage1/lomount.c,
+ mdk-stage1/network.c, mdk-stage1/tools.c, mdk-stage1/tools.h:
+ rename variables for next commit
+
+2006-12-12 10:42 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/disk.c, mdk-stage1/partition.c: remove useless
+ includes
+
+2006-12-12 10:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: ensure message does not contain the
+ old graphic format (#27631)
+
+2006-12-11 19:59 nbauer
+
+ * perl-install/standalone/po/de.po: Update German translation
+ (Nicolas Bauer)
+
+2006-12-11 16:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: same filesystems can be
+ mounted, but not formatted (eg: befs = BeOS fs). for
+ them, don't check availibility of the mkfs.xxx (#27451)
+
+2006-12-11 15:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/monitor.pm: some EDID are much too strict:
+ the HorizSync range is too small to allow
+ smaller resolutions (#27162)
+
+2006-12-11 15:20 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-12-11 12:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/install2.pm: set a valid locale before
+ running curses
+
+2006-12-11 12:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: reduce thai font too at install time
+
+2006-12-11 11:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (charset2pango_font) reduce default size
+ at install time
+
+2006-12-11 12:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/install2.pm: set a valid locale before
+ running curses
+
+2006-12-11 12:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: reduce thai font too at install time
+
+2006-12-11 11:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (charset2pango_font) reduce default size
+ at install time
+
+2006-12-10 14:15 berthy
+
+ * perl-install/standalone/po/fr.po: Update fr translation
+
+2006-12-09 16:36 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/validate.pl: converted to utf-8
+
+2006-12-09 16:28 Pablo Saratxaga <pablo at mandriva.com>
+
+ * mdk-stage1/insmod-busybox/insmod.c,
+ mdk-stage1/insmod-modutils/include/config.h,
+ mdk-stage1/insmod-modutils/include/modstat.h,
+ mdk-stage1/insmod-modutils/include/obj.h,
+ mdk-stage1/insmod-modutils/insmod.c,
+ mdk-stage1/insmod-modutils/obj/obj_load.c,
+ mdk-stage1/insmod-modutils/util/config.c,
+ mdk-stage1/insmod-modutils/util/meta_expand.c,
+ mdk-stage1/insmod-modutils/util/modstat.c,
+ mdk-stage1/nfsmount.c, mdk-stage1/ppp/pppd/ipv6cp.c,
+ mdk-stage1/ppp/pppd/ipv6cp.h, mdk-stage1/slang/sltoken.c:
+ converted to utf-8
+
+2006-12-08 18:04 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/doc/TECH-INFOS: fix typo
+
+2006-12-08 17:35 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-12-08 16:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: adapt to an old mdkinst_stage2_tool modif
+
+2006-12-08 16:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: simplify
+
+2006-12-08 16:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/media.pm,
+ perl-install/install/steps.pm,
+ perl-install/install/steps_interactive.pm: - don't use $::o,
+ pass a $in around
+ - do display the wait_message ($phys_m->{method} is good,
+ $m->{method} is invalid)
+
+2006-12-08 16:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: restore pressing "Enter" that
+ may_go_to_next
+
+2006-12-08 16:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: focus the language to choose
+
+2006-12-08 15:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: ensure mandriva-gfxboot-theme is
+ installed when asking for grub-graphic (#27557)
+
+2006-12-08 16:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: adapt to an old mdkinst_stage2_tool modif
+
+2006-12-08 16:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: simplify
+
+2006-12-08 16:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/media.pm,
+ perl-install/install/steps.pm,
+ perl-install/install/steps_interactive.pm: - don't use $::o,
+ pass a $in around
+ - do display the wait_message ($phys_m->{method} is good,
+ $m->{method} is invalid)
+
+2006-12-08 16:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: restore pressing "Enter" that
+ may_go_to_next
+
+2006-12-08 16:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: focus the language to choose
+
+2006-12-08 15:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: ensure mandriva-gfxboot-theme is
+ installed when asking for grub-graphic (#27557)
+
+2006-12-08 08:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/list.xml: take drakx-net modules from
+ installed system
+ * docs/HACKING: drakx-net pkg needed
+
+2006-12-07 16:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: use ->build_synthesis instead of
+ calling gzip directly (fixes #27518)
+
+2006-12-07 15:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile: new release
+
+2006-12-07 14:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: adapt to new urpmi:
+ - use urpmi netrc instead of file list
+ - use media_info_dir
+ - don't set "hdlist: xxx"
+
+2006-12-07 13:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: handle {message} in 'expander'
+ (ie {advanced_messages})
+
+2006-12-07 13:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/main.pm: "resolution_wanted => 1280" in
+ auto_inst results to 1280x960. the code already
+ handles "resolution_wanted => '1280x1024'", but the
+ automatically generated
+ auto_inst contains only 1280, fixing (thanks to chipaux)
+
+2006-12-07 08:16 berthy
+
+ * perl-install/share/po/fr.po: Update fr translation
+
+2006-12-07 08:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile.config: fs/remote dir has been added
+
+2006-12-07 07:57 berthy
+
+ * perl-install/install/share/po/fr.po: Update fr translation
+
+2006-12-06 18:33 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-12-06 17:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootloader.pm: (read) simplify
+
+2006-12-06 16:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: add silo
+
+2006-12-06 17:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootloader.pm: (read) simplify
+
+2006-12-06 16:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: add silo
+
+2006-12-06 15:33 Pixel <pixel at mandriva.com>
+
+ * Makefile, isolinux-graphic-simple.bmp,
+ isolinux-graphic-simple.bmp.parameters, isolinux-graphic.bmp,
+ isolinux-graphic.bmp.parameters, make_boot_img,
+ perl-install/standalone/draksplash2: bmp2mdk is no more
+
+2006-12-06 15:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: install
+ mandriva-gfxboot-theme
+
+2006-12-06 13:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: use gfxmenu instead of splashimage
+ for grub
+
+2006-12-06 10:28 stewb
+
+ * perl-install/standalone/drakbackup: /mnt -> /media
+
+2006-12-06 10:22 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: merge changes from 2007.0 branch
+
+2006-12-05 20:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile: new release
+
+2006-12-05 15:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/removable.pm, perl-install/fs.pm,
+ perl-install/fsedit.pm, perl-install/install/media.pm,
+ perl-install/standalone/diskdrake,
+ perl-install/standalone/drakupdate_fstab: move from /mnt to
+ /media
+
+2006-12-05 15:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/do_pkgs.pm: - adapt to new urpmi API
+ - fix handling virtual media (they have no local synthesis)
+
+2006-12-05 14:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: drop lilo-graphic support (favoring
+ of grub+gfxboot)
+
+2006-12-05 14:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: (report_bug): add install.sh and device.map
+ grub files
+
+2006-12-05 14:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm, perl-install/bootloader.pm: handle both
+ lilo and grub pkg install
+
+2006-12-05 13:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: grub is the default
+
+2006-12-05 13:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: prefer grub over lilo
+
+2006-12-05 11:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: minimal silo support (untested)
+
+2006-12-04 23:57 mmodem
+
+ * perl-install/standalone/po/pt.po: update
+
+2006-12-04 23:04 mmodem
+
+ * perl-install/standalone/po/pt.po: update
+
+2006-12-04 22:13 mmodem
+
+ * perl-install/install/share/po/pt.po: update
+
+2006-12-04 20:31 nbauer
+
+ * perl-install/install/share/po/de.po: Update German translation
+ (Nicolas Bauer)
+
+2006-12-04 17:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: minimal change to ensure the
+ BOOT_IMAGE given doesn't cause havoc because it
+ contains spaces
+
+2006-12-04 17:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: create simplify_label()
+
+2006-12-03 22:49 Marek Laane <bald at starman.ee>
+
+ * perl-install/standalone/po/et.po: Updated Estonian translation.
+
+2006-12-03 22:37 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po: Updated Estonian translation.
+
+2006-12-03 22:19 Marek Laane <bald at starman.ee>
+
+ * perl-install/install/share/po/et.po: Updated Estonian
+ translation.
+
+2006-12-03 14:22 ybando
+
+ * perl-install/install/share/po/ja.po: updating Japanese
+ translation
+
+2006-12-03 14:19 ybando
+
+ * perl-install/share/po/ja.po: updating Japanese translation
+
+2006-12-02 18:30 mmodem
+
+ * perl-install/install/share/po/pt.po: fix some strings
+
+2006-12-02 18:23 mmodem
+
+ * perl-install/share/po/pt.po: fix some strings
+
+2006-12-01 01:37 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/install/share/po/id.po: Updated
+
+2006-12-01 01:33 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/standalone/po/id.po: Updated
+
+2006-12-01 01:22 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2006-11-30 21:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/.perl_checker: sort
+ * perl-install/.perl_checker: kill doble entries
+
+2006-11-30 21:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/.perl_checker: unblacklist URPM::Build and
+ urpm::ldap which are now parsable by perl_checker
+
+2006-11-30 20:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: perl_checker cleanups (more to go away
+ with latest perl_checker from SVN)
+
+2006-11-30 19:29 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/wa.po: updated Walloon file
+
+2006-11-30 18:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/pixmaps/about-printerdrake.png,
+ perl-install/pixmaps/printer-mdk.png,
+ perl-install/pixmaps/printer_add.png,
+ perl-install/pixmaps/printer_conf.png,
+ perl-install/pixmaps/printer_default.png,
+ perl-install/pixmaps/printer_del.png,
+ perl-install/pixmaps/printerdrake.png: printerdrake icons were
+ moved away
+
+2006-11-30 14:59 Olivier Blin <oblin at mandriva.com>
+
+ * soft/drakx-net/trunk/Makefile, soft/drakx-net/trunk/data/icons,
+ soft/drakx-net/trunk/data/icons/drakconnect.png,
+ soft/drakx-net/trunk/data/icons/drakfirewall.png,
+ soft/drakx-net/trunk/data/icons/drakgw.png,
+ soft/drakx-net/trunk/data/icons/draknetprofile-16.png,
+ soft/drakx-net/trunk/data/icons/draknetprofile-24.png,
+ soft/drakx-net/trunk/data/icons/draknetprofile-32.png,
+ soft/drakx-net/trunk/data/icons/draknetprofile-52.png,
+ soft/drakx-net/trunk/data/icons/draknetprofile-64.png,
+ soft/drakx-net/trunk/data/icons/draknetprofile.png,
+ soft/drakx-net/trunk/data/icons/draknetprofile_128.png,
+ soft/drakx-net/trunk/data/icons/drakvpn-16.png,
+ soft/drakx-net/trunk/data/icons/drakvpn-24.png,
+ soft/drakx-net/trunk/data/icons/drakvpn-32.png,
+ soft/drakx-net/trunk/data/icons/drakvpn-52.png,
+ soft/drakx-net/trunk/data/icons/drakvpn-64.png,
+ soft/drakx-net/trunk/data/icons/drakvpn.png,
+ soft/drakx-net/trunk/data/icons/drakvpn_128.png,
+ soft/drakx-net/trunk/data/icons/invictus-16.png,
+ soft/drakx-net/trunk/data/icons/invictus-24.png,
+ soft/drakx-net/trunk/data/icons/invictus-32.png,
+ soft/drakx-net/trunk/data/icons/invictus-52.png,
+ soft/drakx-net/trunk/data/icons/invictus-64.png,
+ soft/drakx-net/trunk/data/icons/invictus.png,
+ soft/drakx-net/trunk/data/icons/invictus_128.png,
+ soft/drakx-net/trunk/data/pixmaps,
+ soft/drakx-net/trunk/data/pixmaps/bluetooth-128.png,
+ soft/drakx-net/trunk/data/pixmaps/bluetooth-16.png,
+ soft/drakx-net/trunk/data/pixmaps/bluetooth-24.png,
+ soft/drakx-net/trunk/data/pixmaps/bluetooth-32.png,
+ soft/drakx-net/trunk/data/pixmaps/bluetooth-48.png,
+ soft/drakx-net/trunk/data/pixmaps/bluetooth-52.png,
+ soft/drakx-net/trunk/data/pixmaps/bluetooth-64.png,
+ soft/drakx-net/trunk/data/pixmaps/cablemodem-128.png,
+ soft/drakx-net/trunk/data/pixmaps/cablemodem-16.png,
+ soft/drakx-net/trunk/data/pixmaps/cablemodem-24.png,
+ soft/drakx-net/trunk/data/pixmaps/cablemodem-32.png,
+ soft/drakx-net/trunk/data/pixmaps/cablemodem-48.png,
+ soft/drakx-net/trunk/data/pixmaps/cablemodem-52.png,
+ soft/drakx-net/trunk/data/pixmaps/cablemodem-64.png,
+ soft/drakx-net/trunk/data/pixmaps/cellular-128.png,
+ soft/drakx-net/trunk/data/pixmaps/cellular-16.png,
+ soft/drakx-net/trunk/data/pixmaps/cellular-24.png,
+ soft/drakx-net/trunk/data/pixmaps/cellular-32.png,
+ soft/drakx-net/trunk/data/pixmaps/cellular-48.png,
+ soft/drakx-net/trunk/data/pixmaps/cellular-52.png,
+ soft/drakx-net/trunk/data/pixmaps/cellular-64.png,
+ soft/drakx-net/trunk/data/pixmaps/connected.png,
+ soft/drakx-net/trunk/data/pixmaps/disconnected.png,
+ soft/drakx-net/trunk/data/pixmaps/dvb-128.png,
+ soft/drakx-net/trunk/data/pixmaps/dvb-16.png,
+ soft/drakx-net/trunk/data/pixmaps/dvb-24.png,
+ soft/drakx-net/trunk/data/pixmaps/dvb-32.png,
+ soft/drakx-net/trunk/data/pixmaps/dvb-48.png,
+ soft/drakx-net/trunk/data/pixmaps/dvb-52.png,
+ soft/drakx-net/trunk/data/pixmaps/dvb-64.png,
+ soft/drakx-net/trunk/data/pixmaps/encryption-open-24.png,
+ soft/drakx-net/trunk/data/pixmaps/encryption-strong-24.png,
+ soft/drakx-net/trunk/data/pixmaps/encryption-weak-24.png,
+ soft/drakx-net/trunk/data/pixmaps/ethernet-128.png,
+ soft/drakx-net/trunk/data/pixmaps/ethernet-16.png,
+ soft/drakx-net/trunk/data/pixmaps/ethernet-24.png,
+ soft/drakx-net/trunk/data/pixmaps/ethernet-32.png,
+ soft/drakx-net/trunk/data/pixmaps/ethernet-48.png,
+ soft/drakx-net/trunk/data/pixmaps/ethernet-52.png,
+ soft/drakx-net/trunk/data/pixmaps/ethernet-64.png,
+ soft/drakx-net/trunk/data/pixmaps/isdn-128.png,
+ soft/drakx-net/trunk/data/pixmaps/isdn-16.png,
+ soft/drakx-net/trunk/data/pixmaps/isdn-24.png,
+ soft/drakx-net/trunk/data/pixmaps/isdn-32.png,
+ soft/drakx-net/trunk/data/pixmaps/isdn-48.png,
+ soft/drakx-net/trunk/data/pixmaps/isdn-52.png,
+ soft/drakx-net/trunk/data/pixmaps/isdn-64.png,
+ soft/drakx-net/trunk/data/pixmaps/potsmodem-128.png,
+ soft/drakx-net/trunk/data/pixmaps/potsmodem-16.png,
+ soft/drakx-net/trunk/data/pixmaps/potsmodem-24.png,
+ soft/drakx-net/trunk/data/pixmaps/potsmodem-32.png,
+ soft/drakx-net/trunk/data/pixmaps/potsmodem-48.png,
+ soft/drakx-net/trunk/data/pixmaps/potsmodem-52.png,
+ soft/drakx-net/trunk/data/pixmaps/potsmodem-64.png,
+ soft/drakx-net/trunk/data/pixmaps/wifi-020.png,
+ soft/drakx-net/trunk/data/pixmaps/wifi-040.png,
+ soft/drakx-net/trunk/data/pixmaps/wifi-060.png,
+ soft/drakx-net/trunk/data/pixmaps/wifi-080.png,
+ soft/drakx-net/trunk/data/pixmaps/wifi-100.png,
+ soft/drakx-net/trunk/data/pixmaps/wireless-128.png,
+ soft/drakx-net/trunk/data/pixmaps/wireless-16.png,
+ soft/drakx-net/trunk/data/pixmaps/wireless-24.png,
+ soft/drakx-net/trunk/data/pixmaps/wireless-32.png,
+ soft/drakx-net/trunk/data/pixmaps/wireless-48.png,
+ soft/drakx-net/trunk/data/pixmaps/wireless-52.png,
+ soft/drakx-net/trunk/data/pixmaps/wireless-64.png,
+ soft/drakx-net/trunk/data/pixmaps/xdsl-128.png,
+ soft/drakx-net/trunk/data/pixmaps/xdsl-16.png,
+ soft/drakx-net/trunk/data/pixmaps/xdsl-24.png,
+ soft/drakx-net/trunk/data/pixmaps/xdsl-32.png,
+ soft/drakx-net/trunk/data/pixmaps/xdsl-48.png,
+ soft/drakx-net/trunk/data/pixmaps/xdsl-52.png,
+ soft/drakx-net/trunk/data/pixmaps/xdsl-64.png,
+ perl-install/pixmaps/bluetooth-128.png,
+ perl-install/pixmaps/bluetooth-16.png,
+ perl-install/pixmaps/bluetooth-24.png,
+ perl-install/pixmaps/bluetooth-32.png,
+ perl-install/pixmaps/bluetooth-48.png,
+ perl-install/pixmaps/bluetooth-52.png,
+ perl-install/pixmaps/bluetooth-64.png,
+ perl-install/pixmaps/cablemodem-128.png,
+ perl-install/pixmaps/cablemodem-16.png,
+ perl-install/pixmaps/cablemodem-24.png,
+ perl-install/pixmaps/cablemodem-32.png,
+ perl-install/pixmaps/cablemodem-48.png,
+ perl-install/pixmaps/cablemodem-52.png,
+ perl-install/pixmaps/cablemodem-64.png,
+ perl-install/pixmaps/cellular-128.png,
+ perl-install/pixmaps/cellular-16.png,
+ perl-install/pixmaps/cellular-24.png,
+ perl-install/pixmaps/cellular-32.png,
+ perl-install/pixmaps/cellular-48.png,
+ perl-install/pixmaps/cellular-52.png,
+ perl-install/pixmaps/cellular-64.png,
+ perl-install/pixmaps/connected.png,
+ perl-install/pixmaps/disconnected.png,
+ perl-install/pixmaps/dvb-128.png,
+ perl-install/pixmaps/dvb-16.png,
+ perl-install/pixmaps/dvb-24.png,
+ perl-install/pixmaps/dvb-32.png,
+ perl-install/pixmaps/dvb-48.png,
+ perl-install/pixmaps/dvb-52.png,
+ perl-install/pixmaps/dvb-64.png,
+ perl-install/pixmaps/encryption-open-24.png,
+ perl-install/pixmaps/encryption-strong-24.png,
+ perl-install/pixmaps/encryption-weak-24.png,
+ perl-install/pixmaps/ethernet-128.png,
+ perl-install/pixmaps/ethernet-16.png,
+ perl-install/pixmaps/ethernet-24.png,
+ perl-install/pixmaps/ethernet-32.png,
+ perl-install/pixmaps/ethernet-52.png,
+ perl-install/pixmaps/ethernet-64.png,
+ perl-install/pixmaps/ethernet48.png,
+ perl-install/pixmaps/isdn-128.png,
+ perl-install/pixmaps/isdn-16.png,
+ perl-install/pixmaps/isdn-24.png,
+ perl-install/pixmaps/isdn-32.png,
+ perl-install/pixmaps/isdn-48.png,
+ perl-install/pixmaps/isdn-52.png,
+ perl-install/pixmaps/isdn-64.png,
+ perl-install/pixmaps/potsmodem-128.png,
+ perl-install/pixmaps/potsmodem-16.png,
+ perl-install/pixmaps/potsmodem-24.png,
+ perl-install/pixmaps/potsmodem-32.png,
+ perl-install/pixmaps/potsmodem-48.png,
+ perl-install/pixmaps/potsmodem-52.png,
+ perl-install/pixmaps/potsmodem-64.png,
+ perl-install/pixmaps/wifi-020.png,
+ perl-install/pixmaps/wifi-040.png,
+ perl-install/pixmaps/wifi-060.png,
+ perl-install/pixmaps/wifi-080.png,
+ perl-install/pixmaps/wifi-100.png,
+ perl-install/pixmaps/wireless-128.png,
+ perl-install/pixmaps/wireless-16.png,
+ perl-install/pixmaps/wireless-24.png,
+ perl-install/pixmaps/wireless-32.png,
+ perl-install/pixmaps/wireless-48.png,
+ perl-install/pixmaps/wireless-52.png,
+ perl-install/pixmaps/wireless-64.png,
+ perl-install/pixmaps/xdsl-128.png,
+ perl-install/pixmaps/xdsl-16.png,
+ perl-install/pixmaps/xdsl-24.png,
+ perl-install/pixmaps/xdsl-32.png,
+ perl-install/pixmaps/xdsl-48.png,
+ perl-install/pixmaps/xdsl-52.png,
+ perl-install/pixmaps/xdsl-64.png,
+ perl-install/standalone/icons/drakconnect.png,
+ perl-install/standalone/icons/drakfirewall.png,
+ perl-install/standalone/icons/drakgw.png,
+ perl-install/standalone/icons/draknetprofile-16.png,
+ perl-install/standalone/icons/draknetprofile-24.png,
+ perl-install/standalone/icons/draknetprofile-32.png,
+ perl-install/standalone/icons/draknetprofile-52.png,
+ perl-install/standalone/icons/draknetprofile-64.png,
+ perl-install/standalone/icons/draknetprofile.png,
+ perl-install/standalone/icons/draknetprofile_128.png,
+ perl-install/standalone/icons/drakvpn-16.png,
+ perl-install/standalone/icons/drakvpn-24.png,
+ perl-install/standalone/icons/drakvpn-32.png,
+ perl-install/standalone/icons/drakvpn-52.png,
+ perl-install/standalone/icons/drakvpn-64.png,
+ perl-install/standalone/icons/drakvpn.png,
+ perl-install/standalone/icons/drakvpn_128.png,
+ perl-install/standalone/icons/invictus-16.png,
+ perl-install/standalone/icons/invictus-24.png,
+ perl-install/standalone/icons/invictus-32.png,
+ perl-install/standalone/icons/invictus-52.png,
+ perl-install/standalone/icons/invictus-64.png,
+ perl-install/standalone/icons/invictus.png,
+ perl-install/standalone/icons/invictus_128.png: move network
+ pixmaps and icons in drakx-net
+
+2006-11-30 13:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm:
+ (ask_browse_tree_info_given_widgets::children) simplify it
+ * perl-install/ugtk2.pm:
+ (ask_browse_tree_info_given_widgets_for_rpmdrake::children)
+ simplify it
+ * perl-install/ugtk2.pm: (toggle) make it alive again (#25271):
+ - rename as common->{toggle_all}
+ - kill support for unified groups & packages tree
+ - adatp to new common->{toggle_nodes} API
+ * perl-install/ugtk2.pm:
+ (ask_browse_tree_info_given_widgets_for_rpmdrake::children)
+ packages are listed in "detail_list", not in "tree"
+
+2006-11-30 09:54 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
+
+ * perl-install/standalone/po/pl.po: update
+
+2006-11-30 09:53 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
+
+ * perl-install/share/po/pl.po: update
+
+2006-11-30 08:32 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-11-30 07:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: don't die on empty
+ hdlist/synthesis
+
+2006-11-30 07:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: don't die on empty
+ hdlist/synthesis
+
+2006-11-29 21:37 Olivier Blin <oblin at mandriva.com>
+
+ * soft/drakx-net/trunk/lib/network/nfs.pm,
+ soft/drakx-net/trunk/lib/network/smb.pm,
+ soft/drakx-net/trunk/lib/network/smbnfs.pm,
+ perl-install/authentication.pm,
+ perl-install/diskdrake/smbnfs_gtk.pm, perl-install/fs.pm,
+ perl-install/fs/remote, perl-install/fs/remote.pm,
+ perl-install/fs/remote/nfs.pm, perl-install/fs/remote/smb.pm,
+ perl-install/standalone.pm, perl-install/standalone/lsnetdrake:
+ rename network::smbnfs as fs::remote, move network::smb and
+ network::nfs under fs::remote
+
+2006-11-29 19:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/br.po,
+ perl-install/install/share/po/fr.po,
+ perl-install/standalone/po/br.po,
+ perl-install/standalone/po/fr.po: update
+
+2006-11-29 19:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/DrakX.pot,
+ perl-install/install/share/po/af.po,
+ perl-install/install/share/po/am.po,
+ perl-install/install/share/po/ar.po,
+ perl-install/install/share/po/az.po,
+ perl-install/install/share/po/be.po,
+ perl-install/install/share/po/bg.po,
+ perl-install/install/share/po/bn.po,
+ perl-install/install/share/po/br.po,
+ perl-install/install/share/po/bs.po,
+ perl-install/install/share/po/ca.po,
+ perl-install/install/share/po/cs.po,
+ perl-install/install/share/po/cy.po,
+ perl-install/install/share/po/da.po,
+ perl-install/install/share/po/de.po,
+ perl-install/install/share/po/el.po,
+ perl-install/install/share/po/eo.po,
+ perl-install/install/share/po/es.po,
+ perl-install/install/share/po/et.po,
+ perl-install/install/share/po/eu.po,
+ perl-install/install/share/po/fa.po,
+ perl-install/install/share/po/fi.po,
+ perl-install/install/share/po/fr.po,
+ perl-install/install/share/po/fur.po,
+ perl-install/install/share/po/ga.po,
+ perl-install/install/share/po/gl.po,
+ perl-install/install/share/po/he.po,
+ perl-install/install/share/po/hi.po,
+ perl-install/install/share/po/hr.po,
+ perl-install/install/share/po/hu.po,
+ perl-install/install/share/po/id.po,
+ perl-install/install/share/po/is.po,
+ perl-install/install/share/po/it.po,
+ perl-install/install/share/po/ja.po,
+ perl-install/install/share/po/ko.po,
+ perl-install/install/share/po/ky.po,
+ perl-install/install/share/po/lt.po,
+ perl-install/install/share/po/ltg.po,
+ perl-install/install/share/po/lv.po,
+ perl-install/install/share/po/mk.po,
+ perl-install/install/share/po/mn.po,
+ perl-install/install/share/po/ms.po,
+ perl-install/install/share/po/mt.po,
+ perl-install/install/share/po/nb.po,
+ perl-install/install/share/po/nl.po,
+ perl-install/install/share/po/nn.po,
+ perl-install/install/share/po/pa_IN.po,
+ perl-install/install/share/po/pl.po,
+ perl-install/install/share/po/pt.po,
+ perl-install/install/share/po/pt_BR.po,
+ perl-install/install/share/po/ro.po,
+ perl-install/install/share/po/ru.po,
+ perl-install/install/share/po/sc.po,
+ perl-install/install/share/po/sk.po,
+ perl-install/install/share/po/sl.po,
+ perl-install/install/share/po/sq.po,
+ perl-install/install/share/po/sr.po,
+ perl-install/install/share/po/sr@Latn.po,
+ perl-install/install/share/po/sv.po,
+ perl-install/install/share/po/ta.po,
+ perl-install/install/share/po/tg.po,
+ perl-install/install/share/po/th.po,
+ perl-install/install/share/po/tl.po,
+ perl-install/install/share/po/tr.po,
+ perl-install/install/share/po/uk.po,
+ perl-install/install/share/po/uz.po,
+ perl-install/install/share/po/uz@Latn.po,
+ perl-install/install/share/po/vi.po,
+ perl-install/install/share/po/wa.po,
+ perl-install/install/share/po/zh_CN.po,
+ perl-install/install/share/po/zh_TW.po,
+ perl-install/share/po/af.po, perl-install/share/po/am.po,
+ perl-install/share/po/ar.po, perl-install/share/po/az.po,
+ perl-install/share/po/be.po, perl-install/share/po/bg.po,
+ perl-install/share/po/bn.po, perl-install/share/po/br.po,
+ perl-install/share/po/bs.po, perl-install/share/po/ca.po,
+ perl-install/share/po/cs.po, perl-install/share/po/cy.po,
+ perl-install/share/po/da.po, perl-install/share/po/de.po,
+ perl-install/share/po/el.po, perl-install/share/po/eo.po,
+ perl-install/share/po/es.po, perl-install/share/po/et.po,
+ perl-install/share/po/eu.po, perl-install/share/po/fa.po,
+ perl-install/share/po/fi.po, perl-install/share/po/fr.po,
+ perl-install/share/po/fur.po, perl-install/share/po/ga.po,
+ perl-install/share/po/gl.po, perl-install/share/po/he.po,
+ perl-install/share/po/hi.po, perl-install/share/po/hr.po,
+ perl-install/share/po/hu.po, perl-install/share/po/id.po,
+ perl-install/share/po/is.po, perl-install/share/po/it.po,
+ perl-install/share/po/ja.po, perl-install/share/po/ko.po,
+ perl-install/share/po/ky.po, perl-install/share/po/libDrakX.pot,
+ perl-install/share/po/lt.po, perl-install/share/po/ltg.po,
+ perl-install/share/po/lv.po, perl-install/share/po/mk.po,
+ perl-install/share/po/mn.po, perl-install/share/po/ms.po,
+ perl-install/share/po/mt.po, perl-install/share/po/nb.po,
+ perl-install/share/po/nl.po, perl-install/share/po/nn.po,
+ perl-install/share/po/pa_IN.po, perl-install/share/po/pl.po,
+ perl-install/share/po/pt.po, perl-install/share/po/pt_BR.po,
+ perl-install/share/po/ro.po, perl-install/share/po/ru.po,
+ perl-install/share/po/sc.po, perl-install/share/po/sk.po,
+ perl-install/share/po/sl.po, perl-install/share/po/sq.po,
+ perl-install/share/po/sr.po, perl-install/share/po/sr@Latn.po,
+ perl-install/share/po/sv.po, perl-install/share/po/ta.po,
+ perl-install/share/po/tg.po, perl-install/share/po/th.po,
+ perl-install/share/po/tl.po, perl-install/share/po/tr.po,
+ perl-install/share/po/uk.po, perl-install/share/po/uz.po,
+ perl-install/share/po/uz@Latn.po, perl-install/share/po/vi.po,
+ perl-install/share/po/wa.po, perl-install/share/po/zh_CN.po,
+ perl-install/share/po/zh_TW.po,
+ perl-install/standalone/po/Makefile,
+ perl-install/standalone/po/af.po,
+ perl-install/standalone/po/am.po,
+ perl-install/standalone/po/ar.po,
+ perl-install/standalone/po/az.po,
+ perl-install/standalone/po/be.po,
+ perl-install/standalone/po/bg.po,
+ perl-install/standalone/po/bn.po,
+ perl-install/standalone/po/br.po,
+ perl-install/standalone/po/bs.po,
+ perl-install/standalone/po/ca.po,
+ perl-install/standalone/po/cs.po,
+ perl-install/standalone/po/cy.po,
+ perl-install/standalone/po/da.po,
+ perl-install/standalone/po/de.po,
+ perl-install/standalone/po/el.po,
+ perl-install/standalone/po/eo.po,
+ perl-install/standalone/po/es.po,
+ perl-install/standalone/po/et.po,
+ perl-install/standalone/po/eu.po,
+ perl-install/standalone/po/fa.po,
+ perl-install/standalone/po/fi.po,
+ perl-install/standalone/po/fr.po,
+ perl-install/standalone/po/fur.po,
+ perl-install/standalone/po/ga.po,
+ perl-install/standalone/po/gl.po,
+ perl-install/standalone/po/he.po,
+ perl-install/standalone/po/hi.po,
+ perl-install/standalone/po/hr.po,
+ perl-install/standalone/po/hu.po,
+ perl-install/standalone/po/id.po,
+ perl-install/standalone/po/is.po,
+ perl-install/standalone/po/it.po,
+ perl-install/standalone/po/ja.po,
+ perl-install/standalone/po/ko.po,
+ perl-install/standalone/po/ky.po,
+ perl-install/standalone/po/libDrakX-standalone.pot,
+ perl-install/standalone/po/lt.po,
+ perl-install/standalone/po/ltg.po,
+ perl-install/standalone/po/lv.po,
+ perl-install/standalone/po/mk.po,
+ perl-install/standalone/po/mn.po,
+ perl-install/standalone/po/ms.po,
+ perl-install/standalone/po/mt.po,
+ perl-install/standalone/po/nb.po,
+ perl-install/standalone/po/nl.po,
+ perl-install/standalone/po/nn.po,
+ perl-install/standalone/po/pa_IN.po,
+ perl-install/standalone/po/pl.po,
+ perl-install/standalone/po/pt.po,
+ perl-install/standalone/po/pt_BR.po,
+ perl-install/standalone/po/ro.po,
+ perl-install/standalone/po/ru.po,
+ perl-install/standalone/po/sc.po,
+ perl-install/standalone/po/sk.po,
+ perl-install/standalone/po/sl.po,
+ perl-install/standalone/po/sq.po,
+ perl-install/standalone/po/sr.po,
+ perl-install/standalone/po/sr@Latn.po,
+ perl-install/standalone/po/sv.po,
+ perl-install/standalone/po/ta.po,
+ perl-install/standalone/po/tg.po,
+ perl-install/standalone/po/th.po,
+ perl-install/standalone/po/tl.po,
+ perl-install/standalone/po/tr.po,
+ perl-install/standalone/po/uk.po,
+ perl-install/standalone/po/uz.po,
+ perl-install/standalone/po/uz@Latn.po,
+ perl-install/standalone/po/vi.po,
+ perl-install/standalone/po/wa.po,
+ perl-install/standalone/po/zh_CN.po,
+ perl-install/standalone/po/zh_TW.po: update strings from code
+ (lot of changes due to split-out of printerdrake & network tools)
+
+2006-11-29 17:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (gtktreeview_children) NULL iters are
+ accepted by C backend
+
+2006-11-29 17:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: merge in a rejected bit from renaming
+ commit r88473
+
+2006-11-29 12:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mygtk2.pm: (_gtk_any_Button) fix previous commit
+
+2006-11-29 12:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mygtk2.pm: (_gtk_any_Paned) enable to pass 0 for
+ resizeX & shrinkX
+
+2006-11-29 11:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm:
+ (ask_browse_tree_info_given_widgets_for_rpmdrake) rename
+ variables accordingly
+ * perl-install/ugtk2.pm:
+ (ask_browse_tree_info_given_widgets_for_rpmdrake) package list
+ really is a
+ list, not a tree, so do not bother setting a parent in the later
+
+2006-11-28 18:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mygtk2.pm: (_gtk_any_Button ) rename $image as
+ $widget since it's generic
+
+2006-11-28 18:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mygtk2.pm: (_gtk_any_Button) enable to got a
+ {child} field (generalizing {image} which should be just
+ deprecated)
+
+2006-11-28 15:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Makefile.config, perl-install/Makefile.drakxtools:
+ don't package network stuff
+
+2006-11-28 15:30 Olivier Blin <oblin at mandriva.com>
+
+ * soft/drakx-net/trunk/lib, soft/drakx-net/trunk/lib/network,
+ soft/drakx-net/trunk/tools,
+ soft/drakx-net/trunk/tools/drakconnect,
+ soft/drakx-net/trunk/tools/drakfirewall,
+ soft/drakx-net/trunk/tools/drakgw,
+ soft/drakx-net/trunk/tools/drakids,
+ soft/drakx-net/trunk/tools/drakinvictus,
+ soft/drakx-net/trunk/tools/draknetprofile,
+ soft/drakx-net/trunk/tools/drakproxy,
+ soft/drakx-net/trunk/tools/drakroam,
+ soft/drakx-net/trunk/tools/drakvpn,
+ soft/drakx-net/trunk/tools/drakvpn-old,
+ soft/drakx-net/trunk/tools/net_applet,
+ soft/drakx-net/trunk/tools/net_monitor, perl-install/network,
+ perl-install/standalone/drakconnect,
+ perl-install/standalone/drakfirewall,
+ perl-install/standalone/drakgw, perl-install/standalone/drakids,
+ perl-install/standalone/drakinvictus,
+ perl-install/standalone/draknetprofile,
+ perl-install/standalone/drakproxy,
+ perl-install/standalone/drakroam,
+ perl-install/standalone/drakvpn,
+ perl-install/standalone/drakvpn-old,
+ perl-install/standalone/net_applet,
+ perl-install/standalone/net_monitor: move network stuff in
+ drakx-net
+
+2006-11-28 14:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/af.po, perl-install/share/po/am.po,
+ perl-install/share/po/ar.po, perl-install/share/po/az.po,
+ perl-install/share/po/be.po, perl-install/share/po/bg.po,
+ perl-install/share/po/bn.po, perl-install/share/po/br.po,
+ perl-install/share/po/bs.po, perl-install/share/po/ca.po,
+ perl-install/share/po/cs.po, perl-install/share/po/cy.po,
+ perl-install/share/po/da.po, perl-install/share/po/de.po,
+ perl-install/share/po/el.po, perl-install/share/po/eo.po,
+ perl-install/share/po/es.po, perl-install/share/po/et.po,
+ perl-install/share/po/eu.po, perl-install/share/po/fa.po,
+ perl-install/share/po/fi.po, perl-install/share/po/fr.po,
+ perl-install/share/po/fur.po, perl-install/share/po/ga.po,
+ perl-install/share/po/gl.po, perl-install/share/po/he.po,
+ perl-install/share/po/hi.po, perl-install/share/po/hr.po,
+ perl-install/share/po/hu.po, perl-install/share/po/id.po,
+ perl-install/share/po/is.po, perl-install/share/po/it.po,
+ perl-install/share/po/ja.po, perl-install/share/po/ko.po,
+ perl-install/share/po/ky.po, perl-install/share/po/libDrakX.pot,
+ perl-install/share/po/lt.po, perl-install/share/po/ltg.po,
+ perl-install/share/po/lv.po, perl-install/share/po/mk.po,
+ perl-install/share/po/mn.po, perl-install/share/po/ms.po,
+ perl-install/share/po/mt.po, perl-install/share/po/nb.po,
+ perl-install/share/po/nl.po, perl-install/share/po/nn.po,
+ perl-install/share/po/pa_IN.po, perl-install/share/po/pl.po,
+ perl-install/share/po/pt.po, perl-install/share/po/pt_BR.po,
+ perl-install/share/po/ro.po, perl-install/share/po/ru.po,
+ perl-install/share/po/sc.po, perl-install/share/po/sk.po,
+ perl-install/share/po/sl.po, perl-install/share/po/sq.po,
+ perl-install/share/po/sr.po, perl-install/share/po/sr@Latn.po,
+ perl-install/share/po/sv.po, perl-install/share/po/ta.po,
+ perl-install/share/po/tg.po, perl-install/share/po/th.po,
+ perl-install/share/po/tl.po, perl-install/share/po/tr.po,
+ perl-install/share/po/uk.po, perl-install/share/po/uz.po,
+ perl-install/share/po/uz@Latn.po, perl-install/share/po/vi.po,
+ perl-install/share/po/wa.po, perl-install/share/po/zh_CN.po,
+ perl-install/share/po/zh_TW.po,
+ perl-install/standalone/po/af.po,
+ perl-install/standalone/po/am.po,
+ perl-install/standalone/po/ar.po,
+ perl-install/standalone/po/az.po,
+ perl-install/standalone/po/be.po,
+ perl-install/standalone/po/bg.po,
+ perl-install/standalone/po/bn.po,
+ perl-install/standalone/po/br.po,
+ perl-install/standalone/po/bs.po,
+ perl-install/standalone/po/ca.po,
+ perl-install/standalone/po/cs.po,
+ perl-install/standalone/po/cy.po,
+ perl-install/standalone/po/da.po,
+ perl-install/standalone/po/de.po,
+ perl-install/standalone/po/el.po,
+ perl-install/standalone/po/eo.po,
+ perl-install/standalone/po/es.po,
+ perl-install/standalone/po/et.po,
+ perl-install/standalone/po/eu.po,
+ perl-install/standalone/po/fa.po,
+ perl-install/standalone/po/fi.po,
+ perl-install/standalone/po/fr.po,
+ perl-install/standalone/po/fur.po,
+ perl-install/standalone/po/ga.po,
+ perl-install/standalone/po/gl.po,
+ perl-install/standalone/po/he.po,
+ perl-install/standalone/po/hi.po,
+ perl-install/standalone/po/hr.po,
+ perl-install/standalone/po/hu.po,
+ perl-install/standalone/po/id.po,
+ perl-install/standalone/po/is.po,
+ perl-install/standalone/po/it.po,
+ perl-install/standalone/po/ja.po,
+ perl-install/standalone/po/ko.po,
+ perl-install/standalone/po/ky.po,
+ perl-install/standalone/po/libDrakX-standalone.pot,
+ perl-install/standalone/po/lt.po,
+ perl-install/standalone/po/ltg.po,
+ perl-install/standalone/po/lv.po,
+ perl-install/standalone/po/mk.po,
+ perl-install/standalone/po/mn.po,
+ perl-install/standalone/po/ms.po,
+ perl-install/standalone/po/mt.po,
+ perl-install/standalone/po/nb.po,
+ perl-install/standalone/po/nl.po,
+ perl-install/standalone/po/nn.po,
+ perl-install/standalone/po/pa_IN.po,
+ perl-install/standalone/po/pl.po,
+ perl-install/standalone/po/pt.po,
+ perl-install/standalone/po/pt_BR.po,
+ perl-install/standalone/po/ro.po,
+ perl-install/standalone/po/ru.po,
+ perl-install/standalone/po/sc.po,
+ perl-install/standalone/po/sk.po,
+ perl-install/standalone/po/sl.po,
+ perl-install/standalone/po/sq.po,
+ perl-install/standalone/po/sr.po,
+ perl-install/standalone/po/sr@Latn.po,
+ perl-install/standalone/po/sv.po,
+ perl-install/standalone/po/ta.po,
+ perl-install/standalone/po/tg.po,
+ perl-install/standalone/po/th.po,
+ perl-install/standalone/po/tl.po,
+ perl-install/standalone/po/tr.po,
+ perl-install/standalone/po/uk.po,
+ perl-install/standalone/po/uz.po,
+ perl-install/standalone/po/uz@Latn.po,
+ perl-install/standalone/po/vi.po,
+ perl-install/standalone/po/wa.po,
+ perl-install/standalone/po/zh_CN.po,
+ perl-install/standalone/po/zh_TW.po: kill printerdrake strings
+
+2006-11-28 14:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile, perl-install/Makefile.config:
+ printerdrake was split out
+
+2006-11-28 13:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/autosetupprintqueues,
+ soft/printerdrake/trunk/autosetupprintqueues: move
+ autosetupprintqueues here
+
+2006-11-28 13:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/listsupportedprinters,
+ soft/printerdrake/trunk/listsupportedprinters: move
+ listsupportedprinters into printerdrake
+
+2006-11-28 13:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/printer, soft/printerdrake/trunk/printer: split out
+ printerdrake modules
+
+2006-11-28 13:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/printerdrake,
+ soft/printerdrake/trunk/printerdrake: split out printerdrake
+ binary
+
+2006-11-28 12:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm,
+ perl-install/standalone/draksec: HIG-ize
+ * perl-install/diskdrake/smbnfs_gtk.pm,
+ perl-install/standalone/drakboot,
+ perl-install/standalone/drakclock,
+ perl-install/standalone/drakfloppy,
+ perl-install/standalone/draknfs,
+ perl-install/standalone/drakperm,
+ perl-install/standalone/draksec,
+ perl-install/standalone/draksplash,
+ perl-install/standalone/draksplash2,
+ perl-install/standalone/mousedrake,
+ perl-install/standalone/net_applet,
+ perl-install/standalone/net_monitor: basic port from ugtk2 upon
+ mygtk2
+
+2006-11-28 12:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: revert bogus blino commit
+
+2006-11-28 10:48 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/install/pixmaps/langs/lang-en_AU.png,
+ perl-install/install/pixmaps/langs/lang-en_CA.png,
+ perl-install/install/pixmaps/langs/lang-en_NZ.png: pixmaps for
+ "English (Australia)", etc.
+
+2006-11-28 08:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps.pm: %post should do their stuff
+ correctly. stop calling gdk-pixbuf-query-loaders,
+ gtk-query-immodules-2.0 and pango-querymodules-* for now (we'll
+ see if it
+ still breaks, per fcrozat request)
+
+2006-11-28 07:34 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-11-28 07:32 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-11-28 07:32 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-11-28 00:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/harddrake/autoconf.pm: create only one do_pkgs
+ instance
+
+2006-11-27 23:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: don't ensure twice aoss is
+ installed
+
+2006-11-28 00:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/harddrake/autoconf.pm: create only one do_pkgs
+ instance
+
+2006-11-27 23:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: don't ensure twice aoss is
+ installed
+
+2006-11-27 20:08 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-11-27 14:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * live/draklive-install/po/tg.po: updated Tajik file
+
+2006-11-27 14:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * live/draklive-install/po/tg.po: updated Tajik file
+
+2006-11-27 09:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: require Gtk2::NotificationBubble only
+ when using Gtk2::NotificationBubble::Queue
+
+2006-11-24 21:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: simplify
+
+2006-11-24 21:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: remove unused variable
+
+2006-11-24 21:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: pass missing parameter
+
+2006-11-24 21:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: generate one wireless
+ menuitem per wireless network and menu
+
+2006-11-24 21:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: prepare multiple menuitems
+ support
+
+2006-11-24 21:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: use only one loop to update
+ wireless networks
+
+2006-11-24 21:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: remove redundant arg
+
+2006-11-24 21:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: fix typo
+
+2006-11-24 21:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: make menuitem functions work
+ on menuitems directly
+
+2006-11-24 21:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: group menuitem widgets
+
+2006-11-24 21:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: reorganize menuitem update
+ code
+
+2006-11-24 20:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: don't hardcode wireless
+ network name generation
+
+2006-11-24 14:26 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: move shorewall root in a
+ variable
+
+2006-11-24 14:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: really disable services
+ (#27295)
+
+2006-11-24 11:52 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm, perl-install/lang.pm: changed 'en_GB'
+ to 'en_AU' as the default locale for "English"
+ in Oceania; and set default keyboard for 'en_AU' to 'us'
+ added also choices for en_CA and en_NZ (so the right myspell
+ dictionnaries can be installed) (see bug #14893)
+
+2006-11-23 18:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: show simplified menu on left
+ click (instead of running net_monitor)
+
+2006-11-23 17:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: interface variable is now
+ unused in applet update functions
+
+2006-11-23 17:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: move choices menuitem
+ creation in create_menu_choices()
+
+2006-11-23 17:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: move menu destroy/creation
+ in empty_menu()
+
+2006-11-23 17:25 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-11-23 17:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: move action item creation in
+ create_action_item()
+
+2006-11-23 17:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: fix typo
+
+2006-11-23 17:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: move action item creation in
+ create_action_item()
+
+2006-11-23 17:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: fix typo
+
+2006-11-23 15:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/wireless.pm,
+ perl-install/network/monitor.pm: compute wireless network name
+ in network::monitor so that net_applet can use it
+
+2006-11-23 15:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: move tray icon code out of
+ menu code
+
+2006-11-23 15:12 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: use interface name in menu
+
+2006-11-23 15:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: move code in update_applet()
+ and generate_menu()
+
+2006-11-23 12:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet, perl-install/ugtk2.pm: move
+ Gtk2::NotificationBubble::Queue in ugtk2
+
+2006-11-22 18:49 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install.spec,
+ live/draklive-install/mandriva-draklive-install.desktop: add
+ menu entry
+
+2006-11-22 15:53 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: choice for ISO9995-3 keyboard (US
+ keyboard with 3 levels per key; bug #19330)
+
+2006-11-22 10:56 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/probing.c, mdk-stage1/probing.h, mdk-stage1/stage1.c,
+ mdk-stage1/thirdparty.c, mdk-stage1/thirdparty.h: Fix
+ detected_devices[] table overflow for good, i.e. dynamically
+ reallocate
+ the table when necessary. Tulsa systems can have many ids
+ reported...
+ (frontport r86076 from 2006 branch)
+
+2006-11-20 15:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile,
+ perl-install/install/share/generate-xlocales,
+ perl-install/install/share/list.xml,
+ perl-install/install/share/locales-skeleton.tar.bz2: drop
+ locales-skeleton.tar.bz2, X11 locales stuff are now auto
+ generated/updated
+ by install/share/generate-xlocales (pablo & me)
+
+2006-11-20 12:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/common.pm: revert reexporting backtrace() which is
+ already exported by
+ MDK::Common (this is a perl_checker bug)
+
+2006-11-17 20:04 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/drakfont: now Fontmap.GS is in
+ ghostscript-common
+
+2006-11-17 19:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/common.pm: export backtrace for standalone.pm
+
+2006-11-17 19:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone.pm: one less perl_checker warning
+
+2006-11-17 19:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: perl_checko cleanup
+
+2006-11-17 14:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbackup: (find_backup_to_restore)
+ further simplify
+
+2006-11-17 14:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbackup: (find_backup_to_restore)
+ simplify
+
+2006-11-17 14:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbackup: (file_to_put) perl_checker
+ cleanup
+
+2006-11-17 14:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbackup: (file_to_put) simplify by
+ using chomp_() from MDK::Common
+
+2006-11-17 14:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbackup: (file_to_put) simplify
+
+2006-11-17 14:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbackup: (file_to_put) give english
+ names to variables
+
+2006-11-17 14:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbackup: (file_to_put) inline useless
+ variable
+
+2006-11-17 14:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbackup: (file_to_put) simplify
+ date/time parsing
+
+2006-11-17 14:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbackup: (file_to_put) do not mix
+ different stuff in the same variable
+
+2006-11-17 12:43 stewb
+
+ * perl-install/standalone/drakbackup: Fix archiver
+ detection/config file replace for real (#26705, #27180)
+
+2006-11-17 12:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: remove annoying message
+
+2006-11-16 17:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: use slighty bigger font for arab and a
+ bigger font for thai
+
+2006-11-16 17:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: switch default font size from 10 to 14pt
+
+2006-11-16 17:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/list.xml: use DajaVu instead of Vera
+ font for bold and bold italic
+
+2006-11-16 16:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/list.xml: alphabetic order
+ * perl-install/install/share/fonts.tar.bz2,
+ perl-install/install/share/list.xml: install more fonts from the
+ system instead of copying then into SVN
+
+2006-11-16 15:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix translation (pablo)
+
+2006-11-16 12:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakboot: (autologin_choice) better
+ layout: use left aligned labels
+
+2006-11-15 16:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile:
+ (buildrpm,buildsrpm,localrpm,localsrpm,rpm,srpm) kill rules
+ obsoleted
+ by spec move (now one has to use "make localdist" in order to
+ create a
+ tarball for repsys)
+
+2006-11-15 16:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile, perl-install/drakxtools.spec: kill the
+ spec file (which is now in repsys) and move the revision number
+ into Makefile
+
+2006-11-15 16:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile: (dist) kill this rule which cannot work
+ anymore now that spec file
+ isn't availlable anymore; (rpm) is now an alias for (localrpm)
+
+2006-11-15 16:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile: (slowsrpm) kill this rule which is
+ basically useless
+ * perl-install/Makefile: (cvstag,export) kill rules relying on the
+ presence of spec file
+ (what's more cvstag is now useless because of repsys)
+
+2006-11-15 16:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile: (spec_test) kill this rule since we've
+ moved the spec file into repsys
+
+2006-11-15 16:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile: (up) kill this rule which should never
+ have been commited in
+
+2006-11-15 13:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: removing kbear which has
+ been moved to contrib because is buggy and
+ un-maintained (see also bug #27178)
+
+2006-11-14 10:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/it.po: update (Andrea Celli)
+
+2006-11-13 12:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/common.pm: (translate_real) fix typo in comment
+
+2006-11-13 11:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: fix typo in comment
+
+2006-11-10 17:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm: don't hardcode wm args and
+ decorator, this will be handled in the wm packages
+
+2006-11-10 15:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/help/help.pm,
+ perl-install/install/install2.pm, perl-install/install/steps.pm,
+ perl-install/install/steps_interactive.pm: drop printer
+ configuration during install
+
+2006-11-09 23:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/any.pm: perl_checker
+
+2006-11-09 23:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/any.pm: select all X proprietary drivers
+ for live systems
+
+2006-11-09 16:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: drop hdlist.cz2 support
+
+2006-11-09 14:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/proprietary.pm: move driver to package hash
+ in driver_to_pkg()
+
+2006-11-09 14:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/proprietary.pm, perl-install/do_pkgs.pm,
+ perl-install/network/connection/isdn.pm,
+ perl-install/network/thirdparty.pm: do not pass '-kernel'
+ package suffix to do_pkgs::check_kernel_module_packages()
+
+2006-11-09 14:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Makefile.drakxtools, perl-install/drakxtools.spec:
+ use an init level for the xsetup.d script
+
+2006-11-09 09:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: remove the restriction on
+ installing from same media, otherwise it breaks many
+ %post when installing coreutils after all main/release packages.
+
+ for supplementary CDs, the code is handling things quite
+ correctly: the
+ umounting of CD1 fail inside the transaction, but it retries a
+ transaction
+ with all the packages that failed. Of course, this implies that
+ if the
+ supplementary CD pkgs do not include their dependencies, the
+ user must be a
+ disc-jockey (but remember supplementary made by warly include
+ their
+ dependencies otherwise it was breaking, so...)
+
+2006-11-09 09:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/media.pm: add
+ name to the supplementary prompted
+
+2006-11-09 08:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/media.pm: fix
+ handling cdrom with a new medium:
+ - the phys_medium must be different from currently mounted CD
+ - it must not ask from a new cd when probing media.cfg or
+ hdlist.cz
+
+2006-11-08 20:26 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm: assume the context is Xgl only if
+ the server GLX vendor is "SGI" (may fix misdetection of new
+ nvidia drivers with native GL compositing support)
+
+2006-11-08 20:12 Olivier Blin <oblin at mandriva.com>
+
+ * test/glx/check.pl, test/glx/glxinfo.nvidia_native-mesa-Xorg.txt,
+ test/glx/glxinfo.nvidia_native-nvidia_native-Xorg.txt: add
+ checks for nvidia drivers with native texture_from_pixmap support
+
+2006-11-08 20:08 Olivier Blin <oblin at mandriva.com>
+
+ * test, test/glx, test/glx/check.pl, test/glx/diff.pl,
+ test/glx/glx_test.sh, test/glx/glxinfo.fglrx-fglrx-Xgl.txt,
+ test/glx/glxinfo.fglrx-fglrx-Xorg.txt,
+ test/glx/glxinfo.fglrx-mesa-Xgl.txt,
+ test/glx/glxinfo.fglrx-mesa-Xorg.txt,
+ test/glx/glxinfo.i810-mesa-Xgl.txt,
+ test/glx/glxinfo.i810-mesa-Xorg.txt,
+ test/glx/glxinfo.nv-mesa-Xorg.txt,
+ test/glx/glxinfo.nvidia-mesa-Xgl.txt,
+ test/glx/glxinfo.nvidia-mesa-Xorg.txt,
+ test/glx/glxinfo.nvidia-nvidia-Xgl.txt,
+ test/glx/glxinfo.nvidia-nvidia-Xorg.txt,
+ test/glx/glxinfo.nvidia_legacy-mesa-Xgl.txt,
+ test/glx/glxinfo.nvidia_legacy-mesa-Xorg.txt,
+ test/glx/glxinfo.nvidia_legacy-nvidia_legacy-Xgl.txt,
+ test/glx/glxinfo.nvidia_legacy-nvidia_legacy-Xorg.txt,
+ test/glx/glxinfo.r300-mesa-Xorg.txt: initial import of glx test
+ scripts
+
+2006-11-08 17:45 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: remove xmoto
+
+2006-11-08 16:42 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/local.cfg: fix typo
+
+2006-11-08 00:40 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/local.cfg: get rid of 2007.0 values
+
+2006-11-08 00:33 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg, live/One/config/local.cfg,
+ live/One/config/local_cfg: rename local_cfg as local.cfg
+
+2006-11-08 00:24 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: revert to initial --boot option behavior
+ and use --boot-image to create boot images
+
+2006-11-08 00:15 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: allow to provide stage2 updates
+ * soft/drakx/branches/2007.0/tools/drakx-in-chroot,
+ tools/drakx-in-chroot: allow to provide stage2 updates (useful
+ when the installer is broken before patch can be used)
+
+2006-11-07 23:47 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: compute an approximative size for USB
+ master images
+
+2006-11-07 23:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: give a change for flash &
+ the like to work with konqueror too
+
+2006-11-07 19:25 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg: simplify
+
+2006-11-07 19:18 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: pass -F option to mke2fs only for
+ non-block devices
+
+2006-11-07 19:16 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: don't reserv blocks on ext2/3
+ filesystems, we don't create root fs
+
+2006-11-07 19:15 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: don't pass float to mkfs.vfat
+
+2006-11-07 14:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: fix parse_hdlists not returning
+ main_options compatible with distribconf
+
+2006-11-07 14:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: better translation
+
+2006-11-07 14:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/po/fr.po: improve french translation of PIN
+ number
+
+2006-11-07 13:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/.perl_checker: adapt to urpm.pm and URPM/Resolve.pm
+ being not being fake packages anymore
+
+2006-11-07 11:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm, perl-install/Xconfig/monitor.pm:
+ restore old behaviour of X auto configuration: instead of
+ never-prompting-user, prompt when we can't configure
+ automatically
+ (especially useful during install)
+
+2006-11-07 10:15 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: remove /etc/dbus-1/machine-id
+
+2006-11-07 08:31 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg: adapt to new draklive syntax
+
+2006-11-07 08:30 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg: remove theme workarounds, themes are
+ now installed from auto_inst
+
+2006-11-06 22:45 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: really run bootloader action with --all
+
+2006-11-06 22:15 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: fix typo
+
+2006-11-06 21:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/drakvpn.pm: correctly handle
+ installation/preparation failure
+
+2006-11-06 21:19 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: display help file if not bootlogo is
+ available
+
+2006-11-06 21:03 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: add missing newlines in syslinux/grub
+ configuration files
+
+2006-11-06 21:02 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: add --boot option
+
+2006-11-06 20:40 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: update boot-only doc
+
+2006-11-06 20:38 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: build bootloader files for boot methods
+ listed in media->{extra_boot}
+
+2006-11-06 20:34 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: remove incomplete extra_boot code
+
+2006-11-06 20:32 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: don't use opts->{boot_only} to create
+ boot media, the medium has now to be specified in opts->{boot}
+ instead of config media->{boot}
+
+2006-11-06 20:04 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: rename --boot action as --bootloader
+
+2006-11-06 19:19 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: gfxboot support (#26430)
+
+2006-11-06 17:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/wireless.pm: update madwifi URL
+
+2006-11-06 17:31 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/files/finish-install.usb: add authentication and users
+ step in USB live
+
+2006-11-06 17:29 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg: use media specific finish-install file
+
+2006-11-06 17:27 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl, live/One/config/live.cfg,
+ live/One/config/local_cfg, live/One/files/finish-install,
+ live/One/files/finish-install.cdrom,
+ live/One/files/finish-install.usb: move theme selection in
+ auto_install
+
+2006-11-06 17:05 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg: don't install nvidia_legacy packages
+ in non-CDCOM live
+
+2006-11-06 16:30 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/install/share/fonts.tar.bz2, perl-install/lang.pm:
+ - better fonts at install time (replaced Nimbus Sans L, Roya and
+ bitmap mdk10
+ with TTF fonts DejaVu Sans
+ (latin,cyrillic,greek,hebrew,arabic,armenian)
+ and Norasi (thai))
+ - fixed/improved default fonts for KDE config (DejaVu
+ Sans/FreeMono being
+ the new default combination; using the new japanese font;
+ better (smaller)
+ font sizes for various scripts)
+
+2006-11-06 16:28 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: reorder packages
+
+2006-11-06 16:27 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: remove duplicate entry
+
+2006-11-06 16:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: add some padding (using "empty"
+ entry) before titles and expanders (except the first one)
+
+2006-11-06 15:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: use "fill" instead of "expand"
+ for expander (this fixes for example the display of the
+ languages choice at beginning of install)
+
+2006-11-06 15:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: allow specifying "fill" and "expand"
+ instead of 0 or 1.
+ "expand" implies fill=1,expand=1 whereas "fill" implies
+ fill=1,expand=0
+
+2006-11-06 14:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: register value_changed on
+ SpinButton adjustment *before* creating of the
+ SpinButton, otherwise, the callback is called at creating of the
+ SpinButton
+ and causes havoc
+
+2006-11-06 13:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/vpn/openvpn.pm: do rooted_get_stdout
+ manually because pkcs11-tool may exit with non-zero code with
+ proprietary modules
+
+2006-11-06 13:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/log.pm: openLog() is needed by partimage_whole_disk
+
+2006-11-06 13:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/log.pm: openLog() is needed by partimage_whole_disk
+
+2006-11-06 12:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/curses.pm: we can only have one main
+ Curses::UI object (the bug occurs in harddrake2 creating
+ interactive objects via do_pkgs_standalone->new)
+
+2006-11-06 11:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/vpn/openvpn.pm: list objects from present
+ tokens only
+
+2006-11-06 11:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/vpn/openvpn.pm: use etoken pcks11 module if
+ present
+ * perl-install/network/vpn/openvpn.pm: pass pkcs11 module to
+ pkcs11-tool
+
+2006-11-06 11:13 stewb
+
+ * perl-install/standalone/drakbackup: Fix archiver issue #26705
+
+2006-11-06 08:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: fonts-ttf-dejavu is already
+ in task-x11
+
+2006-11-06 06:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * docs/HACKING: we don't need slang/newt/curses devel packages
+ anymore since we now use a new (packaged) binding
+
+2006-11-06 01:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: - install fonts-ttf-dejavu
+ by default (it has the best latin/cyrillic/arabic
+ coverage; making it suitable for all languages in those
+ scripts)
+ - changed dz_BT -> dz (no need to specify the country code)
+ - xorg-x11-cyrillic-fonts is only suitable for Russian
+ (LOCALES"ru")
+ - another ethiopic script font package (x11-font-misc-ethiopic)
+ - fonts-ttf-arabic-farsi is not suitable for Urdu (LOCALES"ur")
+ - Berber language (LOCALES"ber") installs fonts-ttf-tifinagh
+ - Punjabi (LOCALES"pa") installs fonts-ttf-gurmukhi
+
+2006-11-05 18:39 mmodem
+
+ * perl-install/share/po/pt.po: update
+
+2006-11-05 15:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm: fix typo (pterjan)
+
+2006-11-05 02:34 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: fix grub installation
+
+2006-11-05 02:28 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: die if mksquashfs fails
+
+2006-11-05 02:23 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: don't install bootloader on non-block
+ device
+
+2006-11-05 02:16 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: don't require tmdns (thanks
+ misc)
+
+2006-11-04 16:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: sensitivity fix
+
+2006-11-04 16:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm: simplify as suggested by
+ perl_checker
+
+2006-11-04 15:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm: use beryl-settings as beryl
+ configuration tool
+
+2006-11-04 15:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm: run compiz with "gconf" as arguments
+ * perl-install/Xconfig/glx.pm: always overwrite decorator
+
+2006-11-04 15:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm, perl-install/standalone/drak3d:
+ find decorator when writing config, not in gtk2 GUI
+
+2006-11-04 15:17 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: remove debug code /o\
+
+2006-11-04 15:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm, perl-install/standalone/drak3d:
+ don't install task-3ddesktop but only required packages
+
+2006-11-04 15:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm: beryl support
+ * perl-install/Xconfig/glx.pm, perl-install/standalone/drak3d:
+ allow to select OpenGL compositing window manager
+
+2006-11-04 15:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm: don't hardcode default wm
+ * perl-install/Xconfig/glx.pm: decorator configuration fixes
+
+2006-11-04 14:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: sensitivity fixes
+
+2006-11-04 14:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: rename server-specific GL
+ compositing variables
+
+2006-11-04 14:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: simplify text
+
+2006-11-04 13:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm, perl-install/standalone/drak3d:
+ move gl_compositing_servers list in Xconfig::glx
+
+2006-11-04 13:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm, perl-install/standalone/drak3d: use
+ more generic "native" word instead of AIGLX, and reorganize
+ drak3d accordingly
+
+2006-11-04 13:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: use more generic variable names
+
+2006-11-03 16:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/finish-install: perl_checker fixes
+
+2006-11-03 16:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/finish-install: pam_mount support
+ * perl-install/authentication.pm: add pam_mount support
+
+2006-11-03 15:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: hide password when calling "net
+ join" or "net ads join" (#26643)
+
+2006-11-03 10:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: fix typo (bootloader-config was
+ dropping append= from lilo.conf, #26947)
+
+2006-11-02 20:26 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg: use tmpfs for /var/lock /var/log
+ /var/run /var/tmp /tmp on USB media
+
+2006-11-02 20:24 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: rename live->{post} as
+ live->{system}{initrd_post}
+
+2006-11-02 20:18 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: handle GigaBytes
+
+2006-11-02 20:10 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg, live/draklive/draklive: make the
+ system.loop size configurable and use 300M
+
+2006-11-02 19:50 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg: remove the no 3D desktop boot entry
+ * live/One/config/live.cfg: use a 1G vfat image for USB masters
+
+2006-11-02 19:39 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: run fsck on rw loopback files before
+ mounting them
+
+2006-11-02 19:28 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: define directory mounts in their mount
+ order, and reverse the order when mounting unionfs
+
+2006-11-02 18:54 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: rewrite a little
+
+2006-11-02 15:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: contrary to lilo & syslinux, grub
+ doesn't pass BOOT_IMAGE=xxx to the kernel.
+ It is useful for suspend-scripts so passing it explictly for
+ grub (#26813)
+
+2006-11-02 13:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/curses.pm: fix checkboxes (#26853)
+
+2006-11-02 12:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_interactive.pm: have the "not enough
+ space" error message in the report.bug.gz
+
+2006-11-02 12:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_interactive.pm: add unit
+
+2006-11-01 22:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm: adapt to compositing-wm-common
+ configuration file
+
+2006-10-31 18:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/bootloader.pm: do not use mbootpack files anymore
+ when switching back to grub
+
+2006-10-31 15:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/drakvpn.pm: stop VPN connection if running
+ before starting it in drakvpn
+
+2006-10-31 15:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/vpn/openvpn.pm: don't cache pkcs11 tokens
+ when reading config (useful for net_applet)
+
+2006-10-31 15:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/vpn/openvpn.pm: always fail after timeout
+
+2006-10-31 15:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/vpn/openvpn.pm: don't crash when no token
+ is inserted
+
+2006-10-31 09:35 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/po/gl.po: updated Galician file
+
+2006-10-31 09:31 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/install/share/po/gl.po: updated Galician file
+
+2006-10-31 09:24 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/gl.po: updated Galician file
+
+2006-10-30 20:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/finish-install: fix typo
+
+2006-10-30 20:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/finish-install: copy previous home in
+ encrypted home
+
+2006-10-30 19:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/finish-install: add forgotten chown
+
+2006-10-30 19:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/finish-install: initial encrypted home
+ support (from Vincent Guardiola, slightly reworked)
+
+2006-10-30 18:43 nbauer
+
+ * perl-install/share/po/de.po: Update German translation (Nicolas
+ Bauer)
+
+2006-10-30 14:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/vpn/openvpn.pm: perl_checker fixes
+
+2006-10-30 13:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/vpn/openvpn.pm: fix stupid typo
+
+2006-10-30 13:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/vpn/openvpn.pm: use an empty pkcs11_object
+ hash to express that a token is configured but not found
+
+2006-10-30 13:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: load
+ network::connection::cellular_card (#26846)
+
+2006-10-30 13:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/vpn/openvpn.pm: ask for authentication
+ username, password and PIN code (using the openvpn management
+ interface) if required
+
+2006-10-30 13:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/vpn/openvpn.pm: pkcs11 token support
+
+2006-10-30 12:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/drakvpn.pm,
+ perl-install/standalone/net_applet: pass when starting vpn
+ connections
+
+2006-10-30 12:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/drakvpn.pm: add a wait_message when
+ preparing connection
+
+2006-10-30 12:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/vpn.pm: update start() method prototype
+
+2006-10-30 12:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/vpn.pm: allow to pass arguments to vpn
+ start/stop commands
+
+2006-10-28 17:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix some french typos for drakvpn
+
+2006-10-27 17:22 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: fix typo
+ * live/draklive/draklive: remove redundant code in complete_config
+
+2006-10-27 17:02 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: use a better check for live mode
+ detection in copy wizard
+
+2006-10-27 17:00 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: move some checks in check_config()
+
+2006-10-27 16:42 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: use 788 as default vga mode in copy mode
+
+2006-10-27 16:33 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: rename $media variable
+
+2006-10-27 16:30 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: don't add splash/vga settings on cmdline
+ if no vga mode is defined
+
+2006-10-27 16:11 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: unlink grub device map so that grub
+ rechecks the map
+
+2006-10-27 15:44 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: warn if an error occurs during live copy
+
+2006-10-27 14:46 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: die when grub or rsync fail
+
+2006-10-27 14:44 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: add an end step
+
+2006-10-27 13:58 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: update progress during live USB recording
+
+2006-10-27 13:56 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: allow to update copy progress in copy
+ wizard
+
+2006-10-27 13:51 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: add directory_usage helper
+
+2006-10-27 12:08 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: automatically select storage type if
+ only one is available
+
+2006-10-27 12:07 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: allow to select a master image in the
+ copy wizard
+
+2006-10-27 12:03 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: don't create a master for onthefly USB
+ recording
+
+2006-10-27 12:02 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: add a run_foreach helper
+
+2006-10-26 16:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: one more change into
+ 10.4.82-1mdv2007.1
+
+2006-10-26 16:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/bootloader.pm: support Xen with lilo using mbootpack
+
+2006-10-26 16:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/bootloader.pm: don't add entry if mbootpack is
+ required (i.e. don't fail by configuring lilo for Xen)
+
+2006-10-26 16:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: properly disable may_go_to_next
+ for radio buttons (otherwise keyboard is no more responsive)
+
+2006-10-26 16:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: remove debug code
+
+2006-10-26 16:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/stdio.pm: fix typo
+
+2006-10-26 16:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/media.pm: match /dev regexp 0 or 1 time
+ only (thanks Pixel for the hint)
+
+2006-10-26 16:13 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-10-26 16:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/commands.pm:
+ handle install-patch on usb keys
+
+2006-10-26 16:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.82-1mdv2007.1
+
+2006-10-26 15:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: loadO: handle multiple floppy
+ drives (preparing for handling usb keys)
+
+2006-10-26 15:54 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/pcmcia_/Makefile: do not generate unused yyunput
+ function in lex_config.c
+
+2006-10-26 15:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: simplify
+
+2006-10-26 15:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: more explicit loadO
+
+2006-10-26 15:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/media.pm: workaround to get mountpoint when
+ "file" method is used over NFS mounts (may lead to invalid
+ device)
+
+2006-10-26 15:23 Pixel <pixel at mandriva.com>
+
+ * tools/drakx-in-chroot: - we only have terminfo for terminal
+ "linux", so setting TERM so that curses-install works
+ - also umount IMAGE_LOCATION_ROOTED just in case it was mounted
+ (eg: one used previous drakx-in-chroot)
+
+2006-10-26 14:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: perl_checker compliance
+
+2006-10-26 14:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive.pm: help perl_checker
+
+2006-10-26 14:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive.pm, perl-install/interactive/curses.pm,
+ perl-install/interactive/gtk.pm,
+ perl-install/interactive/stdio.pm, perl-install/wizards.pm: -
+ new "expander" type entry
+ - replace {callbacks}{complete} with {validate}, with reversed
+ return value
+ - move {ok_disabled} and {advanced} out of {callbacks}
+ ({advanced} callback is currently not working anymore)
+ - deprecating {focus_first}, replaced with per-entry {focus}
+ function
+ - transform advanced stuff into a expander
+ - deprecate advanced stuff
+ - drop support for {canceled} callback
+ - interactive::gtk:
+ - add "expander" type entry
+ - drop advanced stuff
+ - use a global scrolled window, but need better handling (eg:
+ advanced language choice at install)
+ - cleanup the mess around {title}, esp. using {no_indent}.
+ still need cleaner creation (allowing $set would remove the
+ boldness)
+ - put created widgets inside $e instead of using { w => $w, e
+ => $e ... }
+ - remove the $realw_sizegrp, it has no impact
+ - drop $may_go_to_next. i think a better handling is possible
+ (emitting a "focus_next event or something)
+ - interactive::curses:
+ - add "expander" type entry
+ - drop advanced stuff
+
+2006-10-26 14:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: use per-entry {focus_out} callback instead
+ of {advanced} callback
+
+2006-10-26 14:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: add Expander
+
+2006-10-26 16:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/commands.pm:
+ handle install-patch on usb keys
+
+2006-10-26 16:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.82-1mdv2007.1
+
+2006-10-26 15:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: loadO: handle multiple floppy
+ drives (preparing for handling usb keys)
+
+2006-10-26 15:54 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/pcmcia_/Makefile: do not generate unused yyunput
+ function in lex_config.c
+
+2006-10-26 15:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: simplify
+
+2006-10-26 15:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: more explicit loadO
+
+2006-10-26 15:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/media.pm: workaround to get mountpoint when
+ "file" method is used over NFS mounts (may lead to invalid
+ device)
+
+2006-10-26 15:23 Pixel <pixel at mandriva.com>
+
+ * tools/drakx-in-chroot: - we only have terminfo for terminal
+ "linux", so setting TERM so that curses-install works
+ - also umount IMAGE_LOCATION_ROOTED just in case it was mounted
+ (eg: one used previous drakx-in-chroot)
+
+2006-10-26 14:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: perl_checker compliance
+
+2006-10-26 14:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive.pm: help perl_checker
+
+2006-10-26 14:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive.pm, perl-install/interactive/curses.pm,
+ perl-install/interactive/gtk.pm,
+ perl-install/interactive/stdio.pm, perl-install/wizards.pm: -
+ new "expander" type entry
+ - replace {callbacks}{complete} with {validate}, with reversed
+ return value
+ - move {ok_disabled} and {advanced} out of {callbacks}
+ ({advanced} callback is currently not working anymore)
+ - deprecating {focus_first}, replaced with per-entry {focus}
+ function
+ - transform advanced stuff into a expander
+ - deprecate advanced stuff
+ - drop support for {canceled} callback
+ - interactive::gtk:
+ - add "expander" type entry
+ - drop advanced stuff
+ - use a global scrolled window, but need better handling (eg:
+ advanced language choice at install)
+ - cleanup the mess around {title}, esp. using {no_indent}.
+ still need cleaner creation (allowing $set would remove the
+ boldness)
+ - put created widgets inside $e instead of using { w => $w, e
+ => $e ... }
+ - remove the $realw_sizegrp, it has no impact
+ - drop $may_go_to_next. i think a better handling is possible
+ (emitting a "focus_next event or something)
+ - interactive::curses:
+ - add "expander" type entry
+ - drop advanced stuff
+
+2006-10-26 14:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: use per-entry {focus_out} callback instead
+ of {advanced} callback
+
+2006-10-26 14:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: add Expander
+
+2006-10-26 10:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: typo fix
+
+2006-10-25 20:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/ga.po, perl-install/standalone/po/ga.po:
+ update
+
+2006-10-25 13:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: use string equality instead of
+ number equality
+
+2006-10-25 11:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/.perl_checker: RS::Handy is required in
+ String::ShellQuote, but inside a if (0)
+
+2006-10-25 11:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/curses.pm: - remove unneeded code
+ - adjust checkbox (pb occuring in "Old compatibility (non UTF-8)
+ encoding" advanced dialog)
+
+2006-10-25 11:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: require perl-String-ShellQuote
+ (side effect of #26383 fix)
+
+2006-10-24 20:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/common.pm: (wrap_command_for_root) kdesu needs a
+ quoted string (aka fix running
+ rpmdrake embedded in mcc directly from menu entry) (#26383)
+
+2006-10-24 15:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/curses.pm: fix typo in previous commit
+
+2006-10-24 15:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_interactive.pm: installPackages: use
+ wait_message_with_progress_bar
+
+2006-10-24 15:31 Pablo Saratxaga <pablo at mandriva.com>
+
+ * live/draklive-install/po/eu.po: updated Basque file
+
+2006-10-24 15:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive.pm, perl-install/interactive/curses.pm,
+ perl-install/interactive/gtk.pm: add optional title for
+ wait_message_with_progress_bar
+
+2006-10-24 15:20 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/install/share/po/eu.po: updated Basque file
+
+2006-10-24 15:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive.pm, perl-install/interactive/curses.pm,
+ perl-install/interactive/gtk.pm,
+ perl-install/interactive/http.pm,
+ perl-install/interactive/stdio.pm: - don't pass array of strings
+ to wait_message, and various clarification
+ - move wait_message_with_progress_bar gtk code in
+ interactive::gtk
+ - interactive::curses: use stackable function
+ - interactive::curses: add wait_message_with_progress_bar
+
+2006-10-24 14:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: group_by: handle empty list
+
+2006-10-24 13:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/curses.pm: cleanup previous window
+
+2006-10-24 12:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/curses.pm: add some ->intellidraw to
+ ensure setting {val} really modifies the UI
+
+2006-10-24 12:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: - get rid of {get} functions,
+ $get_all and {saved_default_val}
+ - ensure changed callbacks are only called when the user
+ modified something,
+ never when {val} is modified in the program
+
+2006-10-24 11:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: create_list doesn't work
+ anymore. dropping
+
+2006-10-24 11:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: don't display OSS when there's
+ no driver
+
+2006-10-24 11:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: kill non working and useless
+ tooltip (its contents is already
+ displayed in the pull down menu anyway)
+
+2006-10-23 17:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * docs/HACKING: one needs to install perl-Curses{,-UI} &
+ perl-Term-ReadKey too
+
+2006-10-23 16:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/curses.pm: perl_checker compliance
+
+2006-10-23 16:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/curses.pm: - handle many checkboxes in
+ a scrollbar (using a multi selection Listbox)
+ - cleanup
+
+2006-10-23 14:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm, perl-install/diskdrake/interactive.pm,
+ perl-install/install/steps_interactive.pm,
+ perl-install/interactive.pm, perl-install/interactive/curses.pm,
+ perl-install/interactive/gtk.pm,
+ perl-install/printer/printerdrake.pm, perl-install/wizards.pm:
+ move {changed} callback from global to per-entry (it allows much
+ nicer code)
+
+2006-10-23 12:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mirror.pm: (list) simplify
+
+2006-10-23 11:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile.config, perl-install/Makefile.drakxtools,
+ perl-install/Newt, perl-install/common.pm,
+ perl-install/drakxtools.spec, perl-install/install/install2.pm,
+ perl-install/install/share/list.xml,
+ perl-install/install/steps_curses.pm,
+ perl-install/install/steps_interactive.pm,
+ perl-install/install/steps_newt.pm, perl-install/interactive.pm,
+ perl-install/interactive/curses.pm,
+ perl-install/interactive/newt.pm: replace newt backend with
+ Curses::UI
+
+2006-10-23 11:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mirror.pm: (list) prevent memoization to always
+ return update or distro mirrors
+ depending on first query
+
+2006-10-23 11:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm, perl-install/interactive.pm,
+ perl-install/interactive/gtk.pm,
+ perl-install/network/connection/ethernet.pm,
+ perl-install/network/netconnect.pm, perl-install/wizards.pm:
+ callack {focus_out} is no more global, it is per entry
+
+2006-10-20 09:41 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/list_modules.pm: add rt61 in the wireless drivers list
+
+2006-10-19 17:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/wireless.pm: there is no known
+ package for acx100
+ * perl-install/network/connection/wireless.pm: no_package now
+ implies no_club
+
+2006-10-19 17:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: improve warning messages for
+ missing thirdparty components
+
+2006-10-19 17:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/wireless.pm: do not check for
+ ipw3945 kernel module packages
+
+2006-10-19 17:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/wireless.pm: do not wrongly tell
+ that acx100-firmware can be found in Club or commercial editions
+ (#26475)
+
+2006-09-20 14:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: (ask_fromW) update comment
+
+2006-09-20 14:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.80-1mdv2007.0
+
+2006-09-20 14:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbug,
+ perl-install/standalone/draksound,
+ perl-install/standalone/draksplash: use new icons for windows
+
+2006-09-20 14:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: log another bit into
+ 10.4.79-1mdv2007.0's changelog
+
+2006-09-20 14:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/af.po, perl-install/share/po/am.po,
+ perl-install/share/po/ar.po, perl-install/share/po/az.po,
+ perl-install/share/po/be.po, perl-install/share/po/bg.po,
+ perl-install/share/po/bn.po, perl-install/share/po/br.po,
+ perl-install/share/po/bs.po, perl-install/share/po/ca.po,
+ perl-install/share/po/cs.po, perl-install/share/po/cy.po,
+ perl-install/share/po/da.po, perl-install/share/po/de.po,
+ perl-install/share/po/el.po, perl-install/share/po/eo.po,
+ perl-install/share/po/es.po, perl-install/share/po/et.po,
+ perl-install/share/po/eu.po, perl-install/share/po/fa.po,
+ perl-install/share/po/fi.po, perl-install/share/po/fr.po,
+ perl-install/share/po/fur.po, perl-install/share/po/ga.po,
+ perl-install/share/po/gl.po, perl-install/share/po/he.po,
+ perl-install/share/po/hi.po, perl-install/share/po/hr.po,
+ perl-install/share/po/hu.po, perl-install/share/po/id.po,
+ perl-install/share/po/is.po, perl-install/share/po/it.po,
+ perl-install/share/po/ja.po, perl-install/share/po/ko.po,
+ perl-install/share/po/ky.po, perl-install/share/po/libDrakX.pot,
+ perl-install/share/po/lt.po, perl-install/share/po/ltg.po,
+ perl-install/share/po/lv.po, perl-install/share/po/mk.po,
+ perl-install/share/po/mn.po, perl-install/share/po/ms.po,
+ perl-install/share/po/mt.po, perl-install/share/po/nb.po,
+ perl-install/share/po/nl.po, perl-install/share/po/nn.po,
+ perl-install/share/po/pa_IN.po, perl-install/share/po/pl.po,
+ perl-install/share/po/pt.po, perl-install/share/po/pt_BR.po,
+ perl-install/share/po/ro.po, perl-install/share/po/ru.po,
+ perl-install/share/po/sc.po, perl-install/share/po/sk.po,
+ perl-install/share/po/sl.po, perl-install/share/po/sq.po,
+ perl-install/share/po/sr.po, perl-install/share/po/sr@Latn.po,
+ perl-install/share/po/sv.po, perl-install/share/po/ta.po,
+ perl-install/share/po/tg.po, perl-install/share/po/th.po,
+ perl-install/share/po/tl.po, perl-install/share/po/tr.po,
+ perl-install/share/po/uk.po, perl-install/share/po/uz.po,
+ perl-install/share/po/uz@Latn.po, perl-install/share/po/vi.po,
+ perl-install/share/po/wa.po, perl-install/share/po/zh_CN.po,
+ perl-install/share/po/zh_TW.po,
+ perl-install/standalone/po/af.po,
+ perl-install/standalone/po/am.po,
+ perl-install/standalone/po/ar.po,
+ perl-install/standalone/po/az.po,
+ perl-install/standalone/po/be.po,
+ perl-install/standalone/po/bg.po,
+ perl-install/standalone/po/bn.po,
+ perl-install/standalone/po/br.po,
+ perl-install/standalone/po/bs.po,
+ perl-install/standalone/po/ca.po,
+ perl-install/standalone/po/cs.po,
+ perl-install/standalone/po/cy.po,
+ perl-install/standalone/po/da.po,
+ perl-install/standalone/po/de.po,
+ perl-install/standalone/po/el.po,
+ perl-install/standalone/po/eo.po,
+ perl-install/standalone/po/es.po,
+ perl-install/standalone/po/et.po,
+ perl-install/standalone/po/eu.po,
+ perl-install/standalone/po/fa.po,
+ perl-install/standalone/po/fi.po,
+ perl-install/standalone/po/fr.po,
+ perl-install/standalone/po/fur.po,
+ perl-install/standalone/po/ga.po,
+ perl-install/standalone/po/gl.po,
+ perl-install/standalone/po/he.po,
+ perl-install/standalone/po/hi.po,
+ perl-install/standalone/po/hr.po,
+ perl-install/standalone/po/hu.po,
+ perl-install/standalone/po/id.po,
+ perl-install/standalone/po/is.po,
+ perl-install/standalone/po/it.po,
+ perl-install/standalone/po/ja.po,
+ perl-install/standalone/po/ko.po,
+ perl-install/standalone/po/ky.po,
+ perl-install/standalone/po/libDrakX-standalone.pot,
+ perl-install/standalone/po/lt.po,
+ perl-install/standalone/po/ltg.po,
+ perl-install/standalone/po/lv.po,
+ perl-install/standalone/po/mk.po,
+ perl-install/standalone/po/mn.po,
+ perl-install/standalone/po/ms.po,
+ perl-install/standalone/po/mt.po,
+ perl-install/standalone/po/nb.po,
+ perl-install/standalone/po/nl.po,
+ perl-install/standalone/po/nn.po,
+ perl-install/standalone/po/pa_IN.po,
+ perl-install/standalone/po/pl.po,
+ perl-install/standalone/po/pt.po,
+ perl-install/standalone/po/pt_BR.po,
+ perl-install/standalone/po/ro.po,
+ perl-install/standalone/po/ru.po,
+ perl-install/standalone/po/sc.po,
+ perl-install/standalone/po/sk.po,
+ perl-install/standalone/po/sl.po,
+ perl-install/standalone/po/sq.po,
+ perl-install/standalone/po/sr.po,
+ perl-install/standalone/po/sr@Latn.po,
+ perl-install/standalone/po/sv.po,
+ perl-install/standalone/po/ta.po,
+ perl-install/standalone/po/tg.po,
+ perl-install/standalone/po/th.po,
+ perl-install/standalone/po/tl.po,
+ perl-install/standalone/po/tr.po,
+ perl-install/standalone/po/uk.po,
+ perl-install/standalone/po/uz.po,
+ perl-install/standalone/po/uz@Latn.po,
+ perl-install/standalone/po/vi.po,
+ perl-install/standalone/po/wa.po,
+ perl-install/standalone/po/zh_CN.po,
+ perl-install/standalone/po/zh_TW.po: sync with code: move "Date,
+ Clock & Time Zone Settings" from standalone/po into share/po
+
+2006-09-20 13:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: (ask_fromW) make lists w/o
+ front labels not having a big left margin
+ b/c of labels in size groups
+
+2006-09-20 13:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: escape titles
+
+2006-09-20 13:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/any.pm: don't use a title for the time question
+ (#25894)
+
+2006-09-20 13:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm,
+ perl-install/network/connection/ethernet.pm: improve firewire
+ interfaces detection (#25568)
+
+2006-09-20 13:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/cpufreq.pm: detect the fid flag in cpuinfo "flags"
+ as well (not only in "power management", #25723)
+
+2006-09-20 12:35 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: Add nspluginwrapper as a
+ default package. 32-bit x86 ISOs config will have
+ an explicit exclude on this one (there doesn't seem to exist
+ arch specific
+ tags for rpmsrate)
+
+2006-09-20 12:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.79-1mdv2007.0
+ * perl-install/interactive/gtk.pm: (ask_fromW) do not put in any
+ size group simple labels thus fixing overscreen layout (#25894)
+
+2006-09-20 12:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: on upgrade, install pkg task-kde if
+ kdebase-progs was installed (#25998)
+
+2006-09-20 11:58 Warly <warly at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: add product=One
+
+2006-09-20 10:03 Warly <warly at mandriva.com>
+
+ * live/One/config/live.cfg: some languages tweaking for gnome
+
+2006-09-20 09:58 Warly <warly at mandriva.com>
+
+ * live/One/config/live.cfg: add new gnome CDs for extra apps,
+ update theme
+
+2006-09-20 09:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm: check if IP address
+ is used only in interfaces started on boot
+
+2006-09-19 21:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: log more changes in
+ 10.4.78-1mdv2007.0
+ * perl-install/any.pm: (get_autologin, set_autologin) adapt to new
+ gdm layout
+
+2006-09-19 20:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getUPS) blacklist Chicony
+ (#25558)
+
+2006-09-19 19:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.78-1mdv2007.0
+
+2006-09-19 19:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: (ask_fromW) do not put in any
+ size group lists w/o a front label, thus fixing overscreen
+ layout (#25894)
+
+2006-09-19 19:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (configure_timezone) fix overscreen layout
+ (#25894)
+
+2006-09-19 18:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.77-1mdv2007.0
+
+2006-09-19 18:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/br.po: drak3d translations
+
+2006-09-19 18:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/pixmaps/state_installed.png,
+ perl-install/pixmaps/state_to_install.png,
+ perl-install/pixmaps/state_to_remove.png,
+ perl-install/pixmaps/state_to_update.png,
+ perl-install/pixmaps/state_uninstalled.png: updated icons for
+ rpmdrake
+
+2006-09-19 17:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: really do not try to run
+ dmidecode if not root (#24478)
+
+2006-09-19 17:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: check on effective uid
+
+2006-09-19 16:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm: don't try to detect glx
+ capabilities with vmware driver
+
+2006-09-19 14:17 Warly <warly at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: remove banshee,
+ gnome-volume-manager is not needed under kde anymore
+
+2006-09-19 14:03 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-09-19 14:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/mirror.pm: better logging in case of failures
+
+2006-09-19 13:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ppp.pm: write ppp files in
+ prefixed root (#24605)
+
+2006-09-19 12:38 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-09-19 12:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps.pm,
+ perl-install/install/steps_interactive.pm: set flag update in
+ urpmi.cfg for update media
+
+2006-09-19 12:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: remove debug code
+
+2006-09-19 14:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/mirror.pm: better logging in case of failures
+
+2006-09-19 13:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ppp.pm: write ppp files in
+ prefixed root (#24605)
+
+2006-09-19 12:38 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-09-19 12:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps.pm,
+ perl-install/install/steps_interactive.pm: set flag update in
+ urpmi.cfg for update media
+
+2006-09-19 12:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: remove debug code
+
+2006-09-19 11:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.76-1mdv2007.0
+
+2006-09-19 11:27 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/it.po: updated Italian file
+
+2006-09-19 11:23 Pablo Saratxaga <pablo at mandriva.com>
+
+ * live/draklive-install/po/it.po: updated po file
+
+2006-09-19 11:04 Warly <warly at mandriva.com>
+
+ * live/One/config/rpmsrate: merge rpmsrate
+
+2006-09-19 11:02 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/install/share/po/it.po: updated Italian file
+
+2006-09-19 12:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps.pm,
+ perl-install/install/steps_interactive.pm: set flag update in
+ urpmi.cfg for update media
+
+2006-09-19 12:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: remove debug code
+
+2006-09-19 11:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.76-1mdv2007.0
+
+2006-09-19 11:27 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/it.po: updated Italian file
+
+2006-09-19 11:23 Pablo Saratxaga <pablo at mandriva.com>
+
+ * live/draklive-install/po/it.po: updated po file
+
+2006-09-19 11:04 Warly <warly at mandriva.com>
+
+ * live/One/config/rpmsrate: merge rpmsrate
+
+2006-09-19 11:02 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/install/share/po/it.po: updated Italian file
+
+2006-09-19 09:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: (simple_read_rpmsrate) only
+ install package of priority 5 (#21945)
+ * perl-install/install/share/rpmsrate: eva is not popular in
+ Taiwan (Funda Wang)
+
+2006-09-19 09:25 Warly <warly at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: add gedit which is a 4 in the
+ rpmsrate to have an editor on gnome CD
+ * live/One/config/live.cfg: new theme
+
+2006-09-19 09:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/finish-install: show 3D desktop step
+ only if supported
+
+2006-09-19 09:14 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install.spec: 0.1-10mdv2007.0
+
+2006-09-19 08:55 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install: enable crond service
+ after install
+
+2006-09-19 08:54 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg: don't run crond in live
+
+2006-09-19 08:50 berthy
+
+ * perl-install/share/po/fr.po: Update fr translation
+
+2006-09-18 23:06 Warly <warly at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: add more default 2007
+ marketted apps
+
+2006-09-18 22:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/service_harddrake,
+ perl-install/standalone/service_harddrake.sh: revert r62278, it
+ should better be done once 2007.0 is out
+
+2006-09-18 22:26 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/service_harddrake,
+ perl-install/standalone/service_harddrake.sh: remove stop mode
+ in harddrake and stop blacklisting snd-usb-audio for next reboot
+ (part of a larger fix for #12731)
+
+2006-09-18 20:46 nbauer
+
+ * perl-install/share/po/de.po: Update German translation (Nicolas
+ Bauer)
+
+2006-09-18 20:24 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg, live/One/patches/Cards+.legacy.patch:
+ remove useless hack that used nvidia legacy on GeForce 3/4 cards
+
+2006-09-18 20:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: do not detect SAITEK devices as
+ UPSes (#21617)
+
+2006-09-18 19:31 Warly <warly at mandriva.com>
+
+ * perl-install/install/share/compssUsers.pl: should not have CAT_
+ in compssUsers.pl
+
+2006-09-18 19:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix typo
+
+2006-09-18 18:48 nbauer
+
+ * perl-install/install/share/po/de.po: Update German translation
+ (Nicolas Bauer)
+
+2006-09-18 18:44 Warly <warly at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: added inkscape, gwenview
+ and f-spot
+
+2006-09-18 18:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: simplify 10.4.75-1mdv2007.0's
+ changelog
+
+2006-09-18 18:01 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: don't apply patches if they look already
+ applied
+
+2006-09-18 18:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.75-1mdv2007.0
+
+2006-09-18 17:46 Warly <warly at mandriva.com>
+
+ * live/draklive/draklive: do not try to install packages if the
+ additional media is only aimed at adding extra sources
+
+2006-09-18 17:43 Warly <warly at mandriva.com>
+
+ * live/draklive/draklive: add a function to umount any nfs volume
+ in /mnt
+
+2006-09-18 17:41 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: don't use sort file if it doesn't exist
+
+2006-09-18 17:35 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg: add ueagle-firmware
+
+2006-09-18 17:34 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg: remove speedtouch_mgmt
+
+2006-09-18 17:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: supplement description of
+ ueagle-atm devices if needed
+
+2006-09-18 17:02 thomas
+
+ * perl-install/install/share/po/fi.po: updated translation
+
+2006-09-18 16:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: be more cautious when the nvidia
+ driver is not legacy
+
+2006-09-18 16:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: add module alias from nvidia to
+ nvidia_legacy if a nvidia legacy card is configured and the
+ nvidia_legacy kernel module is available
+
+2006-09-18 16:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/pkgs.pm: (read_rpmsrate) try harder to make it work
+
+2006-09-18 16:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/pkgs.pm: (read_rpmsrate) typo fix
+
+2006-09-18 16:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: (simple_read_rpmsrate) use
+ pkgs::read_rpmsrate() (#19952)
+
+2006-09-18 16:28 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/install/share/po/cy.po: updated po file
+
+2006-09-18 16:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection.pm: don't set empty hostname
+ (second try)
+
+2006-09-18 16:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/pkgs.pm: (read_rpmsrate) make it usable by
+ standalone tools
+
+2006-09-18 16:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm: make net_applet
+ able to guess name of hotplugged USB devices
+ * perl-install/detect_devices.pm: add detect_devices::probeall()
+ to avoid USB/PCI probe cache
+
+2006-09-18 16:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/pkgs.pm, perl-install/pkgs.pm: move some
+ stuff from install::pkgs in pkgs so that it's availlable to
+ harddrake2
+
+2006-09-18 16:16 nbauer
+
+ * perl-install/standalone/po/de.po: Update German translation
+ (Nicolas Bauer)
+
+2006-09-18 15:19 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/data.pm: - Another attempt to check for
+ presence of the hplip-model-data
+ package without needing to change with every new HPLIP version.
+
+2006-09-18 15:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/modules.pm,
+ perl-install/network/connection/isdn.pm,
+ perl-install/network/thirdparty.pm: factorize some code in
+ modules::module_is_available()
+
+2006-09-18 14:57 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sl.po: updated Slovenian file
+
+2006-09-18 14:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/po/sl.po,
+ perl-install/standalone/po/uz.po,
+ perl-install/standalone/po/uz@Latn.po: updated Slovenian file
+
+2006-09-18 14:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: remove unused entry (was useful
+ when we were modifying existing conf files)
+
+2006-09-18 14:42 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/list_modules.pm: use CDCEther is now named cdc_ether
+ (i.e. LiveBox USB support)
+
+2006-09-18 14:18 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/data.pm: - Fix in file list for printing
+ package installation (bug #25824 and
+ perhaps also bug #25835).
+
+2006-09-18 14:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: install
+ x11-font-wqy-bitmapfont for zh_CN only (Funda Wang)
+
+2006-09-18 13:08 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
+
+ * perl-install/install/share/po/pl.po: update
+
+2006-09-18 13:07 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
+
+ * perl-install/share/po/pl.po: update
+
+2006-09-18 13:05 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
+
+ * live/draklive-install/po/pl.po: update
+
+2006-09-18 12:54 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/data.pm: - 64-bit fixes.
+
+2006-09-18 12:41 Warly <warly at mandriva.com>
+
+ * make_boot_img: use Mandriva-Powerpack to generate the install
+ bootsplash
+
+2006-09-18 11:46 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: add x86-compat-ia_ora-kde
+ for 32-bit kde theme
+
+2006-09-18 10:42 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Let parallel ports
+ without detected printer model also be shown in
+ the auto-detection results for local printers in beginner's
+ mode
+ (users can have old printers or parallel port in
+ mono-directional
+ mode, bug #25799).
+ - Improved sorting of auto-detection results.
+
+2006-09-18 09:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: revert explicitely
+ installing fonts-ttf-dejavu (it's already required by task-x11)
+
+2006-09-18 09:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: always install
+ fonts-ttf-dejavu (see: #25802, #25815, #25648)
+
+2006-09-18 09:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: move imwheel to ensure it
+ is copied on disk (#25581)
+
+2006-09-18 09:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: log missing bits in
+ 10.4.74-1mdv2007.0's changelog
+
+2006-09-18 09:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.74-1mdv2007.0
+
+2006-09-18 09:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/de.po: update (Frank Köster)
+
+2006-09-18 08:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/sl.po: update (Jure Repinc)
+
+2006-09-18 08:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/it.po: update (Roberto Rosselli Del
+ Turco)
+
+2006-09-18 08:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/it.po: update (Giuseppe Briotti)
+
+2006-09-18 08:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/sl.po: update (Jure Repinc)
+
+2006-09-18 08:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/sl.po: update (Jure Repinc
+
+2006-09-18 08:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (display_info) scroll textview to its top
+ when selecting a new package (aka do
+ not retain vertical scrollbar position)
+
+2006-09-18 08:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mygtk2.pm: (_text_insert) track anchors (usefull
+ for rpmdrake in order to retrieve
+ embedded widgets in a TextView; see #25533)
+ * perl-install/standalone/po/mn.po: translate one item
+
+2006-09-18 08:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/cy.po,
+ perl-install/standalone/po/id.po,
+ perl-install/standalone/po/mn.po,
+ perl-install/standalone/po/pl.po,
+ perl-install/standalone/po/pt.po: fix bogus translations of menu
+ items
+ * perl-install/drakxtools.spec: make changelog homogeneous for
+ 10.4.70-1mdv2007.0 & 10.4.71-1mdv2007.0
+
+2006-09-18 08:31 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-09-18 08:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/do_pkgs.pm: knowing wether $do_pkgs->install
+ succeeded or not is useful,
+ do_pkgs_standalone::install() already returns true on success,
+ but
+ do_pkgs_during_install::install() return 0 when pkgs are already
+ installed,
+ due to install::steps::pkg_install() which has not been written
+ to know if pkg
+ installation did succeed or not. For now, returning success
+ everytime
+ (#25834)
+
+2006-09-18 00:17 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po: * 2006-09-18 Reinout van Schouwen
+ <reinouts@gnome.org>
+
+ - Updated Dutch translation (with help from Arno Fleming)
+
+2006-09-18 08:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/do_pkgs.pm: knowing wether $do_pkgs->install
+ succeeded or not is useful,
+ do_pkgs_standalone::install() already returns true on success,
+ but
+ do_pkgs_during_install::install() return 0 when pkgs are already
+ installed,
+ due to install::steps::pkg_install() which has not been written
+ to know if pkg
+ installation did succeed or not. For now, returning success
+ everytime
+ (#25834)
+
+2006-09-18 00:17 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po: * 2006-09-18 Reinout van Schouwen
+ <reinouts@gnome.org>
+
+ - Updated Dutch translation (with help from Arno Fleming)
+
+2006-09-17 22:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm: play it safe
+
+2006-09-17 22:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm: don't allow to use Xgl with i810
+ and 16 bits (Scara-approved)
+
+2006-09-17 21:04 mmodem
+
+ * perl-install/standalone/po/pt.po: up
+
+2006-09-17 21:00 mmodem
+
+ * live/draklive-install/po/pt.po: up
+
+2006-09-17 20:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: add missing changelog entry
+
+2006-09-17 18:08 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: don't Previous button (#25868)
+
+2006-09-17 17:06 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Text correction to not
+ break string freeze.
+
+2006-09-17 16:54 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Allow manual setup of
+ local printers in beginners mode if
+ auto-detection fails (bug #25799).
+
+2006-09-17 16:08 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/share/po/ru.po: updated translation
+
+2006-09-17 15:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm: match on configured driver instead
+ of probed driver (#25864)
+
+2006-09-17 14:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/steps.pm: fix
+ titypo
+
+2006-09-17 13:24 Warly <warly at mandriva.com>
+
+ * live/One/config/rpmsrate: merge with cooker rpmsrate, need to
+ add in it the extra OTHER created categories before removing
+ this file
+
+2006-09-17 13:23 Warly <warly at mandriva.com>
+
+ * live/One/config/live.cfg: rc2
+
+2006-09-17 12:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/bootloader.pm: fix parsing of vga= option in grub
+ (got broken on r26729, #25789)
+
+2006-09-17 10:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: fix typo
+
+2006-09-16 19:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: fix loading firmware files
+ from windows system
+
+2006-09-16 18:18 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/doc/TECH-INFOS, mdk-stage1/network.c,
+ mdk-stage1/network.h: add interface:wired support
+
+2006-09-16 18:04 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po file
+
+2006-09-16 18:00 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/wireless.c, mdk-stage1/wireless.h: export some
+ wireless functions
+
+2006-09-16 17:24 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-09-16 17:14 Warly <warly at mandriva.com>
+
+ * perl-install/install/pixmaps/logo-mandriva.png: new banner
+
+2006-09-16 14:21 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/install/share/po/zh_TW.po: updated po file
+
+2006-09-16 17:14 Warly <warly at mandriva.com>
+
+ * perl-install/install/pixmaps/logo-mandriva.png: new banner
+
+2006-09-16 14:21 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/install/share/po/zh_TW.po: updated po file
+
+2006-09-16 12:22 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-09-16 12:22 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: fix typo
+
+2006-09-16 12:15 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-09-16 11:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mirror.pm: (mirrors_raw) kill a useless test
+
+2006-09-16 10:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mirror.pm: (list) handle 'all' type (for listing
+ all mirrors)
+
+2006-09-16 10:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.73-1mdv2007.0
+
+2006-09-16 10:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mirror.pm: (mirrors_raw) make it work in standalone
+ mode (one has to actually use
+ register_downloader() first in order to provide a downloader
+ callback)
+
+2006-09-16 12:22 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: fix typo
+
+2006-09-16 12:15 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-09-16 11:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mirror.pm: (mirrors_raw) kill a useless test
+
+2006-09-16 10:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mirror.pm: (list) handle 'all' type (for listing
+ all mirrors)
+
+2006-09-16 10:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.73-1mdv2007.0
+
+2006-09-16 10:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mirror.pm: (mirrors_raw) make it work in standalone
+ mode (one has to actually use
+ register_downloader() first in order to provide a downloader
+ callback)
+
+2006-09-16 10:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/mirror.pm,
+ perl-install/mirror.pm: move mirror.pm from perl-install/install
+ to perl-install/ so that it's availlable to standalone programs
+
+2006-09-16 11:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mirror.pm: (mirrors_raw) kill a useless test
+
+2006-09-16 10:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mirror.pm: (list) handle 'all' type (for listing
+ all mirrors)
+
+2006-09-16 10:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.73-1mdv2007.0
+
+2006-09-16 10:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mirror.pm: (mirrors_raw) make it work in standalone
+ mode (one has to actually use
+ register_downloader() first in order to provide a downloader
+ callback)
+
+2006-09-16 10:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/mirror.pm,
+ perl-install/mirror.pm: move mirror.pm from perl-install/install
+ to perl-install/ so that it's availlable to standalone programs
+
+2006-09-16 08:31 vljubovic
+
+ * perl-install/install/share/po/bs.po: Improving Bosnian
+ translations
+
+2006-09-16 01:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: don't write incorrect "No
+ IP" and "No Mask" fields in ifcfg files (#23939)
+
+2006-09-16 01:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix typo in old unused code
+
+2006-09-16 00:54 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: add a log message when no link beat can be
+ found
+
+2006-09-16 00:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/ftp.pm: explicitely call
+ network::network::resolv to avoid future "cleanups"
+
+2006-09-16 00:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/ftp.pm: revert some part of Pixel's
+ "cleanup" (breaks ftp install)
+
+2006-09-16 00:31 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/install/share/po/zh_CN.po: Updated zh_CN
+ translation.
+
+2006-09-15 23:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/monitor.pm: don't override signal strength
+ with iwconfig value if zero (may be broken with ipw2200 drivers)
+
+2006-09-15 23:02 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/standalone/po/it.po,
+ perl-install/standalone/po/zh_CN.po: Updated zh_CN and it
+ translation.
+
+2006-09-15 23:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: add some FIXME
+
+2006-09-15 22:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: one more drakconnect change in
+ 10.4.72-1mdv2007.0
+
+2006-09-15 22:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm: don't use ifplugd
+ if no driver is defined (useful for br/tap/tun/... devices)
+
+2006-09-15 22:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.72-1mdv2007.0
+
+2006-09-15 22:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm,
+ perl-install/network/network.pm: use a link detection delay of 6
+ seconds for tg3 and skge drivers (#18986)
+
+2006-09-15 22:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: use autostart file to start
+ net_applet in KDE (#25099)
+
+2006-09-15 22:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/squid.pm: remove vhost option in squid.conf
+ (in an attempt to fix #25424)
+
+2006-09-15 22:16 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive.spec: 0.2
+ * live/draklive/draklive-copy-wizard.desktop,
+ live/draklive/draklive.desktop, live/draklive/draklive.spec:
+ rename draklive.desktop as draklive-copy-wizard.desktop
+
+2006-09-15 22:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/wireless.pm: more
+ WIRELESS_IWPRIV fixes for old rt2400/rt2500 drivers
+
+2006-09-15 22:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/wireless.pm: more Roaming
+ WIRELESS_MODE fixes (#21903)
+
+2006-09-15 21:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/it.po: update (Andrea Celli)
+
+2006-09-15 21:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/wireless.pm: read default
+ Roaming WIRELESS_MODE from interface file, not from network
+ specific file (#21903)
+
+2006-09-15 21:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/wireless.pm: use Roaming
+ WIRELESS_MODE if wpa_supplicant is needed
+
+2006-09-15 21:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: don't try to set empty hostname
+
+2006-09-15 19:53 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po file
+
+2006-09-15 19:32 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install.spec: 0.1-9mdv2007.0
+
+2006-09-15 18:01 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install: use install::any::getHds
+ to probe fstab (and detect swap devices so that they can be
+ unmounted, thanks Pixel for the debugging, #25538)
+
+2006-09-15 17:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/cy.po: update (Rhoslyn Prys)
+
+2006-09-15 17:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/cy.po: update (Rhoslyn Prys)
+
+2006-09-15 17:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/uz.po,
+ perl-install/standalone/po/uz@Latn.po: update (Mashrab Kuvatov)
+
+2006-09-15 17:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * live/draklive-install/po/uz.po,
+ live/draklive-install/po/uz@Latn.po: update (Mashrab Kuvatov)
+
+2006-09-15 16:58 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/sl.po: updated Slovenian file
+
+2006-09-15 15:47 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/es.po, perl-install/share/po/wa.po:
+ updates po files
+
+2006-09-15 15:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/cy.po: fix obvious typo
+
+2006-09-15 15:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/cy.po: fix obvious typo
+
+2006-09-15 15:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/it.po: update (Andrea Celli)
+
+2006-09-15 15:30 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/install/share/po/es.po,
+ perl-install/install/share/po/sl.po,
+ perl-install/install/share/po/wa.po: updated Slovenian file
+
+2006-09-15 15:27 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-09-15 15:26 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/po/cy.po,
+ perl-install/standalone/po/sl.po: updated po files
+
+2006-09-15 15:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: simplify: special case from
+ kernel-source-stripped already handled in bestKernelPackage()
+
+2006-09-15 15:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm: when
+ upgrading, ensure we install the kernel-source-stripped
+ corresponding to the installed kernel (when dkms is installed)
+
+2006-09-15 15:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/cy.po: update (Rhoslyn Prys)
+
+2006-09-15 15:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/cy.po: update (Rhoslyn Prys)
+
+2006-09-15 15:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: run drakconnect wizard
+ instead of (broken) "manage" interface
+
+2006-09-15 15:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: remove useless variable
+
+2006-09-15 15:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: help me
+
+2006-09-15 14:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm: don't run glxinfo for nv driver
+
+2006-09-15 14:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: use create_okcancel to order
+ OK/Cancel buttons depending on the WM
+
+2006-09-15 14:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table.pm: don't use standard ioctls to
+ tell dmraid devices to take into account
+ partition table modification, it doesn't work. "dmraid -an;
+ dmraid -ay" works
+
+2006-09-15 14:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm:
+ (ask_browse_tree_info_given_widgets_for_rpmdrake) perl_checko
+ cleanup
+
+2006-09-15 13:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: also prefer lib64mesagl1
+
+2006-09-15 13:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: allow specifying rel_path inside
+ iso. eg: nfs://host/cooker/i586/mandriva-CD.iso:/i586/media
+
+2006-09-15 13:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: adapt to iso file loopback
+ mounted in /tmp/loop
+
+2006-09-15 15:26 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/po/cy.po,
+ perl-install/standalone/po/sl.po: updated po files
+
+2006-09-15 15:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: simplify: special case from
+ kernel-source-stripped already handled in bestKernelPackage()
+
+2006-09-15 15:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm: when
+ upgrading, ensure we install the kernel-source-stripped
+ corresponding to the installed kernel (when dkms is installed)
+
+2006-09-15 15:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/cy.po: update (Rhoslyn Prys)
+
+2006-09-15 15:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/cy.po: update (Rhoslyn Prys)
+
+2006-09-15 15:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: run drakconnect wizard
+ instead of (broken) "manage" interface
+
+2006-09-15 15:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: remove useless variable
+
+2006-09-15 15:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: help me
+
+2006-09-15 14:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm: don't run glxinfo for nv driver
+
+2006-09-15 14:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: use create_okcancel to order
+ OK/Cancel buttons depending on the WM
+
+2006-09-15 14:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table.pm: don't use standard ioctls to
+ tell dmraid devices to take into account
+ partition table modification, it doesn't work. "dmraid -an;
+ dmraid -ay" works
+
+2006-09-15 14:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm:
+ (ask_browse_tree_info_given_widgets_for_rpmdrake) perl_checko
+ cleanup
+
+2006-09-15 13:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: also prefer lib64mesagl1
+
+2006-09-15 13:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: allow specifying rel_path inside
+ iso. eg: nfs://host/cooker/i586/mandriva-CD.iso:/i586/media
+
+2006-09-15 13:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: adapt to iso file loopback
+ mounted in /tmp/loop
+
+2006-09-15 13:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/messages.pm: better URL (#25357)
+
+2006-09-15 13:06 Warly <warly at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: added kmplayer
+
+2006-09-15 13:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: add /proc/iomem & /proc/ioports to
+ report.bug.gz (requested by rtp)
+
+2006-09-15 12:45 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/config-stage1.h, mdk-stage1/directory.c,
+ mdk-stage1/stage1.c: - IMAGE_LOCATION is now always a symlink
+ - LOOP_LOCATION is used for installs using iso files
+ - fix lomounting iso, fix symlink, fix umounting iso
+
+2006-09-15 12:31 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/directory.c: fix umounting iso image loopback
+
+2006-09-15 12:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: fix eject install cdrom when quitting
+ install (#25748)
+
+2006-09-15 12:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: log ejecting cdrom
+
+2006-09-15 10:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/ftp.pm, perl-install/install/media.pm,
+ perl-install/install/mirror.pm: cleanup
+
+2006-09-15 10:44 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/config-stage1.h, mdk-stage1/directory.c: use loop
+ subdirectory for ISO images
+
+2006-09-15 10:20 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-09-15 09:45 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/directory.c: use arch subdirectory when mounting ISO
+ images
+
+2006-09-15 09:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm,
+ perl-install/install/steps_interactive.pm: - make
+ selectSupplMedia work
+ - create ask_suppl_media_url out of selectSupplMedia
+ - rename ask_if_suppl_media to ask_suppl_media_method
+
+2006-09-15 09:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/mirror.pm,
+ perl-install/install/steps_interactive.pm: handle the 2 types of
+ mirrors: updates or distrib
+
+2006-09-15 08:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: add remove_from_fstab (useful
+ when a host:/dir is wrong)
+
+2006-09-15 08:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: {rpmsdir} can contain "/"
+
+2006-09-15 08:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm, perl-install/install/steps.pm,
+ perl-install/install/steps_gtk.pm: rename deselectFoundMedia to
+ ask_deselect_media__copy_on_disk (to make it clearer it does
+ both)
+
+2006-09-15 08:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: don't prompt for deselecting
+ media when there is only one media (hdlist in fact) and we don't
+ allow copy rpms on disk
+
+2006-09-15 08:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: nfs device is a {faked_device}
+ (how did it work?? anyway it won't hurt)
+
+2006-09-15 08:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: fix handling error mounting
+ phys_medium
+
+2006-09-15 09:45 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/directory.c: use arch subdirectory when mounting ISO
+ images
+
+2006-09-15 09:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm,
+ perl-install/install/steps_interactive.pm: - make
+ selectSupplMedia work
+ - create ask_suppl_media_url out of selectSupplMedia
+ - rename ask_if_suppl_media to ask_suppl_media_method
+
+2006-09-15 09:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/mirror.pm,
+ perl-install/install/steps_interactive.pm: handle the 2 types of
+ mirrors: updates or distrib
+
+2006-09-15 08:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: add remove_from_fstab (useful
+ when a host:/dir is wrong)
+
+2006-09-15 08:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: {rpmsdir} can contain "/"
+
+2006-09-15 08:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm, perl-install/install/steps.pm,
+ perl-install/install/steps_gtk.pm: rename deselectFoundMedia to
+ ask_deselect_media__copy_on_disk (to make it clearer it does
+ both)
+
+2006-09-15 08:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: don't prompt for deselecting
+ media when there is only one media (hdlist in fact) and we don't
+ allow copy rpms on disk
+
+2006-09-15 08:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: nfs device is a {faked_device}
+ (how did it work?? anyway it won't hurt)
+
+2006-09-15 08:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: fix handling error mounting
+ phys_medium
+
+2006-09-15 07:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: add more logging
+
+2006-09-15 07:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: fix logging
+
+2006-09-15 06:02 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/standalone/po/zh_TW.po: updated po file
+
+2006-09-15 05:20 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po file
+
+2006-09-14 22:41 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/standalone/po/nl.po: fixed printerdrage menu
+ translation bug
+
+2006-09-14 22:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection.pm: don't even try to get
+ thirdparty settings when no driver is found
+
+2006-09-14 22:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/monitor.pm: fix detection of WPA access
+ points when iwlist is used
+
+2006-09-14 21:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/wireless.pm,
+ perl-install/network/rfswitch.pm,
+ perl-install/standalone/service_harddrake: enable rfswitch using
+ acerhk on Compal CL56 laptops
+
+2006-09-14 21:12 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/timezone.pm: translate zones in NTP servers list
+ (thanks to Berthy)
+
+2006-09-14 19:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.71-1mdv2007.0
+
+2006-09-14 18:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/modules.pm: load ibm_acpi on IBM and LENOVO
+ laptops, and hdaps for LENOVO laptops (#21597)
+
+2006-09-14 18:38 mmodem
+
+ * perl-install/share/po/pt.po: up
+
+2006-09-14 18:36 mmodem
+
+ * perl-install/install/share/po/pt.po: up
+
+2006-09-14 18:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/modules.pm: add asus_acpi in modprobe.preload for
+ ASUS laptops (#22387)
+
+2006-09-14 17:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: prepare_device doesn't need
+ interactive object
+
+2006-09-14 17:26 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/data.pm, perl-install/printer/detect.pm: -
+ printer::detect::getIPsInLocalNetworks(): If a broadcast ping in
+ a
+ large network (> 255 IPs) does not work, add at least the own
+ IP to
+ the list, to mark the network as existing (bug #24879).
+ - Use another file to check whether hplip-model-data is
+ installed, to
+ support future versions of HPLIP (1.6.9 and newer).
+
+2006-09-14 17:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: fix wrong warning message
+ after initial firmware package installation
+
+2006-09-14 17:19 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-09-14 17:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: don't override special imwheel conf
+ (without this patch, a single mouse with
+ "Mouse:evdev|imwheel:MX500" and SIDE set gets imwheelrc.generic)
+
+2006-09-14 17:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/services.pm: (ask_standalone_gtk) perl_checko
+ cleanup
+
+2006-09-14 16:47 Warly <warly at mandriva.com>
+
+ * live/One/config/live.cfg: new languages repartitions for rc2,
+ export META_CLASS, new drivers for kernel 5mdv, use ken snaphot
+ to install commercial apps
+
+2006-09-14 16:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.70-1mdv2007.0
+
+2006-09-14 16:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/various.pm: simplify
+
+2006-09-14 16:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm: don't try to run glxinfo on tdfx
+ (#25388)
+
+2006-09-14 16:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm: don't even try to run glxinfo on
+ broken Xorg drivers, such as "sis" (#25160)
+
+2006-09-14 16:07 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/files/halt.local: give an hint about <CTRL><J>
+
+2006-09-14 16:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: ensure the symlink to
+ /etc/alternatives/<name> exists, especially useful for slaves
+
+2006-09-14 16:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: handle $::prefix
+
+2006-09-14 15:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/various.pm: (default) do not enable
+ RenderAccel for nvidia legacy driver (#24999)
+
+2006-09-14 15:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/finish-install: "Previous" button isn't
+ functiunnal and acts like "next" (#25349)
+
+2006-09-14 15:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm: allow to configure
+ ethernet interfaces that are not associated to a hardware device
+
+2006-09-14 17:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: don't override special imwheel conf
+ (without this patch, a single mouse with
+ "Mouse:evdev|imwheel:MX500" and SIDE set gets imwheelrc.generic)
+
+2006-09-14 17:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/services.pm: (ask_standalone_gtk) perl_checko
+ cleanup
+
+2006-09-14 16:47 Warly <warly at mandriva.com>
+
+ * live/One/config/live.cfg: new languages repartitions for rc2,
+ export META_CLASS, new drivers for kernel 5mdv, use ken snaphot
+ to install commercial apps
+
+2006-09-14 16:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.70-1mdv2007.0
+
+2006-09-14 16:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/various.pm: simplify
+
+2006-09-14 16:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm: don't try to run glxinfo on tdfx
+ (#25388)
+
+2006-09-14 16:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm: don't even try to run glxinfo on
+ broken Xorg drivers, such as "sis" (#25160)
+
+2006-09-14 16:07 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/files/halt.local: give an hint about <CTRL><J>
+
+2006-09-14 16:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: ensure the symlink to
+ /etc/alternatives/<name> exists, especially useful for slaves
+
+2006-09-14 16:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: handle $::prefix
+
+2006-09-14 15:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/various.pm: (default) do not enable
+ RenderAccel for nvidia legacy driver (#24999)
+
+2006-09-14 15:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/finish-install: "Previous" button isn't
+ functiunnal and acts like "next" (#25349)
+
+2006-09-14 15:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm: allow to configure
+ ethernet interfaces that are not associated to a hardware device
+
+2006-09-14 14:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.69-1mdv2007.0
+
+2006-09-14 14:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: (dir_created) simplify
+
+2006-09-14 14:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: add support for Japanese
+ truetype collection (.ttc) and opentype (.otf) fonts (#13145)
+
+2006-09-14 13:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/xdsl.pm: don't zero probed
+ VPI/VCI settings if no provider is selected
+
+2006-09-14 13:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/xdsl.pm: really use VPI/VCI
+ probe results
+
+2006-09-14 13:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: fix and enhance VPI/VCI parsing
+ from previous ppp peer file
+
+2006-09-14 13:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: warn if packages can't be
+ installed
+
+2006-09-14 13:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/xdsl.pm: warn if DSL packages
+ can't be installed
+
+2006-09-14 13:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/cable.pm: fix stupid typo...
+
+2006-09-14 13:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/cable.pm: fix install packages
+ return code when bpalogin can't be installed
+
+2006-09-14 13:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm: warn if dhcp
+ packages can't be installed
+
+2006-09-14 13:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: don't try managing non
+ existing font files (kill some dumb shell warnings)
+
+2006-09-14 13:24 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/detect.pm: - Use
+ detect_devices::is_lan_interface() function to dtermine whether a
+ network is a local network.
+
+2006-09-14 13:11 felipe
+
+ * perl-install/share/po/pt_BR.po: translating one message
+
+2006-09-14 12:58 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-09-14 12:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/cable.pm,
+ perl-install/network/connection/wireless.pm: really write module
+ alias for wireless and cable connections (#24384)
+
+2006-09-14 12:53 felipe
+
+ * perl-install/install/share/po/pt_BR.po: translating to pt_BR
+
+2006-09-14 12:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: HACK for upgrading to 2006.0: for
+ the 20 first main packages, upgrade one by one
+
+ why? well:
+ * librpm is fucked up when ordering pkgs, pkg "setup" is removed
+ before being installed.
+ the result is /etc/group.rpmsave and no /etc/group
+ * pkg locales requires basesystem, this is stupid, the result is
+ a huge first transaction
+ and it doesn't even help /usr/bin/locale_install.sh since it's
+ not a requires(post)
+
+2006-09-14 12:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: exit if one refuses to install
+ the needed packages (#24871)
+
+2006-09-14 10:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/proprietary.pm: check nvidia_drv.so where
+ it is installed, not simply the slave alternative
+ /usr/lib/xorg/modules/drivers/nvidia_drv.so
+
+2006-09-14 12:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/cable.pm,
+ perl-install/network/connection/wireless.pm: really write module
+ alias for wireless and cable connections (#24384)
+
+2006-09-14 12:53 felipe
+
+ * perl-install/install/share/po/pt_BR.po: translating to pt_BR
+
+2006-09-14 12:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: HACK for upgrading to 2006.0: for
+ the 20 first main packages, upgrade one by one
+
+ why? well:
+ * librpm is fucked up when ordering pkgs, pkg "setup" is removed
+ before being installed.
+ the result is /etc/group.rpmsave and no /etc/group
+ * pkg locales requires basesystem, this is stupid, the result is
+ a huge first transaction
+ and it doesn't even help /usr/bin/locale_install.sh since it's
+ not a requires(post)
+
+2006-09-14 12:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakups: exit if one refuses to install
+ the needed packages (#24871)
+
+2006-09-14 10:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/proprietary.pm: check nvidia_drv.so where
+ it is installed, not simply the slave alternative
+ /usr/lib/xorg/modules/drivers/nvidia_drv.so
+
+2006-09-14 10:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: libgl_config_and_more() is a
+ better name since it also configures nvidia_drv.so
+
+2006-09-14 10:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake.sh: "handle" restart
+ (#25696)
+
+2006-09-14 10:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/services.pm: (ask_standalone_gtk) log runned
+ commands
+
+2006-09-14 10:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: typo fix
+
+2006-09-14 09:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/install2.pm: set env var
+ RPM_IGNORE_SCRIPTLETS_FAILURE to workaround librpm not ordering
+ correctly pkgs removing on upgrade
+
+2006-09-14 09:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps.pm: rewrite ($@ is volatile)
+
+2006-09-14 09:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/do_pkgs.pm: don't die when we are non-interactive,
+ log the error and go on silently
+
+2006-09-14 08:53 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/install/share/po/zh_TW.po: updated po file
+
+2006-09-14 08:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_auto_install.pm: fix logging ask_warn
+ in non-interactive auto_installs, and log backtrace
+
+2006-09-14 08:48 Marek Laane <bald at starman.ee>
+
+ * perl-install/install/share/po/et.po: Updated Estonian
+ translation.
+
+2006-09-14 08:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: reduce the false positives (when a
+ pkg selection failed, which can occur when it's already
+ selected/installed)
+
+2006-09-14 08:22 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
+
+ * perl-install/install/share/po/pl.po: update
+ * perl-install/share/po/pl.po: update
+
+2006-09-14 08:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: installing linuxwacom only when needed
+
+2006-09-14 07:36 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-09-14 07:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/upgrade/mandriva.2006: thinking about
+ it, with "rpm -e --noscripts ; rpm -i" we won't get any %post
+ scripts upgrade scripts doing anything, that's no good.
+ Reverting to normal
+ behaviour (we'll patch librpm to ignore scriplets exit status as
+ used to be instead)
+
+2006-09-14 06:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_gtk.pm: fix typo
+
+2006-09-14 06:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_gtk.pm: workaround error clicking on
+ a pkg in the update tree at end of install
+
+2006-09-14 01:39 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-09-14 07:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/upgrade/mandriva.2006: thinking about
+ it, with "rpm -e --noscripts ; rpm -i" we won't get any %post
+ scripts upgrade scripts doing anything, that's no good.
+ Reverting to normal
+ behaviour (we'll patch librpm to ignore scriplets exit status as
+ used to be instead)
+
+2006-09-14 06:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_gtk.pm: fix typo
+
+2006-09-14 06:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_gtk.pm: workaround error clicking on
+ a pkg in the update tree at end of install
+
+2006-09-14 01:39 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-09-14 00:11 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/install/share/po/id.po: Updated
+
+2006-09-13 22:40 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/standalone/po/nb.po: more typos fixed
+
+2006-09-13 22:39 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: fix even more typos
+
+2006-09-13 22:36 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/standalone/po/nb.po: fix typos
+ * perl-install/share/po/nb.po: fix typo
+
+2006-09-14 00:11 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/install/share/po/id.po: Updated
+
+2006-09-13 22:40 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/standalone/po/nb.po: more typos fixed
+
+2006-09-13 22:39 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: fix even more typos
+
+2006-09-13 22:36 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/standalone/po/nb.po: fix typos
+ * perl-install/share/po/nb.po: fix typo
+
+2006-09-13 21:23 ybando
+
+ * perl-install/install/share/po/ja.po: update Japanese translation
+
+2006-09-13 21:12 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/install/share/po/ru.po: updated translation
+
+2006-09-13 20:48 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/standalone/po/nb.po: sanity cleaning
+ * perl-install/install/share/po/nb.po: sanity cleaning
+
+2006-09-13 20:45 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/standalone/po/nb.po: sanity cleaning
+ * perl-install/share/po/nb.po: sanity cleaning
+ * perl-install/install/share/po/nb.po: sanity cleaning
+
+2006-09-13 20:03 Arpad Biro <biro_arpad at yahoo.com>
+
+ * perl-install/install/share/po/hu.po: update
+
+2006-09-13 19:31 thomas
+
+ * perl-install/install/share/po/sv.po: updated translation
+
+2006-09-13 19:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/br.po: minor update
+
+2006-09-13 18:59 vljubovic
+
+ * perl-install/share/po/bs.po: Improving Bosnian translation
+
+2006-09-13 18:52 Michal Bukovjan <bukovjan at mbox.dkm.cz>
+
+ * perl-install/share/po/cs.po: Update Czech translation
+
+2006-09-13 18:49 Michal Bukovjan <bukovjan at mbox.dkm.cz>
+
+ * perl-install/install/share/po/cs.po: Update Czech translation
+
+2006-09-13 18:44 berthy
+
+ * perl-install/install/share/po/fr.po: Update fr translation
+
+2006-09-13 18:40 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/install/share/po/nb.po: translate new strings
+
+2006-09-13 18:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/br.po: minor update
+
+2006-09-13 18:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/af.po,
+ perl-install/install/share/po/ar.po,
+ perl-install/install/share/po/az.po,
+ perl-install/install/share/po/bn.po,
+ perl-install/install/share/po/br.po,
+ perl-install/install/share/po/bs.po,
+ perl-install/install/share/po/ca.po,
+ perl-install/install/share/po/cs.po,
+ perl-install/install/share/po/de.po,
+ perl-install/install/share/po/es.po,
+ perl-install/install/share/po/et.po,
+ perl-install/install/share/po/fa.po,
+ perl-install/install/share/po/fi.po,
+ perl-install/install/share/po/fr.po,
+ perl-install/install/share/po/gl.po,
+ perl-install/install/share/po/he.po,
+ perl-install/install/share/po/hi.po,
+ perl-install/install/share/po/hu.po,
+ perl-install/install/share/po/id.po,
+ perl-install/install/share/po/is.po,
+ perl-install/install/share/po/it.po,
+ perl-install/install/share/po/ja.po,
+ perl-install/install/share/po/mt.po,
+ perl-install/install/share/po/nb.po,
+ perl-install/install/share/po/nl.po,
+ perl-install/install/share/po/nn.po,
+ perl-install/install/share/po/pa_IN.po,
+ perl-install/install/share/po/pl.po,
+ perl-install/install/share/po/pt.po,
+ perl-install/install/share/po/pt_BR.po,
+ perl-install/install/share/po/ru.po,
+ perl-install/install/share/po/sc.po,
+ perl-install/install/share/po/sk.po,
+ perl-install/install/share/po/sl.po,
+ perl-install/install/share/po/sv.po,
+ perl-install/install/share/po/tg.po,
+ perl-install/install/share/po/tl.po,
+ perl-install/install/share/po/uk.po,
+ perl-install/install/share/po/vi.po,
+ perl-install/install/share/po/wa.po,
+ perl-install/install/share/po/zh_CN.po: merge in translations
+ from standalone/po
+
+2006-09-13 18:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/DrakX.pot,
+ perl-install/install/share/po/af.po,
+ perl-install/install/share/po/am.po,
+ perl-install/install/share/po/ar.po,
+ perl-install/install/share/po/az.po,
+ perl-install/install/share/po/be.po,
+ perl-install/install/share/po/bg.po,
+ perl-install/install/share/po/bn.po,
+ perl-install/install/share/po/br.po,
+ perl-install/install/share/po/bs.po,
+ perl-install/install/share/po/ca.po,
+ perl-install/install/share/po/cs.po,
+ perl-install/install/share/po/cy.po,
+ perl-install/install/share/po/da.po,
+ perl-install/install/share/po/de.po,
+ perl-install/install/share/po/el.po,
+ perl-install/install/share/po/eo.po,
+ perl-install/install/share/po/es.po,
+ perl-install/install/share/po/et.po,
+ perl-install/install/share/po/eu.po,
+ perl-install/install/share/po/fa.po,
+ perl-install/install/share/po/fi.po,
+ perl-install/install/share/po/fr.po,
+ perl-install/install/share/po/fur.po,
+ perl-install/install/share/po/ga.po,
+ perl-install/install/share/po/gl.po,
+ perl-install/install/share/po/he.po,
+ perl-install/install/share/po/hi.po,
+ perl-install/install/share/po/hr.po,
+ perl-install/install/share/po/hu.po,
+ perl-install/install/share/po/id.po,
+ perl-install/install/share/po/is.po,
+ perl-install/install/share/po/it.po,
+ perl-install/install/share/po/ja.po,
+ perl-install/install/share/po/ko.po,
+ perl-install/install/share/po/ky.po,
+ perl-install/install/share/po/lt.po,
+ perl-install/install/share/po/ltg.po,
+ perl-install/install/share/po/lv.po,
+ perl-install/install/share/po/mk.po,
+ perl-install/install/share/po/mn.po,
+ perl-install/install/share/po/ms.po,
+ perl-install/install/share/po/mt.po,
+ perl-install/install/share/po/nb.po,
+ perl-install/install/share/po/nl.po,
+ perl-install/install/share/po/nn.po,
+ perl-install/install/share/po/pa_IN.po,
+ perl-install/install/share/po/pl.po,
+ perl-install/install/share/po/pt.po,
+ perl-install/install/share/po/pt_BR.po,
+ perl-install/install/share/po/ro.po,
+ perl-install/install/share/po/ru.po,
+ perl-install/install/share/po/sc.po,
+ perl-install/install/share/po/sk.po,
+ perl-install/install/share/po/sl.po,
+ perl-install/install/share/po/sq.po,
+ perl-install/install/share/po/sr.po,
+ perl-install/install/share/po/sr@Latn.po,
+ perl-install/install/share/po/sv.po,
+ perl-install/install/share/po/ta.po,
+ perl-install/install/share/po/tg.po,
+ perl-install/install/share/po/th.po,
+ perl-install/install/share/po/tl.po,
+ perl-install/install/share/po/tr.po,
+ perl-install/install/share/po/uk.po,
+ perl-install/install/share/po/uz.po,
+ perl-install/install/share/po/uz@Latn.po,
+ perl-install/install/share/po/vi.po,
+ perl-install/install/share/po/wa.po,
+ perl-install/install/share/po/zh_CN.po,
+ perl-install/install/share/po/zh_TW.po: sync with new ads
+
+2006-09-13 17:59 Warly <warly at mandriva.com>
+
+ * perl-install/install/share/advertising/IM_CMSJOOMLA.pl,
+ perl-install/install/share/advertising/IM_CRM.pl,
+ perl-install/install/share/advertising/IM_INVICTUS.pl,
+ perl-install/install/share/advertising/IM_REGISTER.pl,
+ perl-install/install/share/advertising/IM_THEME.pl,
+ perl-install/install/share/advertising/TRANSGAMING-CEDEGA.png:
+ added missing description and transgamming image
+
+2006-09-13 17:44 Warly <warly at mandriva.com>
+
+ * perl-install/install/share/advertising/01-LinDVD.pl,
+ perl-install/install/share/advertising/01-LinDVD.png,
+ perl-install/install/share/advertising/02-TRANSGAMING-CEDEGA.pl,
+ perl-install/install/share/advertising/02-TRANSGAMING-CEDEGA.png,
+ perl-install/install/share/advertising/03-FLATOUT.pl,
+ perl-install/install/share/advertising/03-FLATOUT.png,
+ perl-install/install/share/advertising/04-Kaspersky.pl,
+ perl-install/install/share/advertising/04-Kaspersky.png,
+ perl-install/install/share/advertising/05-Skype.pl,
+ perl-install/install/share/advertising/05-Skype.png,
+ perl-install/install/share/advertising/06.pl,
+ perl-install/install/share/advertising/07.pl,
+ perl-install/install/share/advertising/08-IM_3D.pl,
+ perl-install/install/share/advertising/08-IM_3D.png,
+ perl-install/install/share/advertising/09-IM_THEME.pl,
+ perl-install/install/share/advertising/09-IM_THEME.png,
+ perl-install/install/share/advertising/10-VPN.pl,
+ perl-install/install/share/advertising/10-VPN.png,
+ perl-install/install/share/advertising/11-IM_RPMDRAKE.pl,
+ perl-install/install/share/advertising/11-IM_RPMDRAKE.png,
+ perl-install/install/share/advertising/12-IM_web2.pl,
+ perl-install/install/share/advertising/12-IM_web2.png,
+ perl-install/install/share/advertising/13-IM_SERVICES.pl,
+ perl-install/install/share/advertising/13-IM_SERVICES.png,
+ perl-install/install/share/advertising/14-IM_GAMME.pl,
+ perl-install/install/share/advertising/14-IM_GAMME.png,
+ perl-install/install/share/advertising/15-IM_REGISTER.pl,
+ perl-install/install/share/advertising/15-IM_REGISTER.png,
+ perl-install/install/share/advertising/ARKEIA_EN.pl,
+ perl-install/install/share/advertising/ARKEIA_EN.png,
+ perl-install/install/share/advertising/ARKEIA_FR.pl,
+ perl-install/install/share/advertising/ARKEIA_FR.png,
+ perl-install/install/share/advertising/FLATOUT.pl,
+ perl-install/install/share/advertising/FLATOUT.png,
+ perl-install/install/share/advertising/IM-GWENVIEW.pl,
+ perl-install/install/share/advertising/IM-GWENVIEW.png,
+ perl-install/install/share/advertising/IM_3D.pl,
+ perl-install/install/share/advertising/IM_3D.png,
+ perl-install/install/share/advertising/IM_CMSJOOMLA.png,
+ perl-install/install/share/advertising/IM_CRM.png,
+ perl-install/install/share/advertising/IM_GAMME.pl,
+ perl-install/install/share/advertising/IM_GAMME.png,
+ perl-install/install/share/advertising/IM_INVICTUS.png,
+ perl-install/install/share/advertising/IM_ONE.pl,
+ perl-install/install/share/advertising/IM_ONE.png,
+ perl-install/install/share/advertising/IM_REGISTER.png,
+ perl-install/install/share/advertising/IM_RPMDRAKE.pl,
+ perl-install/install/share/advertising/IM_RPMDRAKE.png,
+ perl-install/install/share/advertising/IM_SERVICES.pl,
+ perl-install/install/share/advertising/IM_SERVICES.png,
+ perl-install/install/share/advertising/IM_THEME.png,
+ perl-install/install/share/advertising/IM_web2.pl,
+ perl-install/install/share/advertising/IM_web2.png,
+ perl-install/install/share/advertising/Kaspersky.pl,
+ perl-install/install/share/advertising/Kaspersky.png,
+ perl-install/install/share/advertising/LinDVD.pl,
+ perl-install/install/share/advertising/LinDVD.png,
+ perl-install/install/share/advertising/Skype.pl,
+ perl-install/install/share/advertising/Skype.png,
+ perl-install/install/share/advertising/TRANSGAMING-CEDEGA.pl,
+ perl-install/install/share/advertising/VPN.pl,
+ perl-install/install/share/advertising/VPN.png,
+ perl-install/install/share/advertising/bitdefender.png,
+ perl-install/install/share/advertising/list-dis,
+ perl-install/install/share/advertising/list-dwd,
+ perl-install/install/share/advertising/list-ppp,
+ perl-install/install/share/advertising/list-pwp: updates ads and
+ list per product
+
+2006-09-13 17:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm, perl-install/common.pm: rename
+ set_update_alternatives into symlinkf_update_alternatives
+
+2006-09-13 17:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: adapt to
+ nvidia/nvidia_legacy/ati/libmesagl1/lib64mesagl1 now using
+ update-alternatives
+
+2006-09-13 17:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/proprietary.pm: handle
+ nvidia_legacy/libglx.so
+
+2006-09-13 17:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: add function doing something alike
+ "update-alternatives --config <name>" non-interactively (useful
+ esp. to handle slaves)
+
+2006-09-13 16:43 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: don't install draklive, the
+ copy wizard is broken
+
+2006-09-13 16:42 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: don't remove 915resolution
+ anymore
+
+2006-09-13 16:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/upgrade/mandriva.2006,
+ perl-install/install/share/upgrade/mandriva.2006/map: we can't
+ reliably use librpm to upgrade pkgs, at least not with big
+ transactions. so using "rpm -e + rpm -i" instead of "rpm -U".
+
+ for now, the "map" is empty, which means pkg "foo" is replaced
+ by pkg "foo",
+ which is not very nice since "Obsoletes" are not taken into
+ account :-/
+
+ about the librpm upgrade issue:
+ - in the first transaction, librpm removes many pkgs before
+ installing them
+ (esp glibc), and so %preun and %postun fail, leaving the rpmdb
+ in an ugly state
+ - not using ->check helps, the resulting ordering is different.
+ But then the
+ ordering of %pre/%post is broken :-/
+
+2006-09-13 16:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: handle (better) upgrade to
+ shorewall 3 by adding IPSECFILE=zones in shorewall.conf (#24990)
+
+2006-09-13 14:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: the "update" flag must be 0 or 1
+ since librpm is testing bit 0.
+ (the bug was introduced in commit 36887 and in rpm > 4.2.3 (in
+ 2006))
+
+2006-09-13 14:27 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/install/share/po/nb.po: fix typo
+
+2006-09-13 14:12 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: fix typo
+
+2006-09-13 11:43 berthy
+
+ * perl-install/standalone/po/fr.po: Update fr translation
+
+2006-09-13 10:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/advertising/04-Kaspersky.pl,
+ perl-install/install/share/po/DrakX.pot,
+ perl-install/install/share/po/af.po,
+ perl-install/install/share/po/am.po,
+ perl-install/install/share/po/ar.po,
+ perl-install/install/share/po/az.po,
+ perl-install/install/share/po/be.po,
+ perl-install/install/share/po/bg.po,
+ perl-install/install/share/po/bn.po,
+ perl-install/install/share/po/br.po,
+ perl-install/install/share/po/bs.po,
+ perl-install/install/share/po/ca.po,
+ perl-install/install/share/po/cs.po,
+ perl-install/install/share/po/cy.po,
+ perl-install/install/share/po/da.po,
+ perl-install/install/share/po/de.po,
+ perl-install/install/share/po/el.po,
+ perl-install/install/share/po/eo.po,
+ perl-install/install/share/po/es.po,
+ perl-install/install/share/po/et.po,
+ perl-install/install/share/po/eu.po,
+ perl-install/install/share/po/fa.po,
+ perl-install/install/share/po/fi.po,
+ perl-install/install/share/po/fr.po,
+ perl-install/install/share/po/fur.po,
+ perl-install/install/share/po/ga.po,
+ perl-install/install/share/po/gl.po,
+ perl-install/install/share/po/he.po,
+ perl-install/install/share/po/hi.po,
+ perl-install/install/share/po/hr.po,
+ perl-install/install/share/po/hu.po,
+ perl-install/install/share/po/id.po,
+ perl-install/install/share/po/is.po,
+ perl-install/install/share/po/it.po,
+ perl-install/install/share/po/ja.po,
+ perl-install/install/share/po/ko.po,
+ perl-install/install/share/po/ky.po,
+ perl-install/install/share/po/lt.po,
+ perl-install/install/share/po/ltg.po,
+ perl-install/install/share/po/lv.po,
+ perl-install/install/share/po/mk.po,
+ perl-install/install/share/po/mn.po,
+ perl-install/install/share/po/ms.po,
+ perl-install/install/share/po/mt.po,
+ perl-install/install/share/po/nb.po,
+ perl-install/install/share/po/nl.po,
+ perl-install/install/share/po/nn.po,
+ perl-install/install/share/po/pa_IN.po,
+ perl-install/install/share/po/pl.po,
+ perl-install/install/share/po/pt.po,
+ perl-install/install/share/po/pt_BR.po,
+ perl-install/install/share/po/ro.po,
+ perl-install/install/share/po/ru.po,
+ perl-install/install/share/po/sc.po,
+ perl-install/install/share/po/sk.po,
+ perl-install/install/share/po/sl.po,
+ perl-install/install/share/po/sq.po,
+ perl-install/install/share/po/sr.po,
+ perl-install/install/share/po/sr@Latn.po,
+ perl-install/install/share/po/sv.po,
+ perl-install/install/share/po/ta.po,
+ perl-install/install/share/po/tg.po,
+ perl-install/install/share/po/th.po,
+ perl-install/install/share/po/tl.po,
+ perl-install/install/share/po/tr.po,
+ perl-install/install/share/po/uk.po,
+ perl-install/install/share/po/uz.po,
+ perl-install/install/share/po/uz@Latn.po,
+ perl-install/install/share/po/vi.po,
+ perl-install/install/share/po/wa.po,
+ perl-install/install/share/po/zh_CN.po,
+ perl-install/install/share/po/zh_TW.po: typo fix
+
+2006-09-13 10:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: io_ora-kde already in
+ task-kde
+
+2006-09-13 09:49 Marek Laane <bald at starman.ee>
+
+ * perl-install/standalone/po/et.po: Updated Estonian translation.
+
+2006-09-13 09:47 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po: Updated Estonian translation.
+
+2006-09-13 09:45 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
+
+ * perl-install/install/share/po/pl.po: update
+
+2006-09-13 09:43 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
+
+ * perl-install/share/po/pl.po: update
+
+2006-09-13 09:43 Marek Laane <bald at starman.ee>
+
+ * perl-install/install/share/po/et.po: Updated Estonian
+ translation.
+
+2006-09-13 08:41 Warly <warly at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: force deps bluez-pin
+ because if not alternative select kdebluetooth-pin
+
+2006-09-13 05:20 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/install/share/po/id.po: Updated
+
+2006-09-13 05:12 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2006-09-13 04:06 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/install/share/po/zh_TW.po: updated po file
+
+2006-09-13 04:04 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po file
+
+2006-09-13 00:10 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/standalone/po/nb.po: sanity cleanup done
+
+2006-09-12 23:56 ybando
+
+ * perl-install/install/share/po/ja.po: update Japanese translation
+
+2006-09-12 23:46 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/install/share/po/is.po: New strings
+
+2006-09-12 23:22 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/share/po/is.po: spelling and new messages
+
+2006-09-12 22:57 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/standalone/po/is.po: Latest updates
+
+2006-09-12 21:44 ybando
+
+ * perl-install/share/po/ja.po: update Japanese translation
+
+2006-09-12 21:39 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/standalone/po/nb.po: some sanity cleaning
+
+2006-09-12 21:32 thomas
+
+ * perl-install/install/share/po/sv.po: updated translations
+
+2006-09-12 21:26 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/install/share/po/nb.po: finish translation
+ * perl-install/share/po/nb.po: finish new strings
+
+2006-09-12 21:26 thomas
+
+ * perl-install/share/po/sv.po: updated translations
+
+2006-09-12 21:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/fr.po: more accurate translation
+
+2006-09-12 21:14 Michal Bukovjan <bukovjan at mbox.dkm.cz>
+
+ * live/draklive-install/po/cs.po: Update Czech translation
+
+2006-09-12 21:08 Arpad Biro <biro_arpad at yahoo.com>
+
+ * perl-install/share/po/hu.po: update
+
+2006-09-12 21:04 Arpad Biro <biro_arpad at yahoo.com>
+
+ * perl-install/install/share/po/hu.po: update
+
+2006-09-12 20:30 berthy
+
+ * perl-install/share/po/fr.po: Update fr translation
+
+2006-09-12 20:26 berthy
+
+ * perl-install/install/share/po/fr.po: Update fr translation
+
+2006-09-12 20:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: typo fix
+
+2006-09-12 19:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/br.po,
+ perl-install/share/po/br.po: update
+
+2006-09-12 19:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/DrakX.pot,
+ perl-install/install/share/po/af.po,
+ perl-install/install/share/po/am.po,
+ perl-install/install/share/po/ar.po,
+ perl-install/install/share/po/az.po,
+ perl-install/install/share/po/be.po,
+ perl-install/install/share/po/bg.po,
+ perl-install/install/share/po/bn.po,
+ perl-install/install/share/po/br.po,
+ perl-install/install/share/po/bs.po,
+ perl-install/install/share/po/ca.po,
+ perl-install/install/share/po/cs.po,
+ perl-install/install/share/po/cy.po,
+ perl-install/install/share/po/da.po,
+ perl-install/install/share/po/de.po,
+ perl-install/install/share/po/el.po,
+ perl-install/install/share/po/eo.po,
+ perl-install/install/share/po/es.po,
+ perl-install/install/share/po/et.po,
+ perl-install/install/share/po/eu.po,
+ perl-install/install/share/po/fa.po,
+ perl-install/install/share/po/fi.po,
+ perl-install/install/share/po/fr.po,
+ perl-install/install/share/po/fur.po,
+ perl-install/install/share/po/ga.po,
+ perl-install/install/share/po/gl.po,
+ perl-install/install/share/po/he.po,
+ perl-install/install/share/po/hi.po,
+ perl-install/install/share/po/hr.po,
+ perl-install/install/share/po/hu.po,
+ perl-install/install/share/po/id.po,
+ perl-install/install/share/po/is.po,
+ perl-install/install/share/po/it.po,
+ perl-install/install/share/po/ja.po,
+ perl-install/install/share/po/ko.po,
+ perl-install/install/share/po/ky.po,
+ perl-install/install/share/po/lt.po,
+ perl-install/install/share/po/ltg.po,
+ perl-install/install/share/po/lv.po,
+ perl-install/install/share/po/mk.po,
+ perl-install/install/share/po/mn.po,
+ perl-install/install/share/po/ms.po,
+ perl-install/install/share/po/mt.po,
+ perl-install/install/share/po/nb.po,
+ perl-install/install/share/po/nl.po,
+ perl-install/install/share/po/nn.po,
+ perl-install/install/share/po/pa_IN.po,
+ perl-install/install/share/po/pl.po,
+ perl-install/install/share/po/pt.po,
+ perl-install/install/share/po/pt_BR.po,
+ perl-install/install/share/po/ro.po,
+ perl-install/install/share/po/ru.po,
+ perl-install/install/share/po/sc.po,
+ perl-install/install/share/po/sk.po,
+ perl-install/install/share/po/sl.po,
+ perl-install/install/share/po/sq.po,
+ perl-install/install/share/po/sr.po,
+ perl-install/install/share/po/sr@Latn.po,
+ perl-install/install/share/po/sv.po,
+ perl-install/install/share/po/ta.po,
+ perl-install/install/share/po/tg.po,
+ perl-install/install/share/po/th.po,
+ perl-install/install/share/po/tl.po,
+ perl-install/install/share/po/tr.po,
+ perl-install/install/share/po/uk.po,
+ perl-install/install/share/po/uz.po,
+ perl-install/install/share/po/uz@Latn.po,
+ perl-install/install/share/po/vi.po,
+ perl-install/install/share/po/wa.po,
+ perl-install/install/share/po/zh_CN.po,
+ perl-install/install/share/po/zh_TW.po: sync with code
+
+2006-09-12 19:42 Warly <warly at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: added kde theme
+
+2006-09-12 19:41 Warly <warly at mandriva.com>
+
+ * Makefile, docs/HACKING: add gfxboot theme
+
+2006-09-12 19:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/af.po, perl-install/share/po/am.po,
+ perl-install/share/po/ar.po, perl-install/share/po/az.po,
+ perl-install/share/po/be.po, perl-install/share/po/bg.po,
+ perl-install/share/po/bn.po, perl-install/share/po/br.po,
+ perl-install/share/po/bs.po, perl-install/share/po/ca.po,
+ perl-install/share/po/cs.po, perl-install/share/po/cy.po,
+ perl-install/share/po/da.po, perl-install/share/po/de.po,
+ perl-install/share/po/el.po, perl-install/share/po/eo.po,
+ perl-install/share/po/es.po, perl-install/share/po/et.po,
+ perl-install/share/po/eu.po, perl-install/share/po/fa.po,
+ perl-install/share/po/fi.po, perl-install/share/po/fr.po,
+ perl-install/share/po/fur.po, perl-install/share/po/ga.po,
+ perl-install/share/po/gl.po, perl-install/share/po/he.po,
+ perl-install/share/po/hi.po, perl-install/share/po/hr.po,
+ perl-install/share/po/hu.po, perl-install/share/po/id.po,
+ perl-install/share/po/is.po, perl-install/share/po/it.po,
+ perl-install/share/po/ja.po, perl-install/share/po/ko.po,
+ perl-install/share/po/ky.po, perl-install/share/po/lt.po,
+ perl-install/share/po/ltg.po, perl-install/share/po/lv.po,
+ perl-install/share/po/mk.po, perl-install/share/po/mn.po,
+ perl-install/share/po/ms.po, perl-install/share/po/mt.po,
+ perl-install/share/po/nb.po, perl-install/share/po/nl.po,
+ perl-install/share/po/nn.po, perl-install/share/po/pa_IN.po,
+ perl-install/share/po/pl.po, perl-install/share/po/pt.po,
+ perl-install/share/po/pt_BR.po, perl-install/share/po/ro.po,
+ perl-install/share/po/ru.po, perl-install/share/po/sc.po,
+ perl-install/share/po/sk.po, perl-install/share/po/sl.po,
+ perl-install/share/po/sq.po, perl-install/share/po/sr.po,
+ perl-install/share/po/sr@Latn.po, perl-install/share/po/sv.po,
+ perl-install/share/po/ta.po, perl-install/share/po/tg.po,
+ perl-install/share/po/th.po, perl-install/share/po/tl.po,
+ perl-install/share/po/tr.po, perl-install/share/po/uk.po,
+ perl-install/share/po/uz.po, perl-install/share/po/uz@Latn.po,
+ perl-install/share/po/vi.po, perl-install/share/po/wa.po,
+ perl-install/share/po/zh_CN.po, perl-install/share/po/zh_TW.po:
+ merge in translation from standalone/po
+
+2006-09-12 19:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/af.po, perl-install/share/po/am.po,
+ perl-install/share/po/ar.po, perl-install/share/po/az.po,
+ perl-install/share/po/be.po, perl-install/share/po/bg.po,
+ perl-install/share/po/bn.po, perl-install/share/po/br.po,
+ perl-install/share/po/bs.po, perl-install/share/po/ca.po,
+ perl-install/share/po/cs.po, perl-install/share/po/cy.po,
+ perl-install/share/po/da.po, perl-install/share/po/de.po,
+ perl-install/share/po/el.po, perl-install/share/po/eo.po,
+ perl-install/share/po/es.po, perl-install/share/po/et.po,
+ perl-install/share/po/eu.po, perl-install/share/po/fa.po,
+ perl-install/share/po/fi.po, perl-install/share/po/fr.po,
+ perl-install/share/po/fur.po, perl-install/share/po/ga.po,
+ perl-install/share/po/gl.po, perl-install/share/po/he.po,
+ perl-install/share/po/hi.po, perl-install/share/po/hr.po,
+ perl-install/share/po/hu.po, perl-install/share/po/id.po,
+ perl-install/share/po/is.po, perl-install/share/po/it.po,
+ perl-install/share/po/ja.po, perl-install/share/po/ko.po,
+ perl-install/share/po/ky.po, perl-install/share/po/libDrakX.pot,
+ perl-install/share/po/lt.po, perl-install/share/po/ltg.po,
+ perl-install/share/po/lv.po, perl-install/share/po/mk.po,
+ perl-install/share/po/mn.po, perl-install/share/po/ms.po,
+ perl-install/share/po/mt.po, perl-install/share/po/nb.po,
+ perl-install/share/po/nl.po, perl-install/share/po/nn.po,
+ perl-install/share/po/pa_IN.po, perl-install/share/po/pl.po,
+ perl-install/share/po/pt.po, perl-install/share/po/pt_BR.po,
+ perl-install/share/po/ro.po, perl-install/share/po/ru.po,
+ perl-install/share/po/sc.po, perl-install/share/po/sk.po,
+ perl-install/share/po/sl.po, perl-install/share/po/sq.po,
+ perl-install/share/po/sr.po, perl-install/share/po/sr@Latn.po,
+ perl-install/share/po/sv.po, perl-install/share/po/ta.po,
+ perl-install/share/po/tg.po, perl-install/share/po/th.po,
+ perl-install/share/po/tl.po, perl-install/share/po/tr.po,
+ perl-install/share/po/uk.po, perl-install/share/po/uz.po,
+ perl-install/share/po/uz@Latn.po, perl-install/share/po/vi.po,
+ perl-install/share/po/wa.po, perl-install/share/po/zh_CN.po,
+ perl-install/share/po/zh_TW.po: sync with code
+
+2006-09-12 19:09 Arpad Biro <biro_arpad at yahoo.com>
+
+ * perl-install/standalone/po/pl.po: update
+
+2006-09-12 18:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/wireless.pm: more
+ WIRELESS_IWPRIV fixes
+
+2006-09-12 18:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/wireless.pm: drop old iwpriv
+ flags if the device needs rt2x00 workarounds
+
+2006-09-12 17:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix drakxtools-http require
+
+2006-09-12 17:36 felipe
+
+ * perl-install/share/po/pt_BR.po: fixing translation
+
+2006-09-12 16:10 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-09-12 16:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.68-1mdv2007.0
+
+2006-09-12 15:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ndiswrapper.pm: match ndiswrapper filenames
+ with hexa ranges
+
+2006-09-12 15:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ndiswrapper.pm: use
+ network::connection::ethernet helpers
+
+2006-09-12 15:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm: add back
+ device_matches_interface()
+
+2006-09-12 15:45 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/list_modules.pm: add ndiswrapper in the list of known
+ wireless drivers
+
+2006-09-12 15:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: install tools before
+ firmware (ndiswrapper requires it)
+
+2006-09-12 15:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm: prefer child sysfs
+ device to get USB driver
+
+2006-09-12 15:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: handle device IDs with wildcards
+ when matching sysfs IDs
+
+2006-09-12 15:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: adapt to more sysfs weirdness
+ for USB devices
+
+2006-09-12 14:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: simplify (removing things
+ required by task-kde)
+
+2006-09-12 14:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm: add
+ interface_to_driver()
+
+2006-09-12 14:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm: add
+ interface_to_device()
+
+2006-09-12 14:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm: write DOMAIN
+ setting (search domain)
+
+2006-09-12 14:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: fix matching sysfs IDs for USB
+ devices for latest kernels
+
+2006-09-12 16:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.68-1mdv2007.0
+
+2006-09-12 15:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ndiswrapper.pm: match ndiswrapper filenames
+ with hexa ranges
+
+2006-09-12 15:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ndiswrapper.pm: use
+ network::connection::ethernet helpers
+
+2006-09-12 15:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm: add back
+ device_matches_interface()
+
+2006-09-12 15:45 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/list_modules.pm: add ndiswrapper in the list of known
+ wireless drivers
+
+2006-09-12 15:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: install tools before
+ firmware (ndiswrapper requires it)
+
+2006-09-12 15:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm: prefer child sysfs
+ device to get USB driver
+
+2006-09-12 15:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: handle device IDs with wildcards
+ when matching sysfs IDs
+
+2006-09-12 15:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: adapt to more sysfs weirdness
+ for USB devices
+
+2006-09-12 14:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: simplify (removing things
+ required by task-kde)
+
+2006-09-12 14:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm: add
+ interface_to_driver()
+
+2006-09-12 14:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm: add
+ interface_to_device()
+
+2006-09-12 14:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm: write DOMAIN
+ setting (search domain)
+
+2006-09-12 14:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: fix matching sysfs IDs for USB
+ devices for latest kernels
+
+2006-09-12 13:38 Pablo Saratxaga <pablo at mandriva.com>
+
+ * live/draklive-install/po/bs.po: updated Bosnian file
+
+2006-09-12 13:35 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/install/share/po/bs.po: updated Bosnian file
+
+2006-09-12 13:31 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/bs.po, perl-install/share/po/pl.po,
+ perl-install/share/po/ru.po: updated Bosnian file
+
+2006-09-12 13:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/po/nb.po: blindly fix (to ensure msgfmt works)
+
+2006-09-12 13:27 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/po/bs.po: updated Bosnian file
+
+2006-09-12 13:00 Laurent Montel <lmontel at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: For the moment remove it
+
+2006-09-12 12:55 Laurent Montel <lmontel at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: Use task-kde
+ Fix libqt3-devel
+
+2006-09-12 11:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: add sysfs_device attribute for
+ USB devices
+
+2006-09-12 11:14 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/share/po/is.po: Latest additions
+
+2006-09-12 11:13 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/install/share/po/is.po: Latest additions
+
+2006-09-12 11:12 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm: remove deprecated
+ zd1201/rt2400/rt2500 hacks
+
+2006-09-12 10:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: move code where it belongs
+
+2006-09-12 10:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/wireless.pm: improve thirdparty
+ explanations for ndiswrapper devices (#24838)
+ * perl-install/network/thirdparty.pm: allow not to show package
+ name if not relevant in thirdparty warnings
+
+2006-09-12 10:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: show missing module name or
+ missing tool path
+
+2006-09-12 10:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: show explanations before url
+ * perl-install/network/thirdparty.pm: cosmetics
+
+2006-09-12 10:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: prefer libGL.so.1 from libmesagl1
+ (and not nvidia pkg)
+
+2006-09-12 10:13 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-09-12 10:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_interactive.pm: allow selecting
+ another mirror on cancel (?)
+
+2006-09-12 10:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: install still need
+ parsehdlist (from rpmtools) when configuring urpmi
+
+2006-09-12 09:51 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * live/draklive-install/po/is.po: Latest updates
+
+2006-09-12 09:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm,
+ perl-install/Xconfig/various.pm: try to handle a little better
+ 915resolution installed but not used (for mandriva One)
+
+2006-09-12 09:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: we don't need ending auto_inst file
+ with \0, since we always write to a file
+ (for some time now). This fixes chomp (and so getIDE()) when
+ eval'ing auto_inst
+
+2006-09-12 09:30 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: don't start 915resolution by
+ default, enable it on user request only
+
+2006-09-12 09:15 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po file
+
+2006-09-12 08:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/steps.pm,
+ perl-install/network/netconnect.pm: move network up/down code in
+ install::steps and start interfaces synchronously
+
+2006-09-12 08:26 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/cdrom.c: fix umounting cdrom (fixes having both cdrom
+ hdc & dvd hdd mounted) (#25560)
+
+2006-09-12 10:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_interactive.pm: allow selecting
+ another mirror on cancel (?)
+
+2006-09-12 10:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: install still need
+ parsehdlist (from rpmtools) when configuring urpmi
+
+2006-09-12 09:51 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * live/draklive-install/po/is.po: Latest updates
+
+2006-09-12 09:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm,
+ perl-install/Xconfig/various.pm: try to handle a little better
+ 915resolution installed but not used (for mandriva One)
+
+2006-09-12 09:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: we don't need ending auto_inst file
+ with \0, since we always write to a file
+ (for some time now). This fixes chomp (and so getIDE()) when
+ eval'ing auto_inst
+
+2006-09-12 09:30 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: don't start 915resolution by
+ default, enable it on user request only
+
+2006-09-12 09:15 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po file
+
+2006-09-12 08:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/steps.pm,
+ perl-install/network/netconnect.pm: move network up/down code in
+ install::steps and start interfaces synchronously
+
+2006-09-12 08:26 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/cdrom.c: fix umounting cdrom (fixes having both cdrom
+ hdc & dvd hdd mounted) (#25560)
+
+2006-09-12 00:06 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po: Updated Dutch translation by Rob
+ Teng
+
+2006-09-11 23:46 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/standalone/po/nl.po: Updated Dutch translation by
+ C.Verschuuren
+
+2006-09-11 23:43 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: sanity checkup completed :)
+
+2006-09-11 23:12 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/standalone/po/ru.po: updated translation
+
+2006-09-11 22:57 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: remove
+ /etc/udev/rules.d/61-*_config.rules files
+
+2006-09-11 22:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection.pm,
+ perl-install/network/shorewall.pm: don't rewrite shorewall
+ setting if the interface is already in shorewall interfaces list
+
+2006-09-11 22:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: pre-select current network
+ when none is selected (#24061)
+ * perl-install/standalone/drakroam: pre-select selected network
+ after network refresh
+
+2006-09-11 21:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/cellular.pm: fix current network
+ selection for 3G connections
+
+2006-09-11 21:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: allow to disconnect if no
+ network is selected
+
+2006-09-11 21:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: don't preselect first device
+ is default connection isn't found
+
+2006-09-11 21:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: don't show empty device
+ (#25554)
+
+2006-09-11 19:58 thomas
+
+ * perl-install/share/po/sv.po: updated translations
+
+2006-09-11 19:19 nbauer
+
+ * perl-install/share/po/de.po: Update German translation (Nicolas
+ Bauer)
+
+2006-09-11 18:51 Arpad Biro <biro_arpad at yahoo.com>
+
+ * perl-install/standalone/po/pl.po: small correction after merge
+
+2006-09-11 18:43 thomas
+
+ * perl-install/install/share/po/sv.po: fix typo
+
+2006-09-11 18:42 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: some sanity cleaning
+
+2006-09-11 18:41 Arpad Biro <biro_arpad at yahoo.com>
+
+ * perl-install/standalone/po/pl.po: update from Tomasz
+
+2006-09-11 18:37 Arpad Biro <biro_arpad at yahoo.com>
+
+ * perl-install/share/po/pl.po: update from Tomasz
+
+2006-09-11 17:29 felipe
+
+ * perl-install/install/share/po/pt_BR.po: fixing pt_BR translation
+
+2006-09-11 17:24 felipe
+
+ * perl-install/share/po/pt_BR.po: making a translated message
+ shorter to fits better on the screen
+
+2006-09-11 16:59 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/install/share/po/nb.po: sanity cleanup!
+
+2006-09-11 16:17 Warly <warly at mandriva.com>
+
+ * make_boot_img: use isolinux-x86_64 for x86_64 architecture
+
+2006-09-11 16:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/squid.pm: adapt to squid 2.6 syntax for
+ transparent proxies (#25424)
+
+2006-09-11 15:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: don't add interface to net
+ zone twice in drakgw (me sux)
+
+2006-09-11 15:26 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: handle upgrade to shorewall 3
+ by removing the FW variable in shorewall.conf (#24990)
+
+2006-09-11 15:15 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-09-11 15:01 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/share/po/ru.po: updated translation
+
+2006-09-11 14:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: fix copying CDs on hd (was only
+ working for first CD)
+
+2006-09-11 14:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/wireless.pm: fix return code
+ (not really used though)
+
+2006-09-11 14:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/cable.pm,
+ perl-install/network/connection/wireless.pm: call SUPER
+ install_packages
+
+2006-09-11 14:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm: install dhcp client
+ if required
+
+2006-09-11 14:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbackup,
+ perl-install/standalone/harddrake2,
+ perl-install/standalone/po/af.po,
+ perl-install/standalone/po/am.po,
+ perl-install/standalone/po/ar.po,
+ perl-install/standalone/po/az.po,
+ perl-install/standalone/po/be.po,
+ perl-install/standalone/po/bg.po,
+ perl-install/standalone/po/bn.po,
+ perl-install/standalone/po/br.po,
+ perl-install/standalone/po/bs.po,
+ perl-install/standalone/po/ca.po,
+ perl-install/standalone/po/cs.po,
+ perl-install/standalone/po/cy.po,
+ perl-install/standalone/po/da.po,
+ perl-install/standalone/po/de.po,
+ perl-install/standalone/po/el.po,
+ perl-install/standalone/po/eo.po,
+ perl-install/standalone/po/es.po,
+ perl-install/standalone/po/et.po,
+ perl-install/standalone/po/eu.po,
+ perl-install/standalone/po/fa.po,
+ perl-install/standalone/po/fi.po,
+ perl-install/standalone/po/fr.po,
+ perl-install/standalone/po/fur.po,
+ perl-install/standalone/po/ga.po,
+ perl-install/standalone/po/gl.po,
+ perl-install/standalone/po/he.po,
+ perl-install/standalone/po/hi.po,
+ perl-install/standalone/po/hr.po,
+ perl-install/standalone/po/hu.po,
+ perl-install/standalone/po/id.po,
+ perl-install/standalone/po/is.po,
+ perl-install/standalone/po/it.po,
+ perl-install/standalone/po/ja.po,
+ perl-install/standalone/po/ko.po,
+ perl-install/standalone/po/ky.po,
+ perl-install/standalone/po/libDrakX-standalone.pot,
+ perl-install/standalone/po/lt.po,
+ perl-install/standalone/po/ltg.po,
+ perl-install/standalone/po/lv.po,
+ perl-install/standalone/po/mk.po,
+ perl-install/standalone/po/mn.po,
+ perl-install/standalone/po/ms.po,
+ perl-install/standalone/po/mt.po,
+ perl-install/standalone/po/nb.po,
+ perl-install/standalone/po/nl.po,
+ perl-install/standalone/po/nn.po,
+ perl-install/standalone/po/pa_IN.po,
+ perl-install/standalone/po/pl.po,
+ perl-install/standalone/po/pt.po,
+ perl-install/standalone/po/pt_BR.po,
+ perl-install/standalone/po/ro.po,
+ perl-install/standalone/po/ru.po,
+ perl-install/standalone/po/sc.po,
+ perl-install/standalone/po/sk.po,
+ perl-install/standalone/po/sl.po,
+ perl-install/standalone/po/sq.po,
+ perl-install/standalone/po/sr.po,
+ perl-install/standalone/po/sr@Latn.po,
+ perl-install/standalone/po/sv.po,
+ perl-install/standalone/po/ta.po,
+ perl-install/standalone/po/tg.po,
+ perl-install/standalone/po/th.po,
+ perl-install/standalone/po/tl.po,
+ perl-install/standalone/po/tr.po,
+ perl-install/standalone/po/uk.po,
+ perl-install/standalone/po/uz.po,
+ perl-install/standalone/po/uz@Latn.po,
+ perl-install/standalone/po/vi.po,
+ perl-install/standalone/po/wa.po,
+ perl-install/standalone/po/zh_CN.po,
+ perl-install/standalone/po/zh_TW.po: typo fix (Arpad Biro)
+
+2006-09-11 14:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/DrakX.pot,
+ perl-install/install/share/po/af.po,
+ perl-install/install/share/po/am.po,
+ perl-install/install/share/po/ar.po,
+ perl-install/install/share/po/az.po,
+ perl-install/install/share/po/be.po,
+ perl-install/install/share/po/bg.po,
+ perl-install/install/share/po/bn.po,
+ perl-install/install/share/po/br.po,
+ perl-install/install/share/po/bs.po,
+ perl-install/install/share/po/ca.po,
+ perl-install/install/share/po/cs.po,
+ perl-install/install/share/po/cy.po,
+ perl-install/install/share/po/da.po,
+ perl-install/install/share/po/de.po,
+ perl-install/install/share/po/el.po,
+ perl-install/install/share/po/eo.po,
+ perl-install/install/share/po/es.po,
+ perl-install/install/share/po/et.po,
+ perl-install/install/share/po/eu.po,
+ perl-install/install/share/po/fa.po,
+ perl-install/install/share/po/fi.po,
+ perl-install/install/share/po/fr.po,
+ perl-install/install/share/po/fur.po,
+ perl-install/install/share/po/ga.po,
+ perl-install/install/share/po/gl.po,
+ perl-install/install/share/po/he.po,
+ perl-install/install/share/po/hi.po,
+ perl-install/install/share/po/hr.po,
+ perl-install/install/share/po/hu.po,
+ perl-install/install/share/po/id.po,
+ perl-install/install/share/po/is.po,
+ perl-install/install/share/po/it.po,
+ perl-install/install/share/po/ja.po,
+ perl-install/install/share/po/ko.po,
+ perl-install/install/share/po/ky.po,
+ perl-install/install/share/po/lt.po,
+ perl-install/install/share/po/ltg.po,
+ perl-install/install/share/po/lv.po,
+ perl-install/install/share/po/mk.po,
+ perl-install/install/share/po/mn.po,
+ perl-install/install/share/po/ms.po,
+ perl-install/install/share/po/mt.po,
+ perl-install/install/share/po/nb.po,
+ perl-install/install/share/po/nl.po,
+ perl-install/install/share/po/nn.po,
+ perl-install/install/share/po/pa_IN.po,
+ perl-install/install/share/po/pl.po,
+ perl-install/install/share/po/pt.po,
+ perl-install/install/share/po/pt_BR.po,
+ perl-install/install/share/po/ro.po,
+ perl-install/install/share/po/ru.po,
+ perl-install/install/share/po/sc.po,
+ perl-install/install/share/po/sk.po,
+ perl-install/install/share/po/sl.po,
+ perl-install/install/share/po/sq.po,
+ perl-install/install/share/po/sr.po,
+ perl-install/install/share/po/sr@Latn.po,
+ perl-install/install/share/po/sv.po,
+ perl-install/install/share/po/ta.po,
+ perl-install/install/share/po/tg.po,
+ perl-install/install/share/po/th.po,
+ perl-install/install/share/po/tl.po,
+ perl-install/install/share/po/tr.po,
+ perl-install/install/share/po/uk.po,
+ perl-install/install/share/po/uz.po,
+ perl-install/install/share/po/uz@Latn.po,
+ perl-install/install/share/po/vi.po,
+ perl-install/install/share/po/wa.po,
+ perl-install/install/share/po/zh_CN.po,
+ perl-install/install/share/po/zh_TW.po,
+ perl-install/install/steps_list.pm: typo fix (Arpad Biro)
+
+2006-09-11 14:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm,
+ perl-install/network/network.pm: set RESOLV_MODS to yes when DNS
+ addresses are configured
+
+2006-09-11 14:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/wireless.pm: fix bad deref by
+ short-circuiting
+
+2006-09-11 13:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm: enable PEERDNS if
+ DNS addresses are specified as well
+
+2006-09-11 13:51 felipe
+
+ * perl-install/standalone/po/pt_BR.po: fixing fuzzy entries
+
+2006-09-11 13:40 felipe
+
+ * perl-install/share/po/pt_BR.po: translating new messages
+
+2006-09-11 13:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: workaround a ugly fix getting
+ cciss devices (reported by aginies)
+
+2006-09-11 15:01 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/share/po/ru.po: updated translation
+
+2006-09-11 14:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: fix copying CDs on hd (was only
+ working for first CD)
+
+2006-09-11 14:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/wireless.pm: fix return code
+ (not really used though)
+
+2006-09-11 14:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/cable.pm,
+ perl-install/network/connection/wireless.pm: call SUPER
+ install_packages
+
+2006-09-11 14:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm: install dhcp client
+ if required
+
+2006-09-11 14:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbackup,
+ perl-install/standalone/harddrake2,
+ perl-install/standalone/po/af.po,
+ perl-install/standalone/po/am.po,
+ perl-install/standalone/po/ar.po,
+ perl-install/standalone/po/az.po,
+ perl-install/standalone/po/be.po,
+ perl-install/standalone/po/bg.po,
+ perl-install/standalone/po/bn.po,
+ perl-install/standalone/po/br.po,
+ perl-install/standalone/po/bs.po,
+ perl-install/standalone/po/ca.po,
+ perl-install/standalone/po/cs.po,
+ perl-install/standalone/po/cy.po,
+ perl-install/standalone/po/da.po,
+ perl-install/standalone/po/de.po,
+ perl-install/standalone/po/el.po,
+ perl-install/standalone/po/eo.po,
+ perl-install/standalone/po/es.po,
+ perl-install/standalone/po/et.po,
+ perl-install/standalone/po/eu.po,
+ perl-install/standalone/po/fa.po,
+ perl-install/standalone/po/fi.po,
+ perl-install/standalone/po/fr.po,
+ perl-install/standalone/po/fur.po,
+ perl-install/standalone/po/ga.po,
+ perl-install/standalone/po/gl.po,
+ perl-install/standalone/po/he.po,
+ perl-install/standalone/po/hi.po,
+ perl-install/standalone/po/hr.po,
+ perl-install/standalone/po/hu.po,
+ perl-install/standalone/po/id.po,
+ perl-install/standalone/po/is.po,
+ perl-install/standalone/po/it.po,
+ perl-install/standalone/po/ja.po,
+ perl-install/standalone/po/ko.po,
+ perl-install/standalone/po/ky.po,
+ perl-install/standalone/po/libDrakX-standalone.pot,
+ perl-install/standalone/po/lt.po,
+ perl-install/standalone/po/ltg.po,
+ perl-install/standalone/po/lv.po,
+ perl-install/standalone/po/mk.po,
+ perl-install/standalone/po/mn.po,
+ perl-install/standalone/po/ms.po,
+ perl-install/standalone/po/mt.po,
+ perl-install/standalone/po/nb.po,
+ perl-install/standalone/po/nl.po,
+ perl-install/standalone/po/nn.po,
+ perl-install/standalone/po/pa_IN.po,
+ perl-install/standalone/po/pl.po,
+ perl-install/standalone/po/pt.po,
+ perl-install/standalone/po/pt_BR.po,
+ perl-install/standalone/po/ro.po,
+ perl-install/standalone/po/ru.po,
+ perl-install/standalone/po/sc.po,
+ perl-install/standalone/po/sk.po,
+ perl-install/standalone/po/sl.po,
+ perl-install/standalone/po/sq.po,
+ perl-install/standalone/po/sr.po,
+ perl-install/standalone/po/sr@Latn.po,
+ perl-install/standalone/po/sv.po,
+ perl-install/standalone/po/ta.po,
+ perl-install/standalone/po/tg.po,
+ perl-install/standalone/po/th.po,
+ perl-install/standalone/po/tl.po,
+ perl-install/standalone/po/tr.po,
+ perl-install/standalone/po/uk.po,
+ perl-install/standalone/po/uz.po,
+ perl-install/standalone/po/uz@Latn.po,
+ perl-install/standalone/po/vi.po,
+ perl-install/standalone/po/wa.po,
+ perl-install/standalone/po/zh_CN.po,
+ perl-install/standalone/po/zh_TW.po: typo fix (Arpad Biro)
+
+2006-09-11 14:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/DrakX.pot,
+ perl-install/install/share/po/af.po,
+ perl-install/install/share/po/am.po,
+ perl-install/install/share/po/ar.po,
+ perl-install/install/share/po/az.po,
+ perl-install/install/share/po/be.po,
+ perl-install/install/share/po/bg.po,
+ perl-install/install/share/po/bn.po,
+ perl-install/install/share/po/br.po,
+ perl-install/install/share/po/bs.po,
+ perl-install/install/share/po/ca.po,
+ perl-install/install/share/po/cs.po,
+ perl-install/install/share/po/cy.po,
+ perl-install/install/share/po/da.po,
+ perl-install/install/share/po/de.po,
+ perl-install/install/share/po/el.po,
+ perl-install/install/share/po/eo.po,
+ perl-install/install/share/po/es.po,
+ perl-install/install/share/po/et.po,
+ perl-install/install/share/po/eu.po,
+ perl-install/install/share/po/fa.po,
+ perl-install/install/share/po/fi.po,
+ perl-install/install/share/po/fr.po,
+ perl-install/install/share/po/fur.po,
+ perl-install/install/share/po/ga.po,
+ perl-install/install/share/po/gl.po,
+ perl-install/install/share/po/he.po,
+ perl-install/install/share/po/hi.po,
+ perl-install/install/share/po/hr.po,
+ perl-install/install/share/po/hu.po,
+ perl-install/install/share/po/id.po,
+ perl-install/install/share/po/is.po,
+ perl-install/install/share/po/it.po,
+ perl-install/install/share/po/ja.po,
+ perl-install/install/share/po/ko.po,
+ perl-install/install/share/po/ky.po,
+ perl-install/install/share/po/lt.po,
+ perl-install/install/share/po/ltg.po,
+ perl-install/install/share/po/lv.po,
+ perl-install/install/share/po/mk.po,
+ perl-install/install/share/po/mn.po,
+ perl-install/install/share/po/ms.po,
+ perl-install/install/share/po/mt.po,
+ perl-install/install/share/po/nb.po,
+ perl-install/install/share/po/nl.po,
+ perl-install/install/share/po/nn.po,
+ perl-install/install/share/po/pa_IN.po,
+ perl-install/install/share/po/pl.po,
+ perl-install/install/share/po/pt.po,
+ perl-install/install/share/po/pt_BR.po,
+ perl-install/install/share/po/ro.po,
+ perl-install/install/share/po/ru.po,
+ perl-install/install/share/po/sc.po,
+ perl-install/install/share/po/sk.po,
+ perl-install/install/share/po/sl.po,
+ perl-install/install/share/po/sq.po,
+ perl-install/install/share/po/sr.po,
+ perl-install/install/share/po/sr@Latn.po,
+ perl-install/install/share/po/sv.po,
+ perl-install/install/share/po/ta.po,
+ perl-install/install/share/po/tg.po,
+ perl-install/install/share/po/th.po,
+ perl-install/install/share/po/tl.po,
+ perl-install/install/share/po/tr.po,
+ perl-install/install/share/po/uk.po,
+ perl-install/install/share/po/uz.po,
+ perl-install/install/share/po/uz@Latn.po,
+ perl-install/install/share/po/vi.po,
+ perl-install/install/share/po/wa.po,
+ perl-install/install/share/po/zh_CN.po,
+ perl-install/install/share/po/zh_TW.po,
+ perl-install/install/steps_list.pm: typo fix (Arpad Biro)
+
+2006-09-11 14:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm,
+ perl-install/network/network.pm: set RESOLV_MODS to yes when DNS
+ addresses are configured
+
+2006-09-11 14:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/wireless.pm: fix bad deref by
+ short-circuiting
+
+2006-09-11 13:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm: enable PEERDNS if
+ DNS addresses are specified as well
+
+2006-09-11 13:51 felipe
+
+ * perl-install/standalone/po/pt_BR.po: fixing fuzzy entries
+
+2006-09-11 13:40 felipe
+
+ * perl-install/share/po/pt_BR.po: translating new messages
+
+2006-09-11 13:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: workaround a ugly fix getting
+ cciss devices (reported by aginies)
+
+2006-09-11 12:16 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/autosetupprintqueues: - Fixed loop to
+ wait for desktop login in the Plug'n'Print script
+
+2006-09-11 11:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: install openoffice.org-kde
+ on kde (not on gnome), and vice-versa
+
+2006-09-11 11:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.67-1mdv2007.0
+
+2006-09-11 11:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: only allow not using dmraid during
+ install
+
+2006-09-11 11:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mygtk2.pm: _text_insert) add support for any Gtk+
+ widget
+
+2006-09-11 11:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: set cursors in fast_toggle so that all
+ callers (ie when selecting through the
+ keyboard too) show that selecting may be slow, depending on the
+ actual
+ dependancies
+
+2006-09-11 11:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: typo fix
+
+2006-09-11 11:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: update status bar on package selection
+ (#24673)
+ * perl-install/ugtk2.pm:
+ (ask_browse_tree_info_given_widgets_for_rpmdrake) do not clear
+ caches on exit
+ (thus fixing some gtk+ warnings (#23720) & saving some time)
+
+2006-09-11 11:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: remove debug code
+
+2006-09-11 11:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm:
+ (ask_browse_tree_info_given_widgets_for_rpmdrake) fix crash
+ (#25352)
+ * perl-install/ugtk2.pm:
+ (ask_browse_tree_info_given_widgets_for_rpmdrake) scroll tree
+ view to its top
+ when clearing/refilling its attached model (#25207)
+
+2006-09-11 11:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/bootloader-config: add --add-resume2
+ (but not mentionned in usage) for kernel-multimedia (as
+ requested by danny)
+
+2006-09-11 09:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: we need to disactivate dmraid when we
+ don't want it
+
+2006-09-11 08:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: install linuxwacom if needed (#20928)
+
+2006-09-11 06:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/proprietary.pm: fglrx handles GLX (if we
+ don't force DRI_GLX, one don't get 3D when choosing "Radeon
+ (fbdev)")
+
+2006-09-10 14:05 Arpad Biro <biro_arpad at yahoo.com>
+
+ * perl-install/share/po/hu.po: update
+
+2006-09-10 13:51 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2006-09-10 13:49 Arpad Biro <biro_arpad at yahoo.com>
+
+ * perl-install/share/po/hu.po: update
+
+2006-09-10 13:34 Arpad Biro <biro_arpad at yahoo.com>
+
+ * perl-install/standalone/po/hu.po: update
+
+2006-09-10 03:02 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: traslate new strings
+
+2006-09-09 16:43 nbauer
+
+ * perl-install/share/po/de.po: Update German translation (Nicolas
+ Bauer)
+
+2006-09-09 14:44 Arpad Biro <biro_arpad at yahoo.com>
+
+ * perl-install/share/po/hu.po: update
+
+2006-09-09 13:44 berthy
+
+ * perl-install/share/po/fr.po: Update fr translation
+
+2006-09-09 13:38 berthy
+
+ * perl-install/install/share/po/fr.po: Update fr translation
+
+2006-09-09 12:19 nbauer
+
+ * perl-install/share/po/de.po: Update German translation (Nicolas
+ Bauer)
+
+2006-09-09 12:00 nbauer
+
+ * perl-install/share/po/de.po: Update German translation (Nicolas
+ Bauer)
+
+2006-09-09 09:16 nbauer
+
+ * perl-install/share/po/de.po: Update German translation (Nicolas
+ Bauer)
+
+2006-09-09 08:58 nbauer
+
+ * perl-install/standalone/po/de.po: Update German translation
+ (Nicolas Bauer)
+
+2006-09-08 22:44 Arpad Biro <biro_arpad at yahoo.com>
+
+ * perl-install/standalone/po/hu.po: update
+
+2006-09-08 21:05 thomas
+
+ * perl-install/share/po/sv.po: updated translation
+
+2006-09-08 19:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: allow to go on if some
+ packages are optionnal (#22742)
+
+2006-09-08 19:16 nbauer
+
+ * perl-install/standalone/po/de.po: Update German translation
+ (Nicolas Bauer)
+
+2006-09-08 18:21 nbauer
+
+ * perl-install/share/po/de.po: Update German translation
+
+2006-09-08 18:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/timezone.pm: enable ntpd if required (#25348)
+
+2006-09-08 17:40 Arpad Biro <biro_arpad at yahoo.com>
+
+ * live/draklive-install/po/pl.po: update from Tomasz
+
+2006-09-08 17:31 Arpad Biro <biro_arpad at yahoo.com>
+
+ * perl-install/install/share/po/pl.po: update from Tomasz
+
+2006-09-08 16:52 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-09-08 16:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: /etc/menu-methods/lang.h is not needed
+ anymore
+
+2006-09-08 15:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/crypto.pm,
+ perl-install/install/install2.pm,
+ perl-install/install/mirror.pm, perl-install/install/steps.pm,
+ perl-install/install/steps_interactive.pm: - rename
+ install/crypto.pm into install/mirror.pm, and clean it up:
+ - rename mirrors & bestMirror() into list() & nearest()
+ - remove version()
+ - don't use hard-coded list (hopefully ftp after
+ http://api.mandriva.com will work...)
+ - use the standard
+ - create install::any::ask_mirror() instead of
+ install::steps_interactive::selectSupplMedia() and
+ install::steps_interactive::askSupplMirror()
+ (as a result install::steps::askSupplMirror() is no more
+ needed)
+ - rename $o->{updates}{mirror} into $o->{updates}{url}
+ - use product.id instead of VERSION at the root of the media (it
+ gives the version and arch to use to get the list of mirrors)
+ - compute meta_class from product= given by product.id
+ - freshen installUpdates() in install::steps and
+ install::steps_interactive
+ - $o->{meta_class} is always set correctly, no need to failsafe
+ its value when
+ writing META_CLASS in /etc/sysconfig/system (and "PowerPack"
+ is not valid, "powerpack" is)
+
+2006-09-08 15:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: new function useful to parse
+ /etc/product.id and lines from api.mandriva.com
+ (eg: http://api.mandriva.com/mirrors/2007.0.i586.list)
+
+2006-09-08 14:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (gtkpowerpack) tell where we bugged
+
+2006-09-08 16:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: /etc/menu-methods/lang.h is not needed
+ anymore
+
+2006-09-08 15:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/crypto.pm,
+ perl-install/install/install2.pm,
+ perl-install/install/mirror.pm, perl-install/install/steps.pm,
+ perl-install/install/steps_interactive.pm: - rename
+ install/crypto.pm into install/mirror.pm, and clean it up:
+ - rename mirrors & bestMirror() into list() & nearest()
+ - remove version()
+ - don't use hard-coded list (hopefully ftp after
+ http://api.mandriva.com will work...)
+ - use the standard
+ - create install::any::ask_mirror() instead of
+ install::steps_interactive::selectSupplMedia() and
+ install::steps_interactive::askSupplMirror()
+ (as a result install::steps::askSupplMirror() is no more
+ needed)
+ - rename $o->{updates}{mirror} into $o->{updates}{url}
+ - use product.id instead of VERSION at the root of the media (it
+ gives the version and arch to use to get the list of mirrors)
+ - compute meta_class from product= given by product.id
+ - freshen installUpdates() in install::steps and
+ install::steps_interactive
+ - $o->{meta_class} is always set correctly, no need to failsafe
+ its value when
+ writing META_CLASS in /etc/sysconfig/system (and "PowerPack"
+ is not valid, "powerpack" is)
+
+2006-09-08 15:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: new function useful to parse
+ /etc/product.id and lines from api.mandriva.com
+ (eg: http://api.mandriva.com/mirrors/2007.0.i586.list)
+
+2006-09-08 14:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (gtkpowerpack) tell where we bugged
+
+2006-09-08 12:54 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: default splash image is now
+ splash.xpm.gz for grub
+
+2006-09-08 12:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone.pm: disable automatically running
+ drakbug on segfault since $SIG{SEGV} is unreliable (#18087)
+
+2006-09-08 12:31 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/po/es.po: updated Spanish file
+
+2006-09-08 12:11 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/install/share/po/cy.po: updated Welsh file
+
+2006-09-08 12:10 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/es.po: updated po file
+
+2006-09-08 11:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: simplify and use
+ get_standalone_medium
+
+2006-09-08 10:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/monitor.pm: don't list an empty "[]"
+ wireless network
+
+2006-09-08 10:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/po/fr.po: fix more profiles typo
+
+2006-09-08 10:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/po/fr.po: fix typo
+
+2006-09-08 10:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/signal_strength.pm: don't scale signal
+ strength pixbufs, they're already at the correct size
+ * perl-install/network/signal_strength.pm: fix typo
+
+2006-09-08 08:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/media.pm: -
+ setup_suppl_medium is obsolete
+ - is_suppl is better set in phys_medium
+ - mount only once nfs medium in selectSupplMedia (need testing)
+
+2006-09-08 05:20 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po file
+
+2006-09-08 02:04 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/install/share/po/cy.po: updated Welsh file
+
+2006-09-08 02:00 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/cy.po: updated Welsh file
+
+2006-09-07 23:41 mmodem
+
+ * perl-install/standalone/po/pt.po: up
+
+2006-09-07 23:39 mmodem
+
+ * perl-install/share/po/pt.po: up
+
+2006-09-07 21:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm: use _libdir/mesa as LD_LIBRARY_PATH
+ when needed
+
+2006-09-07 21:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/cellular.pm: gcom is now named
+ comgt
+
+2006-09-07 20:47 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/install/share/po/nl.po: * Reinout van Schouwen
+ <reinouts@gnome.org>
+
+ - Updated Dutch translation of DrakX
+
+2006-09-07 20:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: add wait message if network
+ scan is slow
+
+2006-09-07 20:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: improve buttons
+ sensitivity/status
+
+2006-09-07 19:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: ask for hardware settings if
+ required
+ * perl-install/standalone/drakroam: introduce prepare_connection
+
+2006-09-07 19:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/cellular.pm: fix return code
+
+2006-09-07 19:12 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/cellular.pm: better check for
+ $::o
+
+2006-09-07 19:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/cellular.pm: split prepare/check
+ device functions
+
+2006-09-07 19:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: load module and check
+ thirdparty settings
+
+2006-09-07 19:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: remove workaround for
+ #25346
+
+2006-09-07 19:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection.pm,
+ perl-install/network/connection/ethernet.pm,
+ perl-install/network/netconnect.pm: load connection module in
+ network::connection::prepare_device()
+
+2006-09-07 19:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/common.pm: (translate_real) when utf8 pragam is in
+ use, Locale::gettext() returns
+ an utf8 strings not tagged as such (#25346)
+
+2006-09-07 18:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/cellular.pm: add thirdparty
+ settings for the nozomi driver (3G cards)
+
+2006-09-07 18:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: protect some hash deref
+
+2006-09-07 17:37 Warly <warly at mandriva.com>
+
+ * live/One/config/rpmsrate: waiting for merge with the cooker one,
+ add some local changes
+
+2006-09-07 17:36 Warly <warly at mandriva.com>
+
+ * live/One/config/live.cfg: change language category, add new
+ commercial packages
+
+2006-09-07 17:35 Warly <warly at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: added theme and graphics
+ category, added wpa_supplicant, drakx-finish-install and
+ one-kde-config
+
+2006-09-07 17:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection.pm: make net_applet reload its
+ configuration after a new connection is configured
+
+2006-09-07 17:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_interactive.pm: always prompt if we
+ want to updates (useful for next commit)
+
+2006-09-07 17:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps.pm,
+ perl-install/install/steps_interactive.pm: do not use method
+ call since not needed
+
+2006-09-07 17:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps.pm: do not up/down network in
+ $::local_install
+
+2006-09-07 17:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm, perl-install/install/pkgs.pm: -
+ do not use symlink in /tmp for hdlist (useful so that {hdlist}
+ is not used anymore)
+ - do not handle filehandle for hdlist anymore (will drop its use
+ later)
+
+2006-09-07 17:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/media.pm: drop
+ psUpdateHdlistsDeps
+
+2006-09-07 17:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: create get_standalone_medium()
+ and use it
+
+2006-09-07 17:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: utf8 pramga broke N()
+ (#25346)
+
+2006-09-07 16:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/drakvpn.pm: make net_applet reload its
+ configuration when a vpn is started from drakvpn (#25341)
+
+2006-09-07 16:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: introduce reload_net_applet()
+ * kernel/list_modules.pm,
+ perl-install/network/connection/wireless.pm: at76c503* drivers
+ are now merged into at76_usb
+
+2006-09-07 16:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: (Done) one more missing
+ title
+
+2006-09-07 16:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: add missing titles
+
+2006-09-07 15:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.66-1mdv2007.0
+
+2006-09-07 15:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: move devices whose category is
+ either MEMORY_OTHER or SYSTEM_PIC from unknown into bridges class
+ * perl-install/harddrake/data.pm: try harder to detect SCSI
+ controllers (eg aic79xx driven ones)
+
+2006-09-07 15:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/do_pkgs.pm: add missing titles
+
+2006-09-07 14:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm:
+ (ask_browse_tree_info_given_widgets_for_rpmdrake) display a busy
+ curor
+ while fetching dependancies to select
+
+2006-09-07 12:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: enable to get rid of
+ initscript dependancy on sound-scripts
+
+2006-09-07 10:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/compssUsers.pl: fix using
+ compssUsers.pl in newt/text mode (#24972)
+
+2006-09-07 10:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/newt.pm: fix running drakx-in-chroot
+ with newt interface
+
+2006-09-07 10:15 Marek Laane <bald at starman.ee>
+
+ * perl-install/standalone/po/et.po: Updated Estonian translation.
+
+2006-09-07 10:11 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po: Updated Estonian translation.
+
+2006-09-07 09:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: mkfs.xfs doesn't handle
+ -c (#13471)
+
+2006-09-07 09:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: fix commented command to run
+ drakx-in-chroot with CLEAN=1 (sudo now cleanup most env
+ variables)
+
+2006-09-07 08:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: fix flag in bad place
+
+2006-09-07 08:24 Pixel <pixel at mandriva.com>
+
+ * tools/drakx-in-chroot: ensure rm_rf won't remove my local
+ /export :'-(
+
+2006-09-07 06:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: HWheelXAxisMapping is nonsense,
+ HWheelRelativeAxisButtons is good (many thanks to adamw for
+ spotting this)
+
+2006-09-07 00:18 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/standalone/po/nb.po: more cleanups
+
+2006-09-06 22:47 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/standalone/po/nb.po: some cleanups
+
+2006-09-06 21:29 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/standalone/po/nb.po: translate new last minute
+ strings
+
+2006-09-06 21:07 Michal Bukovjan <bukovjan at mbox.dkm.cz>
+
+ * perl-install/standalone/po/cs.po: Update Czech translation
+
+2006-09-06 20:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection.pm,
+ perl-install/network/netconnect.pm,
+ perl-install/network/network.pm,
+ perl-install/standalone/drakroam: allow to select VPN connection
+ in drakconnect and drakroam
+
+2006-09-06 20:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/drakvpn.pm, perl-install/network/vpn.pm,
+ perl-install/network/vpn/openvpn.pm,
+ perl-install/network/vpn/vpnc.pm: make get_name() return the
+ connection name and get_description() the type description
+
+2006-09-06 19:39 Michal Bukovjan <bukovjan at mbox.dkm.cz>
+
+ * perl-install/share/po/cs.po: Update Czech translation
+
+2006-09-06 19:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/vpn.pm, perl-install/standalone/net_applet:
+ introduce network::vpn::get_label
+
+2006-09-06 19:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm: add one more FIXME
+
+2006-09-06 19:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: add cellular connections
+ support in drakroam
+
+2006-09-06 19:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/cellular.pm: write cellular APN
+ settings in cellular.d
+
+2006-09-06 19:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: don't vivify
+ $connection->{networks}
+
+2006-09-06 19:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection.pm,
+ perl-install/network/netconnect.pm: add set_provider() function
+
+2006-09-06 18:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: install zd1201-firmware for
+ zd1201 devices
+
+2006-09-06 18:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: use a scrolling window for
+ wireless/cellular network list
+
+2006-09-06 17:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/xdsl.pm: drop redundant field
+
+2006-09-06 17:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/wireless.pm: drop some redundant
+ fields, cosmetics
+
+2006-09-06 17:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/wireless.pm: adding missing name
+
+2006-09-06 17:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: use signal_strength instead
+ of signal_level
+
+2006-09-06 17:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/wireless.pm,
+ perl-install/network/monitor.pm: use signal_strength instead of
+ signal_level and drop unused approx_level value
+
+2006-09-06 17:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam,
+ perl-install/standalone/net_applet: use
+ network::signal_strength::get_strength_icon()
+
+2006-09-06 17:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/signal_strength.pm: modify prototype (take
+ a network as argument)
+
+2006-09-06 17:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: don't export non-existent
+ sethostname
+
+2006-09-06 16:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/cellular.pm: install the ppp
+ package for cellular connections
+
+2006-09-06 16:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/cellular.pm: add usbserial
+ support for cellular connections
+
+2006-09-06 16:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: don't reload kernel module
+ when the required firmware is already installed
+
+2006-09-06 16:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * live/draklive-install/Makefile: (dis) simplify
+
+2006-09-06 15:36 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/Makefile: don't package .svn
+
+2006-09-06 15:34 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/Makefile: build source as well
+ * live/draklive-install/draklive-install.spec: 0.1-8mdv2007.0
+
+2006-09-06 15:32 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install: don't grab focus if a
+ window manager is running (#23454) and, as a side effect, don't
+ die when switching to another desktop (#23453)
+
+2006-09-06 15:12 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install: create /mnt and its
+ top-level-directories (#25137)
+
+2006-09-06 14:31 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-09-06 14:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: fix ugly typo (fix klaptop not
+ installed on laptops)
+
+2006-09-06 14:23 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/es.po: fixed translation of "share"
+
+2006-09-06 14:12 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/po/es.po: fixed translation of "share"
+
+2006-09-06 13:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm:
+ (ask_browse_tree_info_given_widgets_for_rpmdrake) kill gtk+
+ warnings (#23720)
+
+2006-09-06 13:23 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg: disable bpalogin service on live
+
+2006-09-06 13:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm, perl-install/Xconfig/various.pm:
+ allow choosing 3D acceleration when specifying driver explictly
+
+2006-09-06 12:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/various.pm: allow to configure SWCursor on
+ savage cards (since it is needed on "VT8751 [ProSavageDDR
+ P4M266] VGA Controller" (0x5333:0x8d04))
+
+2006-09-06 14:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: fix ugly typo (fix klaptop not
+ installed on laptops)
+
+2006-09-06 14:23 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/es.po: fixed translation of "share"
+
+2006-09-06 14:12 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/po/es.po: fixed translation of "share"
+
+2006-09-06 13:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm:
+ (ask_browse_tree_info_given_widgets_for_rpmdrake) kill gtk+
+ warnings (#23720)
+
+2006-09-06 13:23 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg: disable bpalogin service on live
+
+2006-09-06 13:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm, perl-install/Xconfig/various.pm:
+ allow choosing 3D acceleration when specifying driver explictly
+
+2006-09-06 12:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/various.pm: allow to configure SWCursor on
+ savage cards (since it is needed on "VT8751 [ProSavageDDR
+ P4M266] VGA Controller" (0x5333:0x8d04))
+
+2006-09-06 11:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: simplify
+ * perl-install/install/media.pm: fix copy_rpms_on_disk (also fixes
+ the resulting urpmi config) (#25197)
+
+2006-09-06 10:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: perl_checker compliance
+
+2006-09-06 10:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: fix handling error installing
+ x11-driver-video-xxx (error was silent)
+
+2006-09-06 09:39 ybando
+
+ * perl-install/standalone/po/ja.po: update Japanese translation
+
+2006-09-06 09:37 ybando
+
+ * perl-install/share/po/ja.po: update Japanese translation
+
+2006-09-06 08:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.65-1mdv2007.0
+
+2006-09-06 08:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: prefer kernel-source-stripped-xxx
+
+2006-09-06 00:41 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po, perl-install/standalone/po/id.po:
+ Updated
+
+2006-09-05 21:37 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/es.po, perl-install/share/po/fr.po,
+ perl-install/share/po/wa.po: updated Spanish, French and Walloon
+ files
+
+2006-09-05 21:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: install zd1211-firmware if
+ needed
+
+2006-09-05 20:25 thomas
+
+ * perl-install/share/po/sv.po: updated translations
+
+2006-09-05 20:03 thomas
+
+ * perl-install/standalone/po/sv.po: updated translations
+
+2006-09-05 18:45 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/po/wa.po: small update
+
+2006-09-05 18:44 Karl Ove Hufthammer <karl at huftis.org>
+
+ * perl-install/share/po/nn.po: Updated Norwegian Nynorsk
+ translation.
+
+2006-09-05 18:32 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/po/af.po,
+ perl-install/standalone/po/am.po,
+ perl-install/standalone/po/ar.po,
+ perl-install/standalone/po/az.po,
+ perl-install/standalone/po/es.po,
+ perl-install/standalone/po/fr.po,
+ perl-install/standalone/po/wa.po: updated Spanish, Walloon and
+ French files
+
+2006-09-05 18:31 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-09-05 18:23 Karl Ove Hufthammer <karl at huftis.org>
+
+ * live/draklive-install/po/nn.po: Updated Norwegian Nynorsk
+ translation.
+
+2006-09-05 18:17 Warly <warly at mandriva.com>
+
+ * perl-install/install/share/advertising/01-LinDVD.pl,
+ perl-install/install/share/advertising/02-TRANSGAMING-CEDEGA.pl,
+ perl-install/install/share/advertising/03-FLATOUT.pl,
+ perl-install/install/share/advertising/04-Kaspersky.pl,
+ perl-install/install/share/advertising/05-Skype.pl,
+ perl-install/install/share/advertising/08-IM_3D.pl,
+ perl-install/install/share/advertising/09-IM_THEME.pl,
+ perl-install/install/share/advertising/10-VPN.pl,
+ perl-install/install/share/advertising/11-IM_RPMDRAKE.pl,
+ perl-install/install/share/advertising/12-IM_web2.pl,
+ perl-install/install/share/advertising/13-IM_SERVICES.pl,
+ perl-install/install/share/advertising/14-IM_GAMME.pl,
+ perl-install/install/share/advertising/15-IM_REGISTER.pl: add
+ titles for new advertisment
+
+2006-09-05 17:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/wireless.pm: fix firmware path
+ for zd1211
+
+2006-09-05 17:02 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/po/es.po: updated Spanish file
+
+2006-09-05 16:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po, perl-install/standalone/po/br.po:
+ update
+
+2006-09-05 18:23 Karl Ove Hufthammer <karl at huftis.org>
+
+ * live/draklive-install/po/nn.po: Updated Norwegian Nynorsk
+ translation.
+
+2006-09-05 18:17 Warly <warly at mandriva.com>
+
+ * perl-install/install/share/advertising/01-LinDVD.pl,
+ perl-install/install/share/advertising/02-TRANSGAMING-CEDEGA.pl,
+ perl-install/install/share/advertising/03-FLATOUT.pl,
+ perl-install/install/share/advertising/04-Kaspersky.pl,
+ perl-install/install/share/advertising/05-Skype.pl,
+ perl-install/install/share/advertising/08-IM_3D.pl,
+ perl-install/install/share/advertising/09-IM_THEME.pl,
+ perl-install/install/share/advertising/10-VPN.pl,
+ perl-install/install/share/advertising/11-IM_RPMDRAKE.pl,
+ perl-install/install/share/advertising/12-IM_web2.pl,
+ perl-install/install/share/advertising/13-IM_SERVICES.pl,
+ perl-install/install/share/advertising/14-IM_GAMME.pl,
+ perl-install/install/share/advertising/15-IM_REGISTER.pl: add
+ titles for new advertisment
+
+2006-09-05 17:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/wireless.pm: fix firmware path
+ for zd1211
+
+2006-09-05 17:02 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/po/es.po: updated Spanish file
+
+2006-09-05 16:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po, perl-install/standalone/po/br.po:
+ update
+
+2006-09-05 15:58 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/po/es.po: updated Spanish file
+
+2006-09-05 15:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/af.po, perl-install/share/po/am.po,
+ perl-install/share/po/ar.po, perl-install/share/po/az.po,
+ perl-install/share/po/be.po, perl-install/share/po/bg.po,
+ perl-install/share/po/bn.po, perl-install/share/po/br.po,
+ perl-install/share/po/bs.po, perl-install/share/po/ca.po,
+ perl-install/share/po/cs.po, perl-install/share/po/cy.po,
+ perl-install/share/po/da.po, perl-install/share/po/de.po,
+ perl-install/share/po/el.po, perl-install/share/po/eo.po,
+ perl-install/share/po/es.po, perl-install/share/po/et.po,
+ perl-install/share/po/eu.po, perl-install/share/po/fa.po,
+ perl-install/share/po/fi.po, perl-install/share/po/fr.po,
+ perl-install/share/po/ga.po, perl-install/share/po/gl.po,
+ perl-install/share/po/he.po, perl-install/share/po/hi.po,
+ perl-install/share/po/hr.po, perl-install/share/po/hu.po,
+ perl-install/share/po/id.po, perl-install/share/po/is.po,
+ perl-install/share/po/it.po, perl-install/share/po/ja.po,
+ perl-install/share/po/ko.po, perl-install/share/po/ky.po,
+ perl-install/share/po/libDrakX.pot, perl-install/share/po/lt.po,
+ perl-install/share/po/ltg.po, perl-install/share/po/lv.po,
+ perl-install/share/po/mk.po, perl-install/share/po/mn.po,
+ perl-install/share/po/ms.po, perl-install/share/po/mt.po,
+ perl-install/share/po/nb.po, perl-install/share/po/nl.po,
+ perl-install/share/po/nn.po, perl-install/share/po/pa_IN.po,
+ perl-install/share/po/pl.po, perl-install/share/po/pt.po,
+ perl-install/share/po/pt_BR.po, perl-install/share/po/ro.po,
+ perl-install/share/po/ru.po, perl-install/share/po/sc.po,
+ perl-install/share/po/sk.po, perl-install/share/po/sl.po,
+ perl-install/share/po/sq.po, perl-install/share/po/sr.po,
+ perl-install/share/po/sr@Latn.po, perl-install/share/po/sv.po,
+ perl-install/share/po/ta.po, perl-install/share/po/tg.po,
+ perl-install/share/po/th.po, perl-install/share/po/tl.po,
+ perl-install/share/po/tr.po, perl-install/share/po/uk.po,
+ perl-install/share/po/uz.po, perl-install/share/po/uz@Latn.po,
+ perl-install/share/po/vi.po, perl-install/share/po/wa.po,
+ perl-install/share/po/zh_CN.po, perl-install/share/po/zh_TW.po:
+ retrieve translations from older ../../standalone/po
+
+2006-09-05 14:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/af.po,
+ perl-install/standalone/po/am.po,
+ perl-install/standalone/po/ar.po,
+ perl-install/standalone/po/az.po,
+ perl-install/standalone/po/be.po,
+ perl-install/standalone/po/bg.po,
+ perl-install/standalone/po/bn.po,
+ perl-install/standalone/po/br.po,
+ perl-install/standalone/po/bs.po,
+ perl-install/standalone/po/ca.po,
+ perl-install/standalone/po/cs.po,
+ perl-install/standalone/po/cy.po,
+ perl-install/standalone/po/da.po,
+ perl-install/standalone/po/de.po,
+ perl-install/standalone/po/el.po,
+ perl-install/standalone/po/eo.po,
+ perl-install/standalone/po/es.po,
+ perl-install/standalone/po/et.po,
+ perl-install/standalone/po/eu.po,
+ perl-install/standalone/po/fa.po,
+ perl-install/standalone/po/fi.po,
+ perl-install/standalone/po/fr.po,
+ perl-install/standalone/po/fur.po,
+ perl-install/standalone/po/ga.po,
+ perl-install/standalone/po/gl.po,
+ perl-install/standalone/po/he.po,
+ perl-install/standalone/po/hi.po,
+ perl-install/standalone/po/hr.po,
+ perl-install/standalone/po/hu.po,
+ perl-install/standalone/po/id.po,
+ perl-install/standalone/po/is.po,
+ perl-install/standalone/po/it.po,
+ perl-install/standalone/po/ja.po,
+ perl-install/standalone/po/ko.po,
+ perl-install/standalone/po/ky.po,
+ perl-install/standalone/po/libDrakX-standalone.pot,
+ perl-install/standalone/po/lt.po,
+ perl-install/standalone/po/ltg.po,
+ perl-install/standalone/po/lv.po,
+ perl-install/standalone/po/mk.po,
+ perl-install/standalone/po/mn.po,
+ perl-install/standalone/po/ms.po,
+ perl-install/standalone/po/mt.po,
+ perl-install/standalone/po/nb.po,
+ perl-install/standalone/po/nl.po,
+ perl-install/standalone/po/nn.po,
+ perl-install/standalone/po/pa_IN.po,
+ perl-install/standalone/po/pl.po,
+ perl-install/standalone/po/pt.po,
+ perl-install/standalone/po/pt_BR.po,
+ perl-install/standalone/po/ro.po,
+ perl-install/standalone/po/ru.po,
+ perl-install/standalone/po/sc.po,
+ perl-install/standalone/po/sk.po,
+ perl-install/standalone/po/sl.po,
+ perl-install/standalone/po/sq.po,
+ perl-install/standalone/po/sr.po,
+ perl-install/standalone/po/sr@Latn.po,
+ perl-install/standalone/po/sv.po,
+ perl-install/standalone/po/ta.po,
+ perl-install/standalone/po/tg.po,
+ perl-install/standalone/po/th.po,
+ perl-install/standalone/po/tl.po,
+ perl-install/standalone/po/tr.po,
+ perl-install/standalone/po/uk.po,
+ perl-install/standalone/po/uz.po,
+ perl-install/standalone/po/uz@Latn.po,
+ perl-install/standalone/po/vi.po,
+ perl-install/standalone/po/wa.po,
+ perl-install/standalone/po/zh_CN.po,
+ perl-install/standalone/po/zh_TW.po: sync with code
+
+2006-09-05 14:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/af.po, perl-install/share/po/am.po,
+ perl-install/share/po/ar.po, perl-install/share/po/az.po,
+ perl-install/share/po/be.po, perl-install/share/po/bg.po,
+ perl-install/share/po/bn.po, perl-install/share/po/br.po,
+ perl-install/share/po/bs.po, perl-install/share/po/ca.po,
+ perl-install/share/po/cs.po, perl-install/share/po/cy.po,
+ perl-install/share/po/da.po, perl-install/share/po/de.po,
+ perl-install/share/po/el.po, perl-install/share/po/eo.po,
+ perl-install/share/po/es.po, perl-install/share/po/et.po,
+ perl-install/share/po/eu.po, perl-install/share/po/fa.po,
+ perl-install/share/po/fi.po, perl-install/share/po/fr.po,
+ perl-install/share/po/fur.po, perl-install/share/po/ga.po,
+ perl-install/share/po/gl.po, perl-install/share/po/he.po,
+ perl-install/share/po/hi.po, perl-install/share/po/hr.po,
+ perl-install/share/po/hu.po, perl-install/share/po/id.po,
+ perl-install/share/po/is.po, perl-install/share/po/it.po,
+ perl-install/share/po/ja.po, perl-install/share/po/ko.po,
+ perl-install/share/po/ky.po, perl-install/share/po/libDrakX.pot,
+ perl-install/share/po/lt.po, perl-install/share/po/ltg.po,
+ perl-install/share/po/lv.po, perl-install/share/po/mk.po,
+ perl-install/share/po/mn.po, perl-install/share/po/ms.po,
+ perl-install/share/po/mt.po, perl-install/share/po/nb.po,
+ perl-install/share/po/nl.po, perl-install/share/po/nn.po,
+ perl-install/share/po/pa_IN.po, perl-install/share/po/pl.po,
+ perl-install/share/po/pt.po, perl-install/share/po/pt_BR.po,
+ perl-install/share/po/ro.po, perl-install/share/po/ru.po,
+ perl-install/share/po/sc.po, perl-install/share/po/sk.po,
+ perl-install/share/po/sl.po, perl-install/share/po/sq.po,
+ perl-install/share/po/sr.po, perl-install/share/po/sr@Latn.po,
+ perl-install/share/po/sv.po, perl-install/share/po/ta.po,
+ perl-install/share/po/tg.po, perl-install/share/po/th.po,
+ perl-install/share/po/tl.po, perl-install/share/po/tr.po,
+ perl-install/share/po/uk.po, perl-install/share/po/uz.po,
+ perl-install/share/po/uz@Latn.po, perl-install/share/po/vi.po,
+ perl-install/share/po/wa.po, perl-install/share/po/zh_CN.po,
+ perl-install/share/po/zh_TW.po: sync with code
+
+2006-09-05 14:23 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po file
+
+2006-09-05 13:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/mousedrake: remove old code
+
+2006-09-05 13:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/mousedrake: remove old stuff
+
+2006-09-05 13:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: simplify
+
+2006-09-05 13:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: factorize mouse choice into
+ mouse::select()
+
+2006-09-05 13:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_interactive.pm,
+ perl-install/standalone/mousedrake: factorize mouse choice into
+ mouse::select()
+
+2006-09-05 13:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: keep previous device if it is valid
+
+2006-09-05 12:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: modify kde config files in
+ /var/lib/mandriva/kde-profiles/common/share/config instead of
+ /usr/share/config
+
+2006-09-05 12:45 Warly <warly at mandriva.com>
+
+ * perl-install/install/share/advertising/01-LinDVD.png,
+ perl-install/install/share/advertising/01.pl,
+ perl-install/install/share/advertising/01.png,
+ perl-install/install/share/advertising/02-TRANSGAMING-CEDEGA.png,
+ perl-install/install/share/advertising/02.pl,
+ perl-install/install/share/advertising/02.png,
+ perl-install/install/share/advertising/03-FLATOUT.png,
+ perl-install/install/share/advertising/03.pl,
+ perl-install/install/share/advertising/03.png,
+ perl-install/install/share/advertising/04-Kaspersky.png,
+ perl-install/install/share/advertising/04.pl,
+ perl-install/install/share/advertising/04.png,
+ perl-install/install/share/advertising/05-Skype.png,
+ perl-install/install/share/advertising/05.pl,
+ perl-install/install/share/advertising/05.png,
+ perl-install/install/share/advertising/06.png,
+ perl-install/install/share/advertising/07.png,
+ perl-install/install/share/advertising/08-IM_3D.png,
+ perl-install/install/share/advertising/08.pl,
+ perl-install/install/share/advertising/08.png,
+ perl-install/install/share/advertising/09-IM_THEME.png,
+ perl-install/install/share/advertising/09.pl,
+ perl-install/install/share/advertising/09.png,
+ perl-install/install/share/advertising/10-VPN.png,
+ perl-install/install/share/advertising/10.pl,
+ perl-install/install/share/advertising/10.png,
+ perl-install/install/share/advertising/11-IM_RPMDRAKE.png,
+ perl-install/install/share/advertising/11.pl,
+ perl-install/install/share/advertising/11.png,
+ perl-install/install/share/advertising/12-IM_web2.png,
+ perl-install/install/share/advertising/12.pl,
+ perl-install/install/share/advertising/12.png,
+ perl-install/install/share/advertising/13-IM_SERVICES.png,
+ perl-install/install/share/advertising/13.pl,
+ perl-install/install/share/advertising/13.png,
+ perl-install/install/share/advertising/14-IM_GAMME.png,
+ perl-install/install/share/advertising/14.pl,
+ perl-install/install/share/advertising/14.png,
+ perl-install/install/share/advertising/15-IM_REGISTER.png,
+ perl-install/install/share/advertising/15.pl,
+ perl-install/install/share/advertising/15.png,
+ perl-install/install/share/advertising/16.pl,
+ perl-install/install/share/advertising/16.png,
+ perl-install/install/share/advertising/17.pl,
+ perl-install/install/share/advertising/17.png,
+ perl-install/install/share/advertising/18.pl,
+ perl-install/install/share/advertising/18.png,
+ perl-install/install/share/advertising/19.pl,
+ perl-install/install/share/advertising/19.png,
+ perl-install/install/share/advertising/20.pl,
+ perl-install/install/share/advertising/20.png,
+ perl-install/install/share/advertising/21.pl,
+ perl-install/install/share/advertising/21.png,
+ perl-install/install/share/advertising/22.pl,
+ perl-install/install/share/advertising/22.png,
+ perl-install/install/share/advertising/23.pl,
+ perl-install/install/share/advertising/23.png,
+ perl-install/install/share/advertising/24.pl,
+ perl-install/install/share/advertising/24.png,
+ perl-install/install/share/advertising/25.pl,
+ perl-install/install/share/advertising/25.png,
+ perl-install/install/share/advertising/26.pl,
+ perl-install/install/share/advertising/26.png,
+ perl-install/install/share/advertising/intel.pl,
+ perl-install/install/share/advertising/intel.png,
+ perl-install/install/share/advertising/list-dwd,
+ perl-install/install/share/advertising/skype.pl,
+ perl-install/install/share/advertising/skype.png: added new
+ advertisment
+
+2006-09-05 12:35 Pixel <pixel at mandriva.com>
+
+ * Makefile.config: adapt to new rpm location (main/release/
+ instead of simply main/)
+
+2006-09-05 11:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: use /boot/grub/splash.xpm.gz if it
+ exists (pkgs mandriva-theme will modify it according to the
+ chosen theme)
+
+2006-09-05 11:30 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-09-05 11:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: /usr/share/config/kdm is /etc/kde/kdm (well
+ /usr/share/config -> /etc/kde)
+
+2006-09-05 11:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm, perl-install/bootloader.pm,
+ perl-install/install/any.pm, perl-install/lang.pm,
+ perl-install/standalone/drakTermServ: /usr/share/config/kdm is
+ /etc/kde/kdm (well /usr/share/config -> /etc/kde)
+
+2006-09-05 11:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: write imwheel startup.conf after
+ installing pkg imwheel so that /etc/X11/imwheel exists
+
+2006-09-05 10:29 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-09-05 10:25 nbauer
+
+ * perl-install/share/po/de.po: Update German translation
+ (Sebastian Deutscher)
+
+2006-09-05 10:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/install2.pm: have a valid
+ /etc/sysconfig/mouse when using drakx-in-chroot (useful for
+ mandriva One)
+
+2006-09-05 10:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/draksplash2: do not have both "use
+ common" and "use MDK::Common"
+
+2006-09-05 10:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: ask before bindly using software raid
+
+2006-09-05 09:34 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/standalone/po/nb.po: 50% sanitized
+
+2006-09-05 09:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: nicer logging
+ * perl-install/mouse.pm: - allow automatically using imwheel
+ without evdev
+ - change the format used for imwheel kind of mouse
+ (imwheel|MX500 is now imwheel+MX500, imwheel is now
+ imwheel+generic)
+
+2006-09-05 11:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: /usr/share/config/kdm is /etc/kde/kdm (well
+ /usr/share/config -> /etc/kde)
+
+2006-09-05 11:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm, perl-install/bootloader.pm,
+ perl-install/install/any.pm, perl-install/lang.pm,
+ perl-install/standalone/drakTermServ: /usr/share/config/kdm is
+ /etc/kde/kdm (well /usr/share/config -> /etc/kde)
+
+2006-09-05 11:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: write imwheel startup.conf after
+ installing pkg imwheel so that /etc/X11/imwheel exists
+
+2006-09-05 10:29 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-09-05 10:25 nbauer
+
+ * perl-install/share/po/de.po: Update German translation
+ (Sebastian Deutscher)
+
+2006-09-05 10:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/install2.pm: have a valid
+ /etc/sysconfig/mouse when using drakx-in-chroot (useful for
+ mandriva One)
+
+2006-09-05 10:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/draksplash2: do not have both "use
+ common" and "use MDK::Common"
+
+2006-09-05 10:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: ask before bindly using software raid
+
+2006-09-05 09:34 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/standalone/po/nb.po: 50% sanitized
+
+2006-09-05 09:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: nicer logging
+ * perl-install/mouse.pm: - allow automatically using imwheel
+ without evdev
+ - change the format used for imwheel kind of mouse
+ (imwheel|MX500 is now imwheel+MX500, imwheel is now
+ imwheel+generic)
+
+2006-09-05 08:17 Pixel <pixel at mandriva.com>
+
+ * rescue/tree/etc/rc.sysinit: /sys is mounted in stage1, umount it
+
+2006-09-05 10:25 nbauer
+
+ * perl-install/share/po/de.po: Update German translation
+ (Sebastian Deutscher)
+
+2006-09-05 10:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/install2.pm: have a valid
+ /etc/sysconfig/mouse when using drakx-in-chroot (useful for
+ mandriva One)
+
+2006-09-05 10:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/draksplash2: do not have both "use
+ common" and "use MDK::Common"
+
+2006-09-05 10:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: ask before bindly using software raid
+
+2006-09-05 09:34 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/standalone/po/nb.po: 50% sanitized
+
+2006-09-05 09:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: nicer logging
+ * perl-install/mouse.pm: - allow automatically using imwheel
+ without evdev
+ - change the format used for imwheel kind of mouse
+ (imwheel|MX500 is now imwheel+MX500, imwheel is now
+ imwheel+generic)
+
+2006-09-05 08:17 Pixel <pixel at mandriva.com>
+
+ * rescue/tree/etc/rc.sysinit: /sys is mounted in stage1, umount it
+
+2006-09-05 08:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/install2.pm: /sys is mounted in stage1,
+ umount it
+
+2006-09-05 07:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: we only need /dev/mouse symlink for X.
+
+ the bug occured when configuring X and /etc/sysconfig/mouse was
+ empty or buggy (#24020)
+
+2006-09-05 07:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: installing on some dmraid need the
+ option --stage2=/boot/grub/stage2.
+ using it in any case (it is what grub-install is doing)
+
+ the part of help on setup command concerning --stage2:
+ If you install GRUB under the grub shell and you cannot
+ unmount
+ the partition where GRUB images reside, specify the option
+ `--stage2' to tell GRUB the file name under your OS.
+
+2006-09-05 07:15 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: add bpalogin (#25136)
+
+2006-09-05 05:00 mmodem
+
+ * perl-install/install/share/po/pt.po: up
+
+2006-09-05 04:56 mmodem
+
+ * perl-install/install/share/po/pt.po: up
+
+2006-09-04 22:27 Arpad Biro <biro_arpad at yahoo.com>
+
+ * perl-install/share/po/hu.po: update
+
+2006-09-04 20:10 nbauer
+
+ * perl-install/standalone/po/de.po: Update German translation
+
+2006-09-04 19:42 nbauer
+
+ * perl-install/share/po/de.po: Update German translation
+
+2006-09-04 19:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.64-1mdv2007.0
+
+2006-09-04 19:13 nbauer
+
+ * perl-install/install/share/po/de.po: Update German translation
+
+2006-09-04 18:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: monitor all wireless
+ interfaces, not only the first one
+
+2006-09-04 18:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/monitor.pm: use signal strength from
+ iwconfig output for current AP (#24498)
+
+2006-09-04 18:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/cpufreq.pm: (probe_powerpc) perl_checko cleanup
+
+2006-09-04 18:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (configure_timezone) help perl_checker
+
+2006-09-04 18:26 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm,
+ perl-install/network/network.pm: guess network hostname
+
+2006-09-04 18:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection.pm: write hostname (#24012)
+
+2006-09-04 18:17 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: introduce write_hostname
+
+2006-09-04 17:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/monitor.pm: use iwlist to scan networks
+ even if no interface is specified
+
+2006-09-04 17:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/de.po: typo fix in german translation
+ (Nicolas Bauer, #24463)
+
+2006-09-04 16:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm: really read/write
+ DNS settings
+
+2006-09-04 15:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: bump require on MDK::Common due to
+ important bugfix
+
+2006-09-04 14:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: display IP address and
+ gateway in tooltip (#23800)
+
+2006-09-04 14:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: show interface type with an
+ icon (#23767)
+
+2006-09-04 14:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection.pm,
+ perl-install/network/connection/cable.pm,
+ perl-install/network/connection/dvb.pm,
+ perl-install/network/connection/ethernet.pm,
+ perl-install/network/connection/pots.pm,
+ perl-install/network/connection/wireless.pm: add handles_ifcfg()
+ method so that find_ifcfg_type() can guess the interface type
+
+2006-09-04 14:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/bluetooth.pm,
+ perl-install/network/connection/cable.pm,
+ perl-install/network/connection/cellular.pm,
+ perl-install/network/connection/dvb.pm,
+ perl-install/network/connection/ethernet.pm,
+ perl-install/network/connection/isdn.pm,
+ perl-install/network/connection/pots.pm,
+ perl-install/network/connection/wireless.pm,
+ perl-install/network/connection/xdsl.pm: use new icons
+
+2006-09-04 13:55 Pablo Saratxaga <pablo at mandriva.com>
+
+ * live/draklive-install/po/sl.po: updated Slovenian file
+
+2006-09-04 13:16 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/install/share/po/sl.po: updated Slovenian file
+
+2006-09-04 12:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/cpufreq.pm: (probe_powerpc) fix bug spotted by
+ diagnostics pragma where perl would
+ split on both spaces and commas...
+
+2006-09-04 12:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: simplify icon path
+
+2006-09-04 12:24 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/standalone/po/zh_TW.po: updated po file
+
+2006-09-04 09:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/themes-galaxy.rc: change background
+ color (as requested by ln)
+
+2006-09-04 08:25 berthy
+
+ * perl-install/share/po/fr.po: Update french translation
+
+2006-09-04 08:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drak3d: HIG
+
+2006-09-04 08:02 Warly <warly at mandriva.com>
+
+ * perl-install/install/pixmaps/logo-mandriva.png: added RC header
+
+2006-09-04 05:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (acceptLicense) really don't display
+ "release notes" button if none availlable (eg: /usr/share/doc
+ being empty) (#23304)
+
+2006-09-04 05:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: install
+ xorg-x11-cyrillic-fonts for "mk" locale
+
+2006-09-04 04:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/steps_interactive.pm: (selectMouse) do not
+ bother ask for which USB driver (#24514)
+
+2006-09-03 23:21 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po: some Dutch strings updated
+
+2006-09-03 22:18 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * live/draklive-install/po/nl.po: Reinout van Schouwen
+ <reinouts@gnome.org>
+
+ - Updated Dutch translation
+
+2006-09-02 19:50 Arpad Biro <biro_arpad at yahoo.com>
+
+ * perl-install/share/po/hu.po: update
+
+2006-09-02 11:28 berthy
+
+ * perl-install/share/po/fr.po: Update french translation
+
+2006-09-02 10:24 berthy
+
+ * live/draklive-install/po/fr.po: Update french translation
+
+2006-09-02 04:28 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/standalone/po/zh_TW.po: updated po file
+
+2006-09-02 01:42 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/install/share/po/bg.po,
+ perl-install/install/share/po/el.po,
+ perl-install/install/share/po/ga.po: small fix for translation
+
+2006-09-02 01:36 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/install/share/po/DrakX.pot,
+ perl-install/install/share/po/af.po,
+ perl-install/install/share/po/am.po,
+ perl-install/install/share/po/ar.po,
+ perl-install/install/share/po/az.po,
+ perl-install/install/share/po/be.po,
+ perl-install/install/share/po/bg.po,
+ perl-install/install/share/po/bn.po,
+ perl-install/install/share/po/br.po,
+ perl-install/install/share/po/bs.po,
+ perl-install/install/share/po/ca.po,
+ perl-install/install/share/po/cs.po,
+ perl-install/install/share/po/cy.po,
+ perl-install/install/share/po/da.po,
+ perl-install/install/share/po/de.po,
+ perl-install/install/share/po/el.po,
+ perl-install/install/share/po/eo.po,
+ perl-install/install/share/po/es.po,
+ perl-install/install/share/po/et.po,
+ perl-install/install/share/po/eu.po,
+ perl-install/install/share/po/fa.po,
+ perl-install/install/share/po/fi.po,
+ perl-install/install/share/po/fr.po,
+ perl-install/install/share/po/fur.po,
+ perl-install/install/share/po/ga.po,
+ perl-install/install/share/po/gl.po,
+ perl-install/install/share/po/he.po,
+ perl-install/install/share/po/hi.po,
+ perl-install/install/share/po/hr.po,
+ perl-install/install/share/po/hu.po,
+ perl-install/install/share/po/id.po,
+ perl-install/install/share/po/is.po,
+ perl-install/install/share/po/it.po,
+ perl-install/install/share/po/ja.po,
+ perl-install/install/share/po/ko.po,
+ perl-install/install/share/po/ky.po,
+ perl-install/install/share/po/lt.po,
+ perl-install/install/share/po/ltg.po,
+ perl-install/install/share/po/lv.po,
+ perl-install/install/share/po/mk.po,
+ perl-install/install/share/po/mn.po,
+ perl-install/install/share/po/ms.po,
+ perl-install/install/share/po/mt.po,
+ perl-install/install/share/po/nb.po,
+ perl-install/install/share/po/nl.po,
+ perl-install/install/share/po/nn.po,
+ perl-install/install/share/po/pa_IN.po,
+ perl-install/install/share/po/pl.po,
+ perl-install/install/share/po/pt.po,
+ perl-install/install/share/po/pt_BR.po,
+ perl-install/install/share/po/ro.po,
+ perl-install/install/share/po/ru.po,
+ perl-install/install/share/po/sc.po,
+ perl-install/install/share/po/sk.po,
+ perl-install/install/share/po/sl.po,
+ perl-install/install/share/po/sq.po,
+ perl-install/install/share/po/sr.po,
+ perl-install/install/share/po/sr@Latn.po,
+ perl-install/install/share/po/sv.po,
+ perl-install/install/share/po/ta.po,
+ perl-install/install/share/po/tg.po,
+ perl-install/install/share/po/th.po,
+ perl-install/install/share/po/tl.po,
+ perl-install/install/share/po/tr.po,
+ perl-install/install/share/po/uk.po,
+ perl-install/install/share/po/uz.po,
+ perl-install/install/share/po/uz@Latn.po,
+ perl-install/install/share/po/vi.po,
+ perl-install/install/share/po/wa.po,
+ perl-install/install/share/po/zh_CN.po,
+ perl-install/install/share/po/zh_TW.po: retreived two missing
+ strings
+
+2006-09-02 00:43 Pablo Saratxaga <pablo at mandriva.com>
+
+ * live/draklive-install/po/mk.po: updated Macedonian file
+
+2006-09-01 19:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: add subversion in
+ development category (#25073)
+
+2006-09-01 19:21 Arpad Biro <biro_arpad at yahoo.com>
+
+ * perl-install/standalone/po/hu.po: update
+
+2006-09-01 17:46 mmodem
+
+ * perl-install/standalone/po/pt.po: up
+
+2006-09-01 17:45 mmodem
+
+ * perl-install/share/po/pt.po: up
+
+2006-09-01 17:43 mmodem
+
+ * perl-install/install/help/po/pt.po: up
+
+2006-09-01 17:43 Pablo Saratxaga <pablo at mandriva.com>
+
+ * live/draklive-install/po/br.po, live/draklive-install/po/cs.po,
+ live/draklive-install/po/es.po, live/draklive-install/po/uz.po,
+ live/draklive-install/po/uz@Latn.po: updated Spanish file
+
+2006-09-01 17:37 Warly <warly at mandriva.com>
+
+ * perl-install/standalone/draksplash2: N is in common now
+
+2006-09-01 17:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: use RADIO & DVB flags
+
+2006-09-01 16:54 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/po/cs.po,
+ perl-install/standalone/po/cy.po,
+ perl-install/standalone/po/da.po,
+ perl-install/standalone/po/el.po,
+ perl-install/standalone/po/es.po,
+ perl-install/standalone/po/eu.po,
+ perl-install/standalone/po/fi.po,
+ perl-install/standalone/po/hu.po,
+ perl-install/standalone/po/is.po,
+ perl-install/standalone/po/nn.po,
+ perl-install/standalone/po/sv.po,
+ perl-install/standalone/po/uz.po,
+ perl-install/standalone/po/uz@Latn.po,
+ perl-install/standalone/po/wa.po,
+ perl-install/standalone/po/zh_TW.po: updated Spanish file,
+ retrieved some common translations
+
+2006-09-01 15:31 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/es.po, perl-install/share/po/wa.po:
+ updated Spanish file
+
+2006-09-01 15:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.63-1mdv2007.0
+
+2006-09-01 15:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/keyboard.pm: fix japanese keyboard configuration
+ (UTUMI Hirosi <utuhiro78@yahoo.co.jp)
+
+2006-09-01 14:59 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/install/share/po/af.po,
+ perl-install/install/share/po/am.po,
+ perl-install/install/share/po/ar.po,
+ perl-install/install/share/po/az.po,
+ perl-install/install/share/po/be.po,
+ perl-install/install/share/po/bg.po,
+ perl-install/install/share/po/bn.po,
+ perl-install/install/share/po/br.po,
+ perl-install/install/share/po/bs.po,
+ perl-install/install/share/po/ca.po,
+ perl-install/install/share/po/da.po,
+ perl-install/install/share/po/de.po,
+ perl-install/install/share/po/el.po,
+ perl-install/install/share/po/eo.po,
+ perl-install/install/share/po/es.po,
+ perl-install/install/share/po/eu.po,
+ perl-install/install/share/po/fa.po,
+ perl-install/install/share/po/fur.po,
+ perl-install/install/share/po/ga.po,
+ perl-install/install/share/po/gl.po,
+ perl-install/install/share/po/he.po,
+ perl-install/install/share/po/hi.po,
+ perl-install/install/share/po/hr.po,
+ perl-install/install/share/po/is.po,
+ perl-install/install/share/po/it.po,
+ perl-install/install/share/po/ko.po,
+ perl-install/install/share/po/ky.po,
+ perl-install/install/share/po/lt.po,
+ perl-install/install/share/po/ltg.po,
+ perl-install/install/share/po/lv.po,
+ perl-install/install/share/po/mk.po,
+ perl-install/install/share/po/mn.po,
+ perl-install/install/share/po/ms.po,
+ perl-install/install/share/po/mt.po,
+ perl-install/install/share/po/nl.po,
+ perl-install/install/share/po/pa_IN.po,
+ perl-install/install/share/po/pl.po,
+ perl-install/install/share/po/ro.po,
+ perl-install/install/share/po/ru.po,
+ perl-install/install/share/po/sc.po,
+ perl-install/install/share/po/sk.po,
+ perl-install/install/share/po/sl.po,
+ perl-install/install/share/po/sq.po,
+ perl-install/install/share/po/sr.po,
+ perl-install/install/share/po/sr@Latn.po,
+ perl-install/install/share/po/ta.po,
+ perl-install/install/share/po/tg.po,
+ perl-install/install/share/po/th.po,
+ perl-install/install/share/po/tl.po,
+ perl-install/install/share/po/tr.po,
+ perl-install/install/share/po/uk.po,
+ perl-install/install/share/po/uz.po,
+ perl-install/install/share/po/uz@Latn.po,
+ perl-install/install/share/po/vi.po,
+ perl-install/install/share/po/wa.po: Updated Spanish translation,
+ retrieved some common translations
+
+2006-09-01 14:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm,
+ perl-install/install/share/rpmsrate, perl-install/mouse.pm: use
+ imwheel to handle thumb buttons (and more) (need imwheel
+ 1.0.0-0.pre12.1mdv2007)
+
+2006-09-01 14:41 Arpad Biro <biro_arpad at yahoo.com>
+
+ * perl-install/install/share/po/hu.po: update
+
+2006-09-01 14:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/format.pm, perl-install/run_program.pm: allow
+ timeout => 'never', and use for formatting (mke2fs can be
+ sloooow)
+
+2006-09-01 14:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: install soundwrapper for
+ OSS cards too
+
+2006-09-01 13:24 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: add 915resolution
+
+2006-09-01 13:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: use defaultPref() instead of
+ pref() in mozilla-firefox config file so that it can be
+ overridden by user config
+
+2006-09-01 13:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: perl_checker compliance
+
+2006-09-01 12:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: use info from usbtable to know wether to
+ use evdev
+ (for example, evdev is useful for MX700, which do not have a
+ HWHEEL, and we
+ can't use KEY to know wether it has many buttons since receivers
+ report things
+ like KEY=ffff0000)
+
+2006-09-01 12:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: allow using information from
+ usbtable
+
+2006-09-01 12:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: we always use HWheelXAxisMapping for
+ evdev, it tells mice with no horizontal wheel to skip those
+ buttons
+ that way we ensure 6 & 7 is always horizontal wheel
+ (cf patch skip-HWheelRelativeAxisButtons-even-if-unused in
+ x11-driver-input-evdev)
+
+2006-09-01 12:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/connection/providers/xdsl.pm,
+ perl-install/standalone/drakfont,
+ perl-install/standalone/draksambashare,
+ perl-install/standalone/harddrake2,
+ perl-install/standalone/printerdrake: help emacs with encoding
+
+2006-09-01 12:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ifw.pm, perl-install/standalone/drakids,
+ perl-install/standalone/net_applet: more ifw2 GUI
+
+2006-09-01 07:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: - simplify the dialog when the chosen
+ country is not in the "best" list
+ - set $ext_country to $country by default, this is needed
+ because $ext_country
+ will be set to a valid entry by interactive, and so "undef" is
+ modified
+ (bugzilla #24635)
+
+2006-09-01 07:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: fix typo in explanation
+
+2006-08-31 22:42 mmodem
+
+ * perl-install/share/po/pt.po: up
+
+2006-08-31 21:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.62-1mdv2007.0
+
+2006-08-31 21:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/timezone.pm: configure three
+ {0,1,2}.foo.pool.ntp.org NTP server addresses when a NTP pool is
+ used (#10659)
+
+2006-08-31 21:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakclock: strip digits from NTP pool
+ addresses when matching servers list
+
+2006-08-31 20:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakclock, perl-install/timezone.pm:
+ move ntp server writing in timezone::set_ntp_server
+
+2006-08-31 20:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakclock: initialize ntp server
+ combobox according to configured server
+
+2006-08-31 20:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakclock: don't bitwise-or ntp server
+ strings...
+
+2006-08-31 20:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakclock: warn if no NTP server is
+ entered
+
+2006-08-31 20:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakclock: handle user edited ntp server
+ address
+
+2006-08-31 19:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakclock: use Retry/Quit buttons for
+ the ntp sync error window (#17037)
+
+2006-08-31 18:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakclock: warn if ntp package
+ installation fails (#12147)
+
+2006-08-31 17:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.61-1mdv2007.0
+
+2006-08-31 17:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/finish-install: read timezone settings
+ in case the country step isn't called
+
+2006-08-31 17:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/any.pm: improve UTC/local time selection (#23275)
+
+2006-08-31 16:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: fix titi adding tibetan
+
+2006-08-31 15:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: fix using the proprietary driver
+ by default in automatic mode
+
+2006-08-31 15:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: (choose_Driver2_or_not) fix not
+ using the proprietary driver in harddrake service
+
+2006-08-31 15:33 ybando
+
+ * perl-install/standalone/po/ja.po: update Japanese translation
+
+2006-08-31 14:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: make sure soundwrapper is
+ installed, at least when there's an ALSA
+ driven sound card (#24371)
+
+2006-08-31 13:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: revert r58969 and fix
+ package name so that it doesn't happen anymore
+ (thx for spotting it pixel :-))
+
+2006-08-31 11:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: don't have a "can not stat file
+ /sys/bus/scsi/devices" when using command "bug"
+
+2006-08-31 11:30 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: add lvm2 (#24658) and mdadm
+ (#24942) on live media
+
+2006-08-31 11:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: fix useless line (same as
+ above, only more restricted)
+
+2006-08-31 11:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/any.pm: simplify (thanks Pixel)
+
+2006-08-31 11:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: remove spaces in no_proxy list
+ (#24651)
+
+2006-08-31 11:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: use ask_for_X_restart to kill X
+ after logout (or fglrx will hang at next login in Xgl)
+
+2006-08-31 11:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/any.pm, perl-install/standalone/XFdrake: move
+ ask_for_X_restart in any
+
+2006-08-31 10:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/various.pm: better description for
+ BIOSHotkeys thanks to cooker-i18n and Thomas Backlund
+
+2006-08-31 09:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: remove useless option
+
+2006-08-31 09:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/run_program.pm: simplify
+
+2006-08-31 09:01 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po: Updated Estonian translation.
+
+2006-08-31 08:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/run_program.pm: fix gdk-pixbuf-query-loaders
+ clobbering stdout file
+
+2006-08-31 08:24 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/af.po, perl-install/share/po/am.po,
+ perl-install/share/po/ar.po, perl-install/share/po/az.po,
+ perl-install/share/po/be.po, perl-install/share/po/bg.po,
+ perl-install/share/po/bn.po, perl-install/share/po/bs.po,
+ perl-install/share/po/ca.po, perl-install/share/po/cs.po,
+ perl-install/share/po/da.po, perl-install/share/po/el.po,
+ perl-install/share/po/eo.po, perl-install/share/po/es.po,
+ perl-install/share/po/et.po, perl-install/share/po/eu.po,
+ perl-install/share/po/fa.po, perl-install/share/po/fur.po,
+ perl-install/share/po/gl.po, perl-install/share/po/he.po,
+ perl-install/share/po/hi.po, perl-install/share/po/hr.po,
+ perl-install/share/po/hu.po, perl-install/share/po/is.po,
+ perl-install/share/po/it.po, perl-install/share/po/ko.po,
+ perl-install/share/po/ky.po, perl-install/share/po/lt.po,
+ perl-install/share/po/lv.po, perl-install/share/po/mk.po,
+ perl-install/share/po/mn.po, perl-install/share/po/ms.po,
+ perl-install/share/po/mt.po, perl-install/share/po/nb.po,
+ perl-install/share/po/nl.po, perl-install/share/po/pa_IN.po,
+ perl-install/share/po/pl.po, perl-install/share/po/pt.po,
+ perl-install/share/po/pt_BR.po, perl-install/share/po/ro.po,
+ perl-install/share/po/ru.po, perl-install/share/po/sc.po,
+ perl-install/share/po/sk.po, perl-install/share/po/sl.po,
+ perl-install/share/po/sq.po, perl-install/share/po/sr.po,
+ perl-install/share/po/sr@Latn.po, perl-install/share/po/sv.po,
+ perl-install/share/po/ta.po, perl-install/share/po/tg.po,
+ perl-install/share/po/tl.po, perl-install/share/po/tr.po,
+ perl-install/share/po/uk.po, perl-install/share/po/uz.po,
+ perl-install/share/po/uz@Latn.po, perl-install/share/po/vi.po,
+ perl-install/share/po/wa.po, perl-install/share/po/zh_TW.po:
+ updated Galician file; retrieved some common translations
+
+2006-08-31 08:13 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/po/gl.po: updated Galician file
+
+2006-08-31 08:11 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/install/help/po/gl.po: updated Galician file
+
+2006-08-31 07:13 Karl Ove Hufthammer <karl at huftis.org>
+
+ * perl-install/install/share/po/nn.po: Updated Norwegian Nynorsk
+ translation.
+
+2006-08-31 04:05 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/po/is.po,
+ perl-install/standalone/po/it.po,
+ perl-install/standalone/po/ta.po,
+ perl-install/standalone/po/tg.po,
+ perl-install/standalone/po/th.po,
+ perl-install/standalone/po/tl.po,
+ perl-install/standalone/po/tr.po,
+ perl-install/standalone/po/uk.po,
+ perl-install/standalone/po/uz.po,
+ perl-install/standalone/po/uz@Latn.po,
+ perl-install/standalone/po/vi.po,
+ perl-install/standalone/po/wa.po,
+ perl-install/standalone/po/zh_CN.po,
+ perl-install/standalone/po/zh_TW.po: retrieved common
+ translations
+
+2006-08-31 01:17 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/po/he.po,
+ perl-install/standalone/po/hi.po,
+ perl-install/standalone/po/hr.po,
+ perl-install/standalone/po/hu.po,
+ perl-install/standalone/po/ja.po,
+ perl-install/standalone/po/ko.po,
+ perl-install/standalone/po/ky.po,
+ perl-install/standalone/po/lt.po,
+ perl-install/standalone/po/ltg.po,
+ perl-install/standalone/po/lv.po,
+ perl-install/standalone/po/mk.po,
+ perl-install/standalone/po/mn.po,
+ perl-install/standalone/po/ms.po,
+ perl-install/standalone/po/mt.po,
+ perl-install/standalone/po/nb.po,
+ perl-install/standalone/po/nl.po,
+ perl-install/standalone/po/nn.po,
+ perl-install/standalone/po/pa_IN.po,
+ perl-install/standalone/po/pl.po,
+ perl-install/standalone/po/pt.po,
+ perl-install/standalone/po/pt_BR.po,
+ perl-install/standalone/po/ro.po,
+ perl-install/standalone/po/ru.po,
+ perl-install/standalone/po/sc.po,
+ perl-install/standalone/po/sk.po,
+ perl-install/standalone/po/sl.po,
+ perl-install/standalone/po/sq.po,
+ perl-install/standalone/po/sr.po,
+ perl-install/standalone/po/sr@Latn.po,
+ perl-install/standalone/po/sv.po: retrieved common translations
+
+2006-08-30 23:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: list b2c2-flexcop-pci & radio-maestro
+
+2006-08-30 23:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add mptspi (#22738)
+
+2006-08-30 23:46 mmodem
+
+ * perl-install/share/po/pt.po: up
+
+2006-08-30 23:45 mmodem
+
+ * perl-install/share/po/pt.po: up
+
+2006-08-30 23:42 mmodem
+
+ * perl-install/share/po/pt.po: up
+
+2006-08-30 23:13 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/po/af.po,
+ perl-install/standalone/po/am.po,
+ perl-install/standalone/po/ar.po,
+ perl-install/standalone/po/az.po,
+ perl-install/standalone/po/be.po,
+ perl-install/standalone/po/bg.po,
+ perl-install/standalone/po/bn.po,
+ perl-install/standalone/po/br.po,
+ perl-install/standalone/po/bs.po,
+ perl-install/standalone/po/ca.po,
+ perl-install/standalone/po/cs.po,
+ perl-install/standalone/po/cy.po,
+ perl-install/standalone/po/da.po,
+ perl-install/standalone/po/de.po,
+ perl-install/standalone/po/el.po,
+ perl-install/standalone/po/eo.po,
+ perl-install/standalone/po/es.po,
+ perl-install/standalone/po/et.po,
+ perl-install/standalone/po/eu.po,
+ perl-install/standalone/po/fa.po,
+ perl-install/standalone/po/fi.po,
+ perl-install/standalone/po/fur.po,
+ perl-install/standalone/po/ga.po,
+ perl-install/standalone/po/gl.po: retrieved some common
+ translations
+
+2006-08-30 22:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm: allow to disable 3D desktop even in
+ not supported (in interactive gtk/console mode)
+
+2006-08-30 22:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: don't preselect compiz when not
+ supported and current 3D method is undefined
+
+2006-08-30 22:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: allow to run in console mode
+
+2006-08-30 20:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: install packages for tibetan
+
+2006-08-30 19:51 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/install/pixmaps/langs/lang-bo.png,
+ perl-install/lang.pm: Added choice for tibetan language (using
+ dz_BT locale for now)
+
+2006-08-30 18:57 mmodem
+
+ * perl-install/share/po/pt.po: update
+
+2006-08-30 18:47 mmodem
+
+ * perl-install/share/po/pt.po: update
+
+2006-08-30 14:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: when retrying a pkg, use
+ --noscripts
+
+2006-08-30 13:49 felipe
+
+ * perl-install/standalone/po/pt_BR.po: translating to pt_BR
+
+2006-08-30 12:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (setupBootloader__mbr_or_not) use a
+ specialized banner icon
+ (backported from mlcs4 branch
+
+2006-08-30 12:19 berthy
+
+ * perl-install/standalone/po/fr.po: Update french translation
+
+2006-08-30 11:41 Marek Laane <bald at starman.ee>
+
+ * perl-install/standalone/po/et.po: Updated Estonian translation.
+
+2006-08-30 09:40 Warly <warly at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: install openoffice.org
+ theme according to the desktop
+
+2006-08-30 09:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: add bcm43xx-fwcutter on
+ media
+
+2006-08-30 09:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakids: add some IFW2 interface bits
+
+2006-08-30 08:46 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po file
+
+2006-08-30 08:21 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/install/share/po/zh_TW.po: updated po file
+
+2006-08-30 06:39 Warly <warly at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: gimp-help-2 is help
+ (CAT_DOCS)
+
+2006-08-30 00:04 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/standalone/po/id.po: Updated
+
+2006-08-29 22:41 mmodem
+
+ * perl-install/share/po/pt.po: update
+
+2006-08-29 22:34 mmodem
+
+ * perl-install/share/po/pt.po: update
+
+2006-08-29 22:32 mmodem
+
+ * perl-install/install/share/po/pt.po: update
+
+2006-08-29 22:19 mmodem
+
+ * perl-install/standalone/po/pt.po: update
+
+2006-08-29 21:36 mmodem
+
+ * perl-install/share/po/pt.po: update
+
+2006-08-29 21:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: install scim-bridge when
+ installing commercial apps with a locale
+ that is using scim (it still needs to be manually set up though)
+
+2006-08-29 21:22 Warly <warly at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: openoffice.org is with a
+ small 'o'
+
+2006-08-29 20:34 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/standalone/po/nb.po: translate new strings
+
+2006-08-29 20:25 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: translate new strings
+
+2006-08-29 20:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/po/af.po,
+ perl-install/standalone/po/am.po,
+ perl-install/standalone/po/ar.po,
+ perl-install/standalone/po/az.po,
+ perl-install/standalone/po/be.po,
+ perl-install/standalone/po/bg.po,
+ perl-install/standalone/po/bn.po,
+ perl-install/standalone/po/br.po,
+ perl-install/standalone/po/bs.po,
+ perl-install/standalone/po/ca.po,
+ perl-install/standalone/po/cs.po,
+ perl-install/standalone/po/cy.po,
+ perl-install/standalone/po/da.po,
+ perl-install/standalone/po/de.po,
+ perl-install/standalone/po/el.po,
+ perl-install/standalone/po/eo.po,
+ perl-install/standalone/po/es.po,
+ perl-install/standalone/po/et.po,
+ perl-install/standalone/po/eu.po,
+ perl-install/standalone/po/fa.po,
+ perl-install/standalone/po/fi.po,
+ perl-install/standalone/po/fr.po,
+ perl-install/standalone/po/fur.po,
+ perl-install/standalone/po/ga.po,
+ perl-install/standalone/po/gl.po,
+ perl-install/standalone/po/he.po,
+ perl-install/standalone/po/hi.po,
+ perl-install/standalone/po/hr.po,
+ perl-install/standalone/po/hu.po,
+ perl-install/standalone/po/id.po,
+ perl-install/standalone/po/is.po,
+ perl-install/standalone/po/it.po,
+ perl-install/standalone/po/ja.po,
+ perl-install/standalone/po/ko.po,
+ perl-install/standalone/po/ky.po,
+ perl-install/standalone/po/libDrakX-standalone.pot,
+ perl-install/standalone/po/lt.po,
+ perl-install/standalone/po/ltg.po,
+ perl-install/standalone/po/lv.po,
+ perl-install/standalone/po/mk.po,
+ perl-install/standalone/po/mn.po,
+ perl-install/standalone/po/ms.po,
+ perl-install/standalone/po/mt.po,
+ perl-install/standalone/po/nb.po,
+ perl-install/standalone/po/nl.po,
+ perl-install/standalone/po/nn.po,
+ perl-install/standalone/po/pa_IN.po,
+ perl-install/standalone/po/pl.po,
+ perl-install/standalone/po/pt.po,
+ perl-install/standalone/po/pt_BR.po,
+ perl-install/standalone/po/ro.po,
+ perl-install/standalone/po/ru.po,
+ perl-install/standalone/po/sc.po,
+ perl-install/standalone/po/sk.po,
+ perl-install/standalone/po/sl.po,
+ perl-install/standalone/po/sq.po,
+ perl-install/standalone/po/sr.po,
+ perl-install/standalone/po/sr@Latn.po,
+ perl-install/standalone/po/sv.po,
+ perl-install/standalone/po/ta.po,
+ perl-install/standalone/po/tg.po,
+ perl-install/standalone/po/th.po,
+ perl-install/standalone/po/tl.po,
+ perl-install/standalone/po/tr.po,
+ perl-install/standalone/po/uk.po,
+ perl-install/standalone/po/uz.po,
+ perl-install/standalone/po/uz@Latn.po,
+ perl-install/standalone/po/vi.po,
+ perl-install/standalone/po/wa.po,
+ perl-install/standalone/po/zh_CN.po,
+ perl-install/standalone/po/zh_TW.po: sync with code
+
+2006-08-29 19:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakids: more IFW2 strings
+
+2006-08-29 19:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakids: add some IFW2 strings
+
+2006-08-29 18:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: no_proxy support for
+ mozilla-firefox and gconf
+
+2006-08-29 18:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: no_proxy support for shell and
+ KDE (Emmanuel Blindauer and Vincent Panel)
+
+2006-08-29 18:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: gcom is required for 3G
+ connections
+
+2006-08-29 18:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: handle string list arguments to
+ gcontool
+ * perl-install/network/network.pm: delete mozilla-firefox proxy
+ settings when appropriate
+
+2006-08-29 15:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: use proxy ports defaults
+ according to the URL protocol
+
+2006-08-29 15:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: fix old typo
+
+2006-08-29 15:17 Warly <warly at mandriva.com>
+
+ * perl-install/install/share/compssUsers.pl,
+ perl-install/install/share/rpmsrate: add a CDCOM category to be
+ able not to install these packages on the one
+
+2006-08-29 15:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: do not allow copy_rpms_on_disk
+ for http/ftp installs (since we currently do a cp -r)
+
+2006-08-29 15:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: allow copy_rpms_on_disk in
+ auto_installs
+
+2006-08-29 14:57 Marek Laane <bald at starman.ee>
+
+ * perl-install/standalone/po/et.po: Updated Estonian translation.
+
+2006-08-29 14:39 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po: Updated Estonian translation.
+
+2006-08-29 14:24 Marek Laane <bald at starman.ee>
+
+ * perl-install/install/share/po/et.po: Updated Estonian
+ translation.
+
+2006-08-29 14:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.60-1mdv2007.0
+
+2006-08-29 13:38 felipe
+
+ * perl-install/share/po/pt_BR.po: fixing fuzzy entries
+
+2006-08-29 12:09 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg: don't start cpufreqd service
+
+2006-08-29 12:07 Warly <warly at mandriva.com>
+
+ * live/One/config/rpmsrate: add a flag for commercial apps which
+ should not be installed; add ia_ora theme
+
+2006-08-29 12:03 ybando
+
+ * perl-install/share/po/ja.po: update Japanese translation
+
+2006-08-29 10:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: configure mozilla-firefox proxy
+ settings (#10875)
+
+2006-08-29 10:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: split proxy regexps and default
+ ports
+
+2006-08-29 10:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: plug doesn't handle {no_Window_Manager}
+ (#24876)
+
+2006-08-29 09:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: split proxy configuration
+ functions
+
+2006-08-29 09:13 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/standalone/po/nb.po: fix typos
+
+2006-08-29 09:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: have a coherent variable name
+
+2006-08-29 01:13 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2006-08-28 23:23 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/standalone/po/ru.po: updated translation
+
+2006-08-28 22:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.59-1mdv2007.0
+
+2006-08-28 22:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm: improve glx detection by using
+ glxinfo output with and without Mesa libraries
+
+2006-08-28 22:16 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/share/po/ru.po: updated translation
+
+2006-08-28 22:11 Michal Bukovjan <bukovjan at mbox.dkm.cz>
+
+ * perl-install/share/po/cs.po: Update Czech translation
+
+2006-08-28 20:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/cy.po: update
+
+2006-08-28 19:38 Michal Bukovjan <bukovjan at mbox.dkm.cz>
+
+ * perl-install/install/share/po/cs.po: Update Czech translation
+
+2006-08-28 19:36 thomas
+
+ * perl-install/standalone/po/sv.po: updated translations
+
+2006-08-28 19:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po, perl-install/share/po/fr.po: update
+
+2006-08-28 19:34 thomas
+
+ * live/draklive-install/po/fi.po, live/draklive-install/po/sv.po:
+ updated translations
+
+2006-08-28 19:32 thomas
+
+ * perl-install/install/share/po/fi.po,
+ perl-install/install/share/po/sv.po: updated translations
+
+2006-08-28 19:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/af.po, perl-install/share/po/am.po,
+ perl-install/share/po/ar.po, perl-install/share/po/az.po,
+ perl-install/share/po/be.po, perl-install/share/po/bg.po,
+ perl-install/share/po/bn.po, perl-install/share/po/br.po,
+ perl-install/share/po/bs.po, perl-install/share/po/ca.po,
+ perl-install/share/po/cs.po, perl-install/share/po/cy.po,
+ perl-install/share/po/da.po, perl-install/share/po/de.po,
+ perl-install/share/po/el.po, perl-install/share/po/eo.po,
+ perl-install/share/po/es.po, perl-install/share/po/et.po,
+ perl-install/share/po/eu.po, perl-install/share/po/fa.po,
+ perl-install/share/po/fi.po, perl-install/share/po/fr.po,
+ perl-install/share/po/fur.po, perl-install/share/po/ga.po,
+ perl-install/share/po/gl.po, perl-install/share/po/he.po,
+ perl-install/share/po/hi.po, perl-install/share/po/hr.po,
+ perl-install/share/po/hu.po, perl-install/share/po/id.po,
+ perl-install/share/po/is.po, perl-install/share/po/it.po,
+ perl-install/share/po/ja.po, perl-install/share/po/ko.po,
+ perl-install/share/po/ky.po, perl-install/share/po/libDrakX.pot,
+ perl-install/share/po/lt.po, perl-install/share/po/ltg.po,
+ perl-install/share/po/lv.po, perl-install/share/po/mk.po,
+ perl-install/share/po/mn.po, perl-install/share/po/ms.po,
+ perl-install/share/po/mt.po, perl-install/share/po/nb.po,
+ perl-install/share/po/nl.po, perl-install/share/po/nn.po,
+ perl-install/share/po/pa_IN.po, perl-install/share/po/pl.po,
+ perl-install/share/po/pt.po, perl-install/share/po/pt_BR.po,
+ perl-install/share/po/ro.po, perl-install/share/po/ru.po,
+ perl-install/share/po/sc.po, perl-install/share/po/sk.po,
+ perl-install/share/po/sl.po, perl-install/share/po/sq.po,
+ perl-install/share/po/sr.po, perl-install/share/po/sr@Latn.po,
+ perl-install/share/po/sv.po, perl-install/share/po/ta.po,
+ perl-install/share/po/tg.po, perl-install/share/po/th.po,
+ perl-install/share/po/tl.po, perl-install/share/po/tr.po,
+ perl-install/share/po/uk.po, perl-install/share/po/uz.po,
+ perl-install/share/po/uz@Latn.po, perl-install/share/po/vi.po,
+ perl-install/share/po/wa.po, perl-install/share/po/zh_CN.po,
+ perl-install/share/po/zh_TW.po: sync after rephrasing ACPI/APIC
+ strings with positive verbs (#24355)
+
+2006-08-28 19:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (setupBootloader__general) having a
+ insensitive checkbox is more
+ consistent that one that appear/disappear according to another
+ between
+ each run
+
+ what's more, it's now possitble to switch from nolapic into apic
+ in
+ one pass instead of two
+
+2006-08-28 19:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (setupBootloader__general) rephrasing
+ ACPI/APIC strings by using positive verbs (#24355)
+
+2006-08-28 18:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm: return full glx info
+
+2006-08-28 18:13 felipe
+
+ * perl-install/standalone/po/pt_BR.po: translating to pt_BR
+
+2006-08-28 17:43 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-08-28 17:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm: update udev
+ net-config rules during install (using udev scripts) so that
+ configuration is consistent at first boot
+
+2006-08-28 17:33 Pixel <pixel at mandriva.com>
+
+ * rescue/guessmounts: fix typo
+
+2006-08-28 17:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/dmraid.pm: more fuzzy match to handle
+ nvidia_with_subsets
+
+2006-08-28 17:11 Pixel <pixel at mandriva.com>
+
+ * rescue/guessmounts, rescue/list.xml: support for linux raid
+ (md0) in guessmounts
+ * perl-install/mygtk2.pm, perl-install/standalone/drak3d,
+ perl-install/ugtk2.pm: allow specifying no_Window_Manager or not
+ without "local"izing $::isStandalone
+
+2006-08-28 16:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: fix default compiz selection
+ when Xgl is used
+
+2006-08-28 16:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table/raw.pm: i suspect HDIO_GETGEO to
+ return rubbish values on dmraid devices, log the returned values
+ to have some proofs
+
+2006-08-28 17:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm: update udev
+ net-config rules during install (using udev scripts) so that
+ configuration is consistent at first boot
+
+2006-08-28 17:33 Pixel <pixel at mandriva.com>
+
+ * rescue/guessmounts: fix typo
+
+2006-08-28 17:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/dmraid.pm: more fuzzy match to handle
+ nvidia_with_subsets
+
+2006-08-28 17:11 Pixel <pixel at mandriva.com>
+
+ * rescue/guessmounts, rescue/list.xml: support for linux raid
+ (md0) in guessmounts
+ * perl-install/mygtk2.pm, perl-install/standalone/drak3d,
+ perl-install/ugtk2.pm: allow specifying no_Window_Manager or not
+ without "local"izing $::isStandalone
+
+2006-08-28 16:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: fix default compiz selection
+ when Xgl is used
+
+2006-08-28 16:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table/raw.pm: i suspect HDIO_GETGEO to
+ return rubbish values on dmraid devices, log the returned values
+ to have some proofs
+
+2006-08-28 14:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.58-1mdv2007.0
+
+2006-08-28 14:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/br.po: update
+
+2006-08-28 14:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: use XaaNoOffscreenPixmaps for i810
+ and ati (#24628)
+
+2006-08-28 13:46 felipe
+
+ * perl-install/share/po/pt_BR.po: translating to pt_BR
+
+2006-08-28 13:30 felipe
+
+ * perl-install/install/share/po/pt_BR.po: translating to pt_BR
+
+2006-08-28 12:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/various.pm: re-enable RenderAccel by
+ default on nvidia proprietary driver (pb fixed with version 8774)
+
+2006-08-28 11:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drak3d: fix layout when embedded
+
+2006-08-28 07:34 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/cy.po: updated Welsh file
+
+2006-08-28 07:31 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/install/share/po/cy.po: updated Welsh file
+
+2006-08-27 14:37 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/install/share/po/nb.po: finish new strings
+
+2006-08-27 14:36 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/standalone/po/nb.po: finish new strings
+
+2006-08-27 14:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/invictus.pm: don't write world-readable
+ ucarp.d files, they contain passwords
+
+2006-08-27 14:26 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: finish new strings
+
+2006-08-27 14:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm,
+ perl-install/network/network.pm: write GATEWAY settings (#20169)
+
+2006-08-27 11:04 ybando
+
+ * perl-install/standalone/po/ja.po: update translation for
+ Japanese (thanks to UTUMI Hirosi)
+
+2006-08-27 11:02 ybando
+
+ * perl-install/share/po/ja.po: update translation for Japanese
+ (thanks to UTUMI Hirosi)
+
+2006-08-27 10:09 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/install/share/po/id.po,
+ perl-install/share/po/id.po, perl-install/standalone/po/id.po:
+ Updated
+
+2006-08-27 08:17 Warly <warly at mandriva.com>
+
+ * live/draklive/draklive: do not fail while umounting
+
+2006-08-27 08:10 Warly <warly at mandriva.com>
+
+ * live/draklive/draklive: umount filesystem which could stay
+ mounted in the chroot before cleaning
+
+2006-08-26 14:16 berthy
+
+ * perl-install/standalone/po/fr.po: Update french translation
+
+2006-08-26 13:38 berthy
+
+ * perl-install/install/share/po/fr.po: Update french translation
+
+2006-08-26 13:27 berthy
+
+ * perl-install/standalone/po/fr.po: Update french translation
+
+2006-08-26 12:41 berthy
+
+ * perl-install/share/po/fr.po: Update french translation
+
+2006-08-26 12:12 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.57-1mdv2007.0
+
+2006-08-26 11:35 ybando
+
+ * perl-install/standalone/po/ja.po: update translation for Japanese
+
+2006-08-26 11:34 ybando
+
+ * perl-install/share/po/ja.po: update translation for Japanese
+
+2006-08-26 05:15 ybando
+
+ * perl-install/install/share/po/ja.po: update translation for
+ Japanese
+
+2006-08-25 14:26 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakids: perl_checker
+
+2006-08-25 14:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/dbus_object.pm: make gtk2 watch method work again
+ (#24589)
+
+2006-08-25 14:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakids: display an error message when
+ the daemon isn't started at all (instead of dying silently)
+
+2006-08-25 11:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm: really ensure that task-3ddesktop
+ is installed
+
+2006-08-25 11:28 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/install/share/po/DrakX.pot,
+ perl-install/install/share/po/af.po,
+ perl-install/install/share/po/am.po,
+ perl-install/install/share/po/ar.po,
+ perl-install/install/share/po/az.po,
+ perl-install/install/share/po/be.po,
+ perl-install/install/share/po/bg.po,
+ perl-install/install/share/po/bn.po,
+ perl-install/install/share/po/br.po,
+ perl-install/install/share/po/bs.po,
+ perl-install/install/share/po/ca.po,
+ perl-install/install/share/po/cs.po,
+ perl-install/install/share/po/cy.po,
+ perl-install/install/share/po/da.po,
+ perl-install/install/share/po/de.po,
+ perl-install/install/share/po/el.po,
+ perl-install/install/share/po/eo.po,
+ perl-install/install/share/po/es.po,
+ perl-install/install/share/po/et.po,
+ perl-install/install/share/po/eu.po,
+ perl-install/install/share/po/fa.po,
+ perl-install/install/share/po/fi.po,
+ perl-install/install/share/po/fr.po,
+ perl-install/install/share/po/fur.po,
+ perl-install/install/share/po/ga.po,
+ perl-install/install/share/po/gl.po,
+ perl-install/install/share/po/he.po,
+ perl-install/install/share/po/hi.po,
+ perl-install/install/share/po/hr.po,
+ perl-install/install/share/po/hu.po,
+ perl-install/install/share/po/id.po,
+ perl-install/install/share/po/is.po,
+ perl-install/install/share/po/it.po,
+ perl-install/install/share/po/ja.po,
+ perl-install/install/share/po/ko.po,
+ perl-install/install/share/po/ky.po,
+ perl-install/install/share/po/lt.po,
+ perl-install/install/share/po/ltg.po,
+ perl-install/install/share/po/lv.po,
+ perl-install/install/share/po/mk.po,
+ perl-install/install/share/po/mn.po,
+ perl-install/install/share/po/ms.po,
+ perl-install/install/share/po/mt.po,
+ perl-install/install/share/po/nb.po,
+ perl-install/install/share/po/nl.po,
+ perl-install/install/share/po/nn.po,
+ perl-install/install/share/po/pa_IN.po,
+ perl-install/install/share/po/pl.po,
+ perl-install/install/share/po/pt.po,
+ perl-install/install/share/po/pt_BR.po,
+ perl-install/install/share/po/ro.po,
+ perl-install/install/share/po/ru.po,
+ perl-install/install/share/po/sc.po,
+ perl-install/install/share/po/sk.po,
+ perl-install/install/share/po/sl.po,
+ perl-install/install/share/po/sq.po,
+ perl-install/install/share/po/sr.po,
+ perl-install/install/share/po/sr@Latn.po,
+ perl-install/install/share/po/sv.po,
+ perl-install/install/share/po/ta.po,
+ perl-install/install/share/po/tg.po,
+ perl-install/install/share/po/th.po,
+ perl-install/install/share/po/tl.po,
+ perl-install/install/share/po/tr.po,
+ perl-install/install/share/po/uk.po,
+ perl-install/install/share/po/uz.po,
+ perl-install/install/share/po/uz@Latn.po,
+ perl-install/install/share/po/vi.po,
+ perl-install/install/share/po/wa.po,
+ perl-install/install/share/po/zh_CN.po,
+ perl-install/install/share/po/zh_TW.po,
+ perl-install/share/po/af.po, perl-install/share/po/am.po,
+ perl-install/share/po/ar.po, perl-install/share/po/az.po,
+ perl-install/share/po/be.po, perl-install/share/po/bg.po,
+ perl-install/share/po/bn.po, perl-install/share/po/br.po,
+ perl-install/share/po/bs.po, perl-install/share/po/ca.po,
+ perl-install/share/po/cs.po, perl-install/share/po/cy.po,
+ perl-install/share/po/da.po, perl-install/share/po/de.po,
+ perl-install/share/po/el.po, perl-install/share/po/eo.po,
+ perl-install/share/po/es.po, perl-install/share/po/et.po,
+ perl-install/share/po/eu.po, perl-install/share/po/fa.po,
+ perl-install/share/po/fi.po, perl-install/share/po/fr.po,
+ perl-install/share/po/fur.po, perl-install/share/po/ga.po,
+ perl-install/share/po/gl.po, perl-install/share/po/he.po,
+ perl-install/share/po/hi.po, perl-install/share/po/hr.po,
+ perl-install/share/po/hu.po, perl-install/share/po/id.po,
+ perl-install/share/po/is.po, perl-install/share/po/it.po,
+ perl-install/share/po/ja.po, perl-install/share/po/ko.po,
+ perl-install/share/po/ky.po, perl-install/share/po/libDrakX.pot,
+ perl-install/share/po/lt.po, perl-install/share/po/ltg.po,
+ perl-install/share/po/lv.po, perl-install/share/po/mk.po,
+ perl-install/share/po/mn.po, perl-install/share/po/ms.po,
+ perl-install/share/po/mt.po, perl-install/share/po/nb.po,
+ perl-install/share/po/nl.po, perl-install/share/po/nn.po,
+ perl-install/share/po/pa_IN.po, perl-install/share/po/pl.po,
+ perl-install/share/po/pt.po, perl-install/share/po/pt_BR.po,
+ perl-install/share/po/ro.po, perl-install/share/po/ru.po,
+ perl-install/share/po/sc.po, perl-install/share/po/sk.po,
+ perl-install/share/po/sl.po, perl-install/share/po/sq.po,
+ perl-install/share/po/sr.po, perl-install/share/po/sr@Latn.po,
+ perl-install/share/po/sv.po, perl-install/share/po/ta.po,
+ perl-install/share/po/tg.po, perl-install/share/po/th.po,
+ perl-install/share/po/tl.po, perl-install/share/po/tr.po,
+ perl-install/share/po/uk.po, perl-install/share/po/uz.po,
+ perl-install/share/po/uz@Latn.po, perl-install/share/po/vi.po,
+ perl-install/share/po/wa.po, perl-install/share/po/zh_CN.po,
+ perl-install/share/po/zh_TW.po,
+ perl-install/standalone/po/af.po,
+ perl-install/standalone/po/am.po,
+ perl-install/standalone/po/ar.po,
+ perl-install/standalone/po/az.po,
+ perl-install/standalone/po/be.po,
+ perl-install/standalone/po/bg.po,
+ perl-install/standalone/po/bn.po,
+ perl-install/standalone/po/br.po,
+ perl-install/standalone/po/bs.po,
+ perl-install/standalone/po/ca.po,
+ perl-install/standalone/po/cs.po,
+ perl-install/standalone/po/cy.po,
+ perl-install/standalone/po/da.po,
+ perl-install/standalone/po/de.po,
+ perl-install/standalone/po/el.po,
+ perl-install/standalone/po/eo.po,
+ perl-install/standalone/po/es.po,
+ perl-install/standalone/po/et.po,
+ perl-install/standalone/po/eu.po,
+ perl-install/standalone/po/fa.po,
+ perl-install/standalone/po/fi.po,
+ perl-install/standalone/po/fr.po,
+ perl-install/standalone/po/fur.po,
+ perl-install/standalone/po/ga.po,
+ perl-install/standalone/po/gl.po,
+ perl-install/standalone/po/he.po,
+ perl-install/standalone/po/hi.po,
+ perl-install/standalone/po/hr.po,
+ perl-install/standalone/po/hu.po,
+ perl-install/standalone/po/id.po,
+ perl-install/standalone/po/is.po,
+ perl-install/standalone/po/it.po,
+ perl-install/standalone/po/ja.po,
+ perl-install/standalone/po/ko.po,
+ perl-install/standalone/po/ky.po,
+ perl-install/standalone/po/libDrakX-standalone.pot,
+ perl-install/standalone/po/lt.po,
+ perl-install/standalone/po/ltg.po,
+ perl-install/standalone/po/lv.po,
+ perl-install/standalone/po/mk.po,
+ perl-install/standalone/po/mn.po,
+ perl-install/standalone/po/ms.po,
+ perl-install/standalone/po/mt.po,
+ perl-install/standalone/po/nb.po,
+ perl-install/standalone/po/nl.po,
+ perl-install/standalone/po/nn.po,
+ perl-install/standalone/po/pa_IN.po,
+ perl-install/standalone/po/pl.po,
+ perl-install/standalone/po/pt.po,
+ perl-install/standalone/po/pt_BR.po,
+ perl-install/standalone/po/ro.po,
+ perl-install/standalone/po/ru.po,
+ perl-install/standalone/po/sc.po,
+ perl-install/standalone/po/sk.po,
+ perl-install/standalone/po/sl.po,
+ perl-install/standalone/po/sq.po,
+ perl-install/standalone/po/sr.po,
+ perl-install/standalone/po/sr@Latn.po,
+ perl-install/standalone/po/sv.po,
+ perl-install/standalone/po/ta.po,
+ perl-install/standalone/po/tg.po,
+ perl-install/standalone/po/th.po,
+ perl-install/standalone/po/tl.po,
+ perl-install/standalone/po/tr.po,
+ perl-install/standalone/po/uk.po,
+ perl-install/standalone/po/uz.po,
+ perl-install/standalone/po/uz@Latn.po,
+ perl-install/standalone/po/vi.po,
+ perl-install/standalone/po/wa.po,
+ perl-install/standalone/po/zh_CN.po,
+ perl-install/standalone/po/zh_TW.po: Updated POT files.
+
+2006-08-25 10:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: only do no_Window_Manager tricks
+ when no window manager is detected
+
+2006-08-24 23:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/any.pm: list compiz as a window manager
+
+2006-08-24 23:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: ask window manager to logout
+
+2006-08-24 23:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: tmdns isn't used anymore
+
+2006-08-24 23:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: update changelog for
+ 10.4.56-1mdv2007.0
+
+2006-08-24 23:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: perl_checker
+ * perl-install/standalone/net_applet: perl_checker fixes
+
+2006-08-24 23:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: allow to run drakvpn from
+ VPN submenu
+
+2006-08-24 23:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: move wireless configuration
+ button in wireless sub-menu
+
+2006-08-24 22:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: don't show ndiswrapper choice
+
+2006-08-24 22:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection.pm,
+ perl-install/network/connection/wireless.pm: allow to select
+ automatically usable devices only
+
+2006-08-24 22:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: center the tool
+
+2006-08-24 22:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm: direct rendering is supported by
+ the card if in Xgl
+
+2006-08-24 22:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: use standalone again, so that it
+ can be embedded in drakconf
+
+2006-08-24 22:09 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install: don't run GLX
+ configuration in finish-install
+
+2006-08-24 21:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: create missing wmsession.d dir
+
+2006-08-24 21:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: add drak3d wmsession file
+
+2006-08-24 21:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draknetprofile: use new draknetprofile
+ icons
+
+2006-08-24 21:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: use new drak3d icons
+
+2006-08-24 21:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakinvictus: use new drakinvictus icons
+
+2006-08-24 21:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/drakvpn.pm: use new drakvpn icon
+
+2006-08-24 21:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/icons/3D-16.png,
+ perl-install/standalone/icons/3D-24.png,
+ perl-install/standalone/icons/3D-32.png,
+ perl-install/standalone/icons/3D-52.png,
+ perl-install/standalone/icons/3D-64.png,
+ perl-install/standalone/icons/3D.png,
+ perl-install/standalone/icons/3D_128.png,
+ perl-install/standalone/icons/drak3d-16.png,
+ perl-install/standalone/icons/drak3d-24.png,
+ perl-install/standalone/icons/drak3d-32.png,
+ perl-install/standalone/icons/drak3d-52.png,
+ perl-install/standalone/icons/drak3d-64.png,
+ perl-install/standalone/icons/drak3d.png,
+ perl-install/standalone/icons/drak3d_128.png: rename 3D icons to
+ a less generic drak3d name
+
+2006-08-24 21:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/icons/3D-128.png,
+ perl-install/standalone/icons/3D-48.png,
+ perl-install/standalone/icons/3D.png,
+ perl-install/standalone/icons/3D_128.png,
+ perl-install/standalone/icons/drakmenustyle-128.png,
+ perl-install/standalone/icons/drakmenustyle-48.png,
+ perl-install/standalone/icons/drakmenustyle.png,
+ perl-install/standalone/icons/drakmenustyle_128.png,
+ perl-install/standalone/icons/draknetprofile-128.png,
+ perl-install/standalone/icons/draknetprofile-48.png,
+ perl-install/standalone/icons/draknetprofile.png,
+ perl-install/standalone/icons/draknetprofile_128.png,
+ perl-install/standalone/icons/drakvpn-128.png,
+ perl-install/standalone/icons/drakvpn-48.png,
+ perl-install/standalone/icons/drakvpn.png,
+ perl-install/standalone/icons/drakvpn_128.png,
+ perl-install/standalone/icons/hwapplet-128.png,
+ perl-install/standalone/icons/hwapplet-48.png,
+ perl-install/standalone/icons/hwapplet.png,
+ perl-install/standalone/icons/hwapplet_128.png,
+ perl-install/standalone/icons/invictus-128.png,
+ perl-install/standalone/icons/invictus-48.png,
+ perl-install/standalone/icons/invictus.png,
+ perl-install/standalone/icons/invictus_128.png: adapt to
+ drakconf icon name expectations
+
+2006-08-24 20:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/icons/drakvpn.png: remove old drakvpn
+ icon
+
+2006-08-24 20:46 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: - Read all XML files in
+ /usr/share/hplip/data/xml/ to determine
+ whether a printer is supported by HPLIP or not
+
+2006-08-24 20:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/pixmaps/bluetooth-128.png,
+ perl-install/pixmaps/bluetooth-16.png,
+ perl-install/pixmaps/bluetooth-24.png,
+ perl-install/pixmaps/bluetooth-32.png,
+ perl-install/pixmaps/bluetooth-48.png,
+ perl-install/pixmaps/bluetooth-52.png,
+ perl-install/pixmaps/bluetooth-64.png,
+ perl-install/pixmaps/cablemodem-128.png,
+ perl-install/pixmaps/cablemodem-16.png,
+ perl-install/pixmaps/cablemodem-24.png,
+ perl-install/pixmaps/cablemodem-32.png,
+ perl-install/pixmaps/cablemodem-48.png,
+ perl-install/pixmaps/cablemodem-52.png,
+ perl-install/pixmaps/cablemodem-64.png,
+ perl-install/pixmaps/cellular-128.png,
+ perl-install/pixmaps/cellular-16.png,
+ perl-install/pixmaps/cellular-24.png,
+ perl-install/pixmaps/cellular-32.png,
+ perl-install/pixmaps/cellular-48.png,
+ perl-install/pixmaps/cellular-52.png,
+ perl-install/pixmaps/cellular-64.png,
+ perl-install/pixmaps/dvb-128.png,
+ perl-install/pixmaps/dvb-16.png,
+ perl-install/pixmaps/dvb-24.png,
+ perl-install/pixmaps/dvb-32.png,
+ perl-install/pixmaps/dvb-48.png,
+ perl-install/pixmaps/dvb-52.png,
+ perl-install/pixmaps/dvb-64.png,
+ perl-install/pixmaps/ethernet-128.png,
+ perl-install/pixmaps/ethernet-16.png,
+ perl-install/pixmaps/ethernet-24.png,
+ perl-install/pixmaps/ethernet-32.png,
+ perl-install/pixmaps/ethernet-52.png,
+ perl-install/pixmaps/ethernet-64.png,
+ perl-install/pixmaps/ethernet48.png,
+ perl-install/pixmaps/isdn-128.png,
+ perl-install/pixmaps/isdn-16.png,
+ perl-install/pixmaps/isdn-24.png,
+ perl-install/pixmaps/isdn-32.png,
+ perl-install/pixmaps/isdn-48.png,
+ perl-install/pixmaps/isdn-52.png,
+ perl-install/pixmaps/isdn-64.png,
+ perl-install/pixmaps/potsmodem-128.png,
+ perl-install/pixmaps/potsmodem-16.png,
+ perl-install/pixmaps/potsmodem-24.png,
+ perl-install/pixmaps/potsmodem-32.png,
+ perl-install/pixmaps/potsmodem-48.png,
+ perl-install/pixmaps/potsmodem-52.png,
+ perl-install/pixmaps/potsmodem-64.png,
+ perl-install/pixmaps/wireless-128.png,
+ perl-install/pixmaps/wireless-16.png,
+ perl-install/pixmaps/wireless-24.png,
+ perl-install/pixmaps/wireless-32.png,
+ perl-install/pixmaps/wireless-48.png,
+ perl-install/pixmaps/wireless-52.png,
+ perl-install/pixmaps/wireless-64.png,
+ perl-install/pixmaps/xdsl-128.png,
+ perl-install/pixmaps/xdsl-16.png,
+ perl-install/pixmaps/xdsl-24.png,
+ perl-install/pixmaps/xdsl-32.png,
+ perl-install/pixmaps/xdsl-48.png,
+ perl-install/pixmaps/xdsl-52.png,
+ perl-install/pixmaps/xdsl-64.png,
+ perl-install/standalone/icons/3D-128.png,
+ perl-install/standalone/icons/3D-16.png,
+ perl-install/standalone/icons/3D-24.png,
+ perl-install/standalone/icons/3D-32.png,
+ perl-install/standalone/icons/3D-48.png,
+ perl-install/standalone/icons/3D-52.png,
+ perl-install/standalone/icons/3D-64.png,
+ perl-install/standalone/icons/drakbug-16.png,
+ perl-install/standalone/icons/drakmenustyle-128.png,
+ perl-install/standalone/icons/drakmenustyle-16.png,
+ perl-install/standalone/icons/drakmenustyle-24.png,
+ perl-install/standalone/icons/drakmenustyle-32.png,
+ perl-install/standalone/icons/drakmenustyle-48.png,
+ perl-install/standalone/icons/drakmenustyle-52.png,
+ perl-install/standalone/icons/drakmenustyle-64.png,
+ perl-install/standalone/icons/draknetprofile-128.png,
+ perl-install/standalone/icons/draknetprofile-16.png,
+ perl-install/standalone/icons/draknetprofile-24.png,
+ perl-install/standalone/icons/draknetprofile-32.png,
+ perl-install/standalone/icons/draknetprofile-48.png,
+ perl-install/standalone/icons/draknetprofile-52.png,
+ perl-install/standalone/icons/draknetprofile-64.png,
+ perl-install/standalone/icons/draksound-16.png,
+ perl-install/standalone/icons/draksplash-16.png,
+ perl-install/standalone/icons/drakvpn-128.png,
+ perl-install/standalone/icons/drakvpn-16.png,
+ perl-install/standalone/icons/drakvpn-24.png,
+ perl-install/standalone/icons/drakvpn-32.png,
+ perl-install/standalone/icons/drakvpn-48.png,
+ perl-install/standalone/icons/drakvpn-52.png,
+ perl-install/standalone/icons/drakvpn-64.png,
+ perl-install/standalone/icons/drakwizard-16.png,
+ perl-install/standalone/icons/hwapplet-128.png,
+ perl-install/standalone/icons/hwapplet-16.png,
+ perl-install/standalone/icons/hwapplet-24.png,
+ perl-install/standalone/icons/hwapplet-32.png,
+ perl-install/standalone/icons/hwapplet-48.png,
+ perl-install/standalone/icons/hwapplet-52.png,
+ perl-install/standalone/icons/hwapplet-64.png,
+ perl-install/standalone/icons/invictus-128.png,
+ perl-install/standalone/icons/invictus-16.png,
+ perl-install/standalone/icons/invictus-24.png,
+ perl-install/standalone/icons/invictus-32.png,
+ perl-install/standalone/icons/invictus-48.png,
+ perl-install/standalone/icons/invictus-52.png,
+ perl-install/standalone/icons/invictus-64.png: add new icons
+
+2006-08-24 19:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/finish-install: 3D desktop support in
+ finish-install
+
+2006-08-24 19:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/steps_interactive.pm: revert previous commit
+
+2006-08-24 19:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/interactive.pm: revert previous commit
+
+2006-08-24 19:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/authentication.pm,
+ perl-install/install/interactive.pm,
+ perl-install/install/steps_gtk.pm,
+ perl-install/install/steps_interactive.pm: backport using
+ specific banners from mlcs4 branch
+
+2006-08-24 18:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm, perl-install/standalone/drak3d:
+ move package installation in Xconfig::glx::detect_may_install
+
+2006-08-24 18:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draknfs: perl_checker cleanup
+
+2006-08-24 18:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: perl_checker cleanup
+
+2006-08-24 18:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: first bits of 10.4.56-1mdv2007.0
+
+2006-08-24 17:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: don't use standalone, so that
+ the window is centered when no dm
+
+2006-08-24 17:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: fix compiz detection
+
+2006-08-24 17:16 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/pci-resource/update-pci-ids.pl,
+ mdk-stage1/pcmcia-resource/update-pcmcia-ids.pl,
+ mdk-stage1/usb-resource/update-usb-ids.pl: die stage1 generation
+ when the PCI/USB/PCMCIA modules aren't available (may happen
+ when the kernel isn't installed, #21918)
+
+2006-08-24 16:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm: fix compiz auto-detection
+
+2006-08-24 15:58 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/modules.pl: remove 2.4 compatibility aliases, it's unused
+ make the modules list non empty when it should
+
+2006-08-24 15:52 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-08-24 15:44 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * make_boot_img: - Drop network_*.img, ka.img on x86_64
+ - Increase all.img rd size
+ - Fix .not-enough-room to correctly print pcitable nr entries
+
+2006-08-24 15:41 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * Makefile.config: Use real Mandriva Linux versioning
+
+2006-08-24 15:38 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/list_modules.pm: Add megaide
+
+2006-08-24 15:37 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/modules.pl: Remove more disk/scsi modules for x86_64:
+ - tmscsim (DC930T) only 2 pcitable entries and code probably not
+ 64-bit clean
+ - qlogicfas408, originally ISA card (not supported) and PCMCIA
+ model unlikely
+ to be used with an SCSI CD Reader anyway
+
+2006-08-24 15:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/various.pm: allow specifying EXA on i128
+ ati sis trident via savage (list taken from
+ http://wiki.x.org/wiki/ExaStatus)
+
+2006-08-24 15:12 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/pixmaps/encryption-open-24.png,
+ perl-install/pixmaps/encryption-strong-24.png,
+ perl-install/pixmaps/encryption-weak-24.png,
+ perl-install/standalone/drakroam,
+ perl-install/standalone/net_applet: add new wireless encryption
+ icons
+
+2006-08-24 15:04 felipe
+
+ * perl-install/share/po/pt_BR.po: translating to pt_BR
+
+2006-08-24 14:53 felipe
+
+ * perl-install/share/po/pt_BR.po: fixing a fuzzy entry
+
+2006-08-24 14:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: add Compiz/AIGLX/Xgl descriptions
+
+2006-08-24 14:39 felipe
+
+ * perl-install/standalone/po/pt_BR.po: Translated by Laerte
+
+2006-08-24 14:19 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/update_kernel: Use the same kernel-BOOT laziness for
+ x86_-4 too.
+
+2006-08-24 14:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm, perl-install/standalone/drak3d:
+ update strings to include the '3D' word
+
+2006-08-24 13:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: use two radio button sets
+
+2006-08-24 13:43 felipe
+
+ * perl-install/share/po/pt_BR.po: updating the brazilian
+ portuguese translation
+
+2006-08-24 15:44 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * make_boot_img: - Drop network_*.img, ka.img on x86_64
+ - Increase all.img rd size
+ - Fix .not-enough-room to correctly print pcitable nr entries
+
+2006-08-24 15:41 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * Makefile.config: Use real Mandriva Linux versioning
+
+2006-08-24 15:38 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/list_modules.pm: Add megaide
+
+2006-08-24 15:37 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/modules.pl: Remove more disk/scsi modules for x86_64:
+ - tmscsim (DC930T) only 2 pcitable entries and code probably not
+ 64-bit clean
+ - qlogicfas408, originally ISA card (not supported) and PCMCIA
+ model unlikely
+ to be used with an SCSI CD Reader anyway
+
+2006-08-24 15:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/various.pm: allow specifying EXA on i128
+ ati sis trident via savage (list taken from
+ http://wiki.x.org/wiki/ExaStatus)
+
+2006-08-24 15:12 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/pixmaps/encryption-open-24.png,
+ perl-install/pixmaps/encryption-strong-24.png,
+ perl-install/pixmaps/encryption-weak-24.png,
+ perl-install/standalone/drakroam,
+ perl-install/standalone/net_applet: add new wireless encryption
+ icons
+
+2006-08-24 15:04 felipe
+
+ * perl-install/share/po/pt_BR.po: translating to pt_BR
+
+2006-08-24 14:53 felipe
+
+ * perl-install/share/po/pt_BR.po: fixing a fuzzy entry
+
+2006-08-24 14:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: add Compiz/AIGLX/Xgl descriptions
+
+2006-08-24 14:39 felipe
+
+ * perl-install/standalone/po/pt_BR.po: Translated by Laerte
+
+2006-08-24 14:19 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/update_kernel: Use the same kernel-BOOT laziness for
+ x86_-4 too.
+
+2006-08-24 14:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm, perl-install/standalone/drak3d:
+ update strings to include the '3D' word
+
+2006-08-24 13:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: use two radio button sets
+
+2006-08-24 13:43 felipe
+
+ * perl-install/share/po/pt_BR.po: updating the brazilian
+ portuguese translation
+
+2006-08-24 13:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/various.pm: allow setting BIOSHotkeys on
+ radeon
+
+2006-08-24 13:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/various.pm: Clone is the default on ATI,
+ allow forcing no Clone (fix buggy detection of
+ the CRT, as reproduced here on a thinkpad here, and reported by
+ Thomas
+ Backlund on cooker)
+
+2006-08-24 12:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: make it executable
+
+2006-08-24 10:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/drakfirewall.pm: remove useless
+ deref_array() call now that Titi has discovered it
+
+2006-08-24 10:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/drakfirewall.pm: don't write double
+ newlines in /etc/ifw/rules
+
+2006-08-24 10:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/drakfirewall.pm: don't write icmp rules for
+ IFW (#24645)
+
+2006-08-24 10:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm: use run_program::rooted_get_stdout
+
+2006-08-24 10:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drak3d: allow to run gtk frontend
+ * perl-install/standalone/drak3d: don't ask to install
+ task-3ddesktop at each start
+
+2006-08-24 09:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: don't be verbose when running
+ gconftool-2
+
+2006-08-24 09:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: gconf local settings directory
+ and configuration are now packaged in GConf2, don't create them
+ when writing proxy configuration
+
+2006-08-24 01:11 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/standalone/po/id.po: Updated
+
+2006-08-23 21:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/br.po: update
+
+2006-08-23 18:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draknfs: (add_modify_entry) add some
+ space between widgets
+
+2006-08-23 16:43 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-08-23 16:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: we now handle raid6
+ (#24637)
+
+2006-08-23 16:18 Pixel <pixel at mandriva.com>
+
+ * kernel/list_modules.pm, perl-install/raid.pm: support for raid6
+ (thanks to Luca Berra)
+
+2006-08-23 16:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Makefile.config, perl-install/standalone/drak3d:
+ initial drak3d import
+ * perl-install/mygtk2.pm: sensitive option is not specific to
+ buttons, it's available for all widgets
+ * perl-install/mygtk2.pm: RadioButton support
+
+2006-08-23 16:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm: add Xconfig::glx
+
+2006-08-23 15:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/af.po,
+ perl-install/standalone/po/am.po,
+ perl-install/standalone/po/ar.po,
+ perl-install/standalone/po/az.po,
+ perl-install/standalone/po/be.po,
+ perl-install/standalone/po/bg.po,
+ perl-install/standalone/po/bn.po,
+ perl-install/standalone/po/br.po,
+ perl-install/standalone/po/bs.po,
+ perl-install/standalone/po/ca.po,
+ perl-install/standalone/po/cs.po,
+ perl-install/standalone/po/cy.po,
+ perl-install/standalone/po/da.po,
+ perl-install/standalone/po/de.po,
+ perl-install/standalone/po/el.po,
+ perl-install/standalone/po/eo.po,
+ perl-install/standalone/po/es.po,
+ perl-install/standalone/po/et.po,
+ perl-install/standalone/po/eu.po,
+ perl-install/standalone/po/fa.po,
+ perl-install/standalone/po/fi.po,
+ perl-install/standalone/po/fr.po,
+ perl-install/standalone/po/fur.po,
+ perl-install/standalone/po/ga.po,
+ perl-install/standalone/po/gl.po,
+ perl-install/standalone/po/he.po,
+ perl-install/standalone/po/hi.po,
+ perl-install/standalone/po/hr.po,
+ perl-install/standalone/po/hu.po,
+ perl-install/standalone/po/id.po,
+ perl-install/standalone/po/is.po,
+ perl-install/standalone/po/it.po,
+ perl-install/standalone/po/ja.po,
+ perl-install/standalone/po/ko.po,
+ perl-install/standalone/po/ky.po,
+ perl-install/standalone/po/libDrakX-standalone.pot,
+ perl-install/standalone/po/lt.po,
+ perl-install/standalone/po/ltg.po,
+ perl-install/standalone/po/lv.po,
+ perl-install/standalone/po/mk.po,
+ perl-install/standalone/po/mn.po,
+ perl-install/standalone/po/ms.po,
+ perl-install/standalone/po/mt.po,
+ perl-install/standalone/po/nb.po,
+ perl-install/standalone/po/nl.po,
+ perl-install/standalone/po/nn.po,
+ perl-install/standalone/po/pa_IN.po,
+ perl-install/standalone/po/pl.po,
+ perl-install/standalone/po/pt.po,
+ perl-install/standalone/po/pt_BR.po,
+ perl-install/standalone/po/ro.po,
+ perl-install/standalone/po/ru.po,
+ perl-install/standalone/po/sc.po,
+ perl-install/standalone/po/sk.po,
+ perl-install/standalone/po/sl.po,
+ perl-install/standalone/po/sq.po,
+ perl-install/standalone/po/sr.po,
+ perl-install/standalone/po/sr@Latn.po,
+ perl-install/standalone/po/sv.po,
+ perl-install/standalone/po/ta.po,
+ perl-install/standalone/po/tg.po,
+ perl-install/standalone/po/th.po,
+ perl-install/standalone/po/tl.po,
+ perl-install/standalone/po/tr.po,
+ perl-install/standalone/po/uk.po,
+ perl-install/standalone/po/uz.po,
+ perl-install/standalone/po/uz@Latn.po,
+ perl-install/standalone/po/vi.po,
+ perl-install/standalone/po/wa.po,
+ perl-install/standalone/po/zh_CN.po,
+ perl-install/standalone/po/zh_TW.po: sync with code
+
+2006-08-23 14:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/ja.po: update (Yukiko Bando)
+
+2006-08-23 16:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: we now handle raid6
+ (#24637)
+
+2006-08-23 16:18 Pixel <pixel at mandriva.com>
+
+ * kernel/list_modules.pm, perl-install/raid.pm: support for raid6
+ (thanks to Luca Berra)
+
+2006-08-23 16:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Makefile.config, perl-install/standalone/drak3d:
+ initial drak3d import
+ * perl-install/mygtk2.pm: sensitive option is not specific to
+ buttons, it's available for all widgets
+ * perl-install/mygtk2.pm: RadioButton support
+
+2006-08-23 16:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/glx.pm: add Xconfig::glx
+
+2006-08-23 15:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/af.po,
+ perl-install/standalone/po/am.po,
+ perl-install/standalone/po/ar.po,
+ perl-install/standalone/po/az.po,
+ perl-install/standalone/po/be.po,
+ perl-install/standalone/po/bg.po,
+ perl-install/standalone/po/bn.po,
+ perl-install/standalone/po/br.po,
+ perl-install/standalone/po/bs.po,
+ perl-install/standalone/po/ca.po,
+ perl-install/standalone/po/cs.po,
+ perl-install/standalone/po/cy.po,
+ perl-install/standalone/po/da.po,
+ perl-install/standalone/po/de.po,
+ perl-install/standalone/po/el.po,
+ perl-install/standalone/po/eo.po,
+ perl-install/standalone/po/es.po,
+ perl-install/standalone/po/et.po,
+ perl-install/standalone/po/eu.po,
+ perl-install/standalone/po/fa.po,
+ perl-install/standalone/po/fi.po,
+ perl-install/standalone/po/fr.po,
+ perl-install/standalone/po/fur.po,
+ perl-install/standalone/po/ga.po,
+ perl-install/standalone/po/gl.po,
+ perl-install/standalone/po/he.po,
+ perl-install/standalone/po/hi.po,
+ perl-install/standalone/po/hr.po,
+ perl-install/standalone/po/hu.po,
+ perl-install/standalone/po/id.po,
+ perl-install/standalone/po/is.po,
+ perl-install/standalone/po/it.po,
+ perl-install/standalone/po/ja.po,
+ perl-install/standalone/po/ko.po,
+ perl-install/standalone/po/ky.po,
+ perl-install/standalone/po/libDrakX-standalone.pot,
+ perl-install/standalone/po/lt.po,
+ perl-install/standalone/po/ltg.po,
+ perl-install/standalone/po/lv.po,
+ perl-install/standalone/po/mk.po,
+ perl-install/standalone/po/mn.po,
+ perl-install/standalone/po/ms.po,
+ perl-install/standalone/po/mt.po,
+ perl-install/standalone/po/nb.po,
+ perl-install/standalone/po/nl.po,
+ perl-install/standalone/po/nn.po,
+ perl-install/standalone/po/pa_IN.po,
+ perl-install/standalone/po/pl.po,
+ perl-install/standalone/po/pt.po,
+ perl-install/standalone/po/pt_BR.po,
+ perl-install/standalone/po/ro.po,
+ perl-install/standalone/po/ru.po,
+ perl-install/standalone/po/sc.po,
+ perl-install/standalone/po/sk.po,
+ perl-install/standalone/po/sl.po,
+ perl-install/standalone/po/sq.po,
+ perl-install/standalone/po/sr.po,
+ perl-install/standalone/po/sr@Latn.po,
+ perl-install/standalone/po/sv.po,
+ perl-install/standalone/po/ta.po,
+ perl-install/standalone/po/tg.po,
+ perl-install/standalone/po/th.po,
+ perl-install/standalone/po/tl.po,
+ perl-install/standalone/po/tr.po,
+ perl-install/standalone/po/uk.po,
+ perl-install/standalone/po/uz.po,
+ perl-install/standalone/po/uz@Latn.po,
+ perl-install/standalone/po/vi.po,
+ perl-install/standalone/po/wa.po,
+ perl-install/standalone/po/zh_CN.po,
+ perl-install/standalone/po/zh_TW.po: sync with code
+
+2006-08-23 14:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/ja.po: update (Yukiko Bando)
+
+2006-08-23 12:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: beautify the next tabs too
+
+2006-08-23 12:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.55-1mdv2007.0
+
+2006-08-23 12:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: (ask_fromW) fix titles
+
+2006-08-23 11:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Makefile.config: install drakinvictus
+
+2006-08-23 11:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/main.pm,
+ perl-install/Xconfig/resolution_and_depth.pm,
+ perl-install/Xconfig/xfree.pm: write all lower resolutions when
+ using Modes
+
+2006-08-23 11:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: revert :-(
+ * perl-install/drakxtools.spec: rename menu entry
+
+2006-08-23 10:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/invictus.pm,
+ perl-install/standalone/drakinvictus: initial Invictus Firewall
+ support
+
+2006-08-23 10:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/br.po: typo fix
+
+2006-08-23 10:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: update ld.so.conf.d files when
+ switching back to free drivers as well
+
+2006-08-23 10:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.54-1mdv2007.0
+
+2006-08-23 10:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/pixmaps/unselected.png: resurrect still
+ used flag
+
+2006-08-23 09:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/steps_gtk.pm: enable again to select
+ individual packages (#24522)
+
+2006-08-23 09:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: revert commit r57623 (use old API)
+
+2006-08-23 09:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/pixmaps/unselected.png,
+ perl-install/pixmaps/state_installed.png,
+ perl-install/pixmaps/state_to_install.png,
+ perl-install/pixmaps/state_to_remove.png,
+ perl-install/pixmaps/state_to_update.png,
+ perl-install/pixmaps/state_uninstalled.png: temporary icons for
+ new rpmdrake
+
+2006-08-23 09:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: export
+ ask_browse_tree_info_given_widgets_for_rpmdrake()
+ * perl-install/ugtk2.pm: (ask_browse_tree_info_given_widgets)
+ reintroduce old version for
+ services/package browsing at install time (#24522, #24517,
+ #24496)
+
+2006-08-23 09:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (ask_browse_tree_info_given_widgets)
+ rename it as
+ ask_browse_tree_info_given_widgets_for_rpmdrake(); rationale:
+ services/package
+ browsing at install time and rpmdrake browsing needs are
+ different
+ * perl-install/ugtk2.pm: on click, toggle the package state
+
+ unlike was stated by gc, we could probably do cleaner (but
+ bigger code) by
+ using our own customized CellRenderer and hooking the "edited-*"
+ or the
+ "activated" (eg by subclassing Gtk2::CellEditable)
+
+2006-08-23 09:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: on key event, use fast_toggle() to toggle
+ a package
+ * perl-install/ugtk2.pm: (fast_toggle) introduce it in order to
+ select/unselect a package in left list
+
+2006-08-23 09:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: toggle_nodes() now takes an extra arg
+
+2006-08-23 09:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: store current state
+
+2006-08-23 09:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: use is_a_package() in order to be sure of
+ leaf nature (either group or package)
+ * perl-install/ugtk2.pm: tell get_icon to use parent group icon if
+ needed
+
+2006-08-23 09:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: cleanup
+ * perl-install/ugtk2.pm: (add_parent) set the icon when inserting
+ the parent group
+
+2006-08-23 09:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2:
+ (Gtk2::MDV::CellRendererPixWithLabel) use the new renderer
+
+2006-08-23 09:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (Gtk2::MDV::CellRendererPixWithLabel)
+ introduce it in order to be able to pack
+ icons & labels and still look like a tree and not like a list
+ (like was
+ possible with gtk+1)
+
+2006-08-23 09:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm:
+ (ask_browse_tree_info_given_widgets_for_rpmdrake) use new icons
+ naming scheme
+ * perl-install/ugtk2.pm:
+ (ask_browse_tree_info_given_widgets_for_rpmdrake) fix listing
+ gpg keys in
+ right list instead of left groups tree
+ * perl-install/ugtk2.pm: (ask_browse_tree_info) adapt to new
+ ask_browse_tree_info_given_widgets() API
+
+2006-08-23 09:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (ask_browse_tree_info_given_widgets)
+ managing "changed" signal is no more needed
+
+2006-08-23 09:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (ask_browse_tree_info_given_widgets)
+ don't try setting mode for group in left tree
+
+2006-08-23 09:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (ask_browse_tree_info_given_widgets) make
+ add_parent() accessible from
+ external callers (eg rpmdrake)
+ * perl-install/ugtk2.pm: (ask_browse_tree_info_given_widgets)
+ don't die if state is undefined
+
+2006-08-23 09:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (escape_text_for_TextView_markup_format)
+ introduce it because we cannot rely on
+ Glib::Markup::escape_text() for Gtk2::TextViews (escape_text()
+ really alter the
+ string so that it goes verbatim through an XML parser)
+
+2006-08-23 09:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (ask_browse_tree_info_given_widgets) kill
+ "global" variable $curr now that it's unused
+
+2006-08-23 09:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (ask_browse_tree_info_given_widgets)
+ change API of toggle->() (do
+ not rely on "global" variable $curr but get an argument)
+ * perl-install/ugtk2.pm: (ask_browse_tree_info_given_widgets) stop
+ uselessly messing up with shortcuts,
+ which prevent normal gtk+ shortcuts to work
+
+2006-08-23 09:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (ask_browse_tree_info_given_widgets) do
+ not use useless timer (it was used b/c
+ of an old gtk+ bug)
+
+2006-08-23 09:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (ask_browse_tree_info_given_widgets) fix
+ displaying of package info by details
+ tree signal handler
+ * perl-install/ugtk2.pm: (ask_browse_tree_info_given_widgets)
+ change API of common->{display_info} (do
+ not rely on "global" variable $curr but get an argument)
+
+2006-08-23 09:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (ask_browse_tree_info_given_widgets)
+ comment its arguments
+
+2006-08-23 09:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (ask_browse_tree_info) kill old
+ gtk+-2.2.1 workaround that is no more needed
+ * perl-install/install/steps_gtk.pm: (choosePackagesTree) add
+ missing title to individual packages selection window
+ * perl-install/ugtk2.pm: (ask_browse_tree_info) prevent labels to
+ overwrite
+
+2006-08-23 08:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/steps_gtk.pm: (choosePackagesTree) add
+ missing title to confirmation dialog
+ * perl-install/standalone/po/fr.po: bump date of my work on the po
+ * perl-install/standalone/po/fr.po: dadou and dindinx do not work
+ anymore for mandriva
+
+2006-08-23 08:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/fr.po: make translator list
+ homogenous (aka list all people with "name surname"
+ order and make all names use the same case)
+ * perl-install/standalone/po/fr.po: gc is no more working for us
+
+2006-08-23 08:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/fr.po: fix translator list according
+ to format accepted by AboutDialog
+ * perl-install/standalone/drakconnect: HIG
+ * perl-install/standalone/po/br.po: typo fix
+
+2006-08-23 08:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakroam: beautify somewhat
+ * perl-install/mygtk2.pm: (_gtk__Label_Left) enable to overwrite
+ * perl-install/standalone/logdrake: HIG
+ * perl-install/standalone/logdrake: use a meaningfull title
+
+2006-08-23 08:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: HIG
+ * perl-install/standalone/drakhosts: (add_modify_entry) fix
+ unstranslatable string; make titles understandable by humans
+ * perl-install/standalone/drakhosts: HIG-ize drakhosts
+ * perl-install/standalone/drakhosts: make banner title the same as
+ window title (and thus make it fit into the banner)
+
+2006-08-23 08:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakhosts: fix unstranlatable string
+ * perl-install/standalone/drakbug: HIG-ize
+
+2006-08-23 08:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: HIG-ize fields description
+ dialog
+ * perl-install/standalone/draknfs: (add_modify_entry) make
+ advanced items look like others
+ * perl-install/standalone/draknfs: ($label_and_widgets) HIG
+ (labels must be left aligned)
+
+2006-08-23 08:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draknfs: (add_modify_entry) HIG (and
+ simplify the packing btw)
+ * perl-install/interactive/gtk.pm: (ask_fromW) simplify through
+ new mygtk2 types
+ * perl-install/mygtk2.pm: (_gtk__Label_Left) set a small left
+ margin (GNOME HIG, Chapter 8. Visual Design, Window Layout)
+ * perl-install/mygtk2.pm: (_gtk__Title2) introduce it; like
+ _gtk__Title1 but label is left aligned (aka
+ window title vs "frame" (aka ~logical block~) title
+
+2006-08-23 08:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mygtk2.pm: (_gtk__Label_Left) do not uselessly use
+ a HBox
+
+2006-08-23 08:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: (ask_fromW) factorize out title
+ formatting in mygtk2::title1_to_markup()
+
+2006-08-23 08:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/services.pm: (ask_standalone_gtk) HIG the GUI by
+ using a new style title
+ * perl-install/mygtk2.pm: (_gtk__Title1) introduce it in order to
+ format a title with ugtk2/mygtk2 like
+ we can do with interactive::gtk
+
+2006-08-23 08:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mygtk2.pm: (title1_to_markup) introduce it to
+ format a title
+
+2006-08-23 02:21 mmodem
+
+ * perl-install/share/po/pt.po: actualizar
+
+2006-08-23 02:16 mmodem
+
+ * perl-install/standalone/po/pt.po: actualizar
+
+2006-08-23 01:50 mmodem
+
+ * perl-install/share/po/pt.po: actualizar
+
+2006-08-22 17:47 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Updated instructions for
+ faxing with HP MF devices.
+
+2006-08-22 17:31 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/detect.pm: - Do not let an extra entry for
+ a fax queue be listed in the printer
+ auto-detection results. This can lead to two fax queues for
+ one HP
+ MF device being generated.
+
+2006-08-22 16:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/vpn/vpnc.pm: allow to use specific UDP port
+
+2006-08-22 14:16 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/standalone/po/nb.po: finish
+ * perl-install/share/po/nb.po: finish
+
+2006-08-21 23:18 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg: remove hardcoded rpm path, busybox in
+ now in main
+
+2006-08-21 19:21 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg, live/One/patches/halt-live.patch,
+ live/One/patches/halt.loopfs.patch,
+ live/One/patches/netfs.loopfs.patch: rediff halt patch and drop
+ netfs patch (latest netfs service shares code with halt service)
+
+2006-08-21 18:17 felipe
+
+ * perl-install/standalone/po/pt_BR.po: fixing fuzzy entries
+
+2006-08-21 18:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksplash: check that a valid theme
+ name and image are selected (#24591)
+
+2006-08-21 15:41 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl, live/One/config/live.cfg:
+ enable 3D desktop by default on live systems
+
+2006-08-21 15:39 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: remove dependencies that are
+ now in the draklive package
+
+2006-08-21 15:35 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive.spec: update changelog
+
+2006-08-21 15:32 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: allow to add additionnal boot entries
+
+2006-08-21 15:22 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: style updates
+
+2006-08-21 15:19 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: add missing args
+
+2006-08-21 15:11 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: split out get_default_append() and
+ build_grub_cfg() functions
+
+2006-08-21 14:49 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: run shell in initrd when the "debug"
+ option is on cmdline
+
+2006-08-21 14:35 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: use patch batch mode (-t) not to apply
+ already applied patches and die if a patch can't be applied
+
+2006-08-21 13:37 felipe
+
+ * perl-install/share/po/pt_BR.po: translated by Laerte and Felipe
+
+2006-08-21 13:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/various.pm: better message (as suggested on
+ cooker)
+
+2006-08-21 12:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/XFdrake: really ensure task-x11 is
+ installed (testing the presence of rgb.txt is not enough)
+ (#24529)
+
+2006-08-21 12:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/various.pm: enabling "Composite" on every
+ drivers except proprietary drivers
+ (Xgl doesn't like it, fglrx doesn't like it)
+
+2006-08-21 10:14 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: create modules tree root
+
+2006-08-21 10:10 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: remove modprobe.preload.d files
+
+2006-08-21 10:01 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive.spec: 0.1-2mdv2007.0
+
+2006-08-21 10:00 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/Makefile: build src package as well
+
+2006-08-21 09:58 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/local_cfg: revert wrong commit
+
+2006-08-21 09:55 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl, live/One/config/local_cfg:
+ default compssListLevel is now 5
+
+2006-08-21 09:47 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/files/halt.local: fix keyboard read after CD ejection
+
+2006-08-19 13:16 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/standalone/po/ru.po: updated translation
+
+2006-08-19 13:14 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/share/po/ru.po: updated translation
+
+2006-08-19 12:24 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/install/share/po/ru.po: updated translation
+
+2006-08-19 04:30 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/install/share/po/DrakX.pot,
+ perl-install/install/share/po/af.po,
+ perl-install/install/share/po/am.po,
+ perl-install/install/share/po/ar.po,
+ perl-install/install/share/po/az.po,
+ perl-install/install/share/po/be.po,
+ perl-install/install/share/po/bg.po,
+ perl-install/install/share/po/bn.po,
+ perl-install/install/share/po/br.po,
+ perl-install/install/share/po/bs.po,
+ perl-install/install/share/po/ca.po,
+ perl-install/install/share/po/cs.po,
+ perl-install/install/share/po/cy.po,
+ perl-install/install/share/po/da.po,
+ perl-install/install/share/po/de.po,
+ perl-install/install/share/po/el.po,
+ perl-install/install/share/po/eo.po,
+ perl-install/install/share/po/es.po,
+ perl-install/install/share/po/et.po,
+ perl-install/install/share/po/eu.po,
+ perl-install/install/share/po/fa.po,
+ perl-install/install/share/po/fi.po,
+ perl-install/install/share/po/fr.po,
+ perl-install/install/share/po/fur.po,
+ perl-install/install/share/po/ga.po,
+ perl-install/install/share/po/gl.po,
+ perl-install/install/share/po/he.po,
+ perl-install/install/share/po/hi.po,
+ perl-install/install/share/po/hr.po,
+ perl-install/install/share/po/hu.po,
+ perl-install/install/share/po/id.po,
+ perl-install/install/share/po/is.po,
+ perl-install/install/share/po/it.po,
+ perl-install/install/share/po/ja.po,
+ perl-install/install/share/po/ko.po,
+ perl-install/install/share/po/ky.po,
+ perl-install/install/share/po/lt.po,
+ perl-install/install/share/po/ltg.po,
+ perl-install/install/share/po/lv.po,
+ perl-install/install/share/po/mk.po,
+ perl-install/install/share/po/mn.po,
+ perl-install/install/share/po/ms.po,
+ perl-install/install/share/po/mt.po,
+ perl-install/install/share/po/nb.po,
+ perl-install/install/share/po/nl.po,
+ perl-install/install/share/po/nn.po,
+ perl-install/install/share/po/pa_IN.po,
+ perl-install/install/share/po/pl.po,
+ perl-install/install/share/po/pt.po,
+ perl-install/install/share/po/pt_BR.po,
+ perl-install/install/share/po/ro.po,
+ perl-install/install/share/po/ru.po,
+ perl-install/install/share/po/sc.po,
+ perl-install/install/share/po/sk.po,
+ perl-install/install/share/po/sl.po,
+ perl-install/install/share/po/sq.po,
+ perl-install/install/share/po/sr.po,
+ perl-install/install/share/po/sr@Latn.po,
+ perl-install/install/share/po/sv.po,
+ perl-install/install/share/po/ta.po,
+ perl-install/install/share/po/tg.po,
+ perl-install/install/share/po/th.po,
+ perl-install/install/share/po/tl.po,
+ perl-install/install/share/po/tr.po,
+ perl-install/install/share/po/uk.po,
+ perl-install/install/share/po/uz.po,
+ perl-install/install/share/po/uz@Latn.po,
+ perl-install/install/share/po/vi.po,
+ perl-install/install/share/po/wa.po,
+ perl-install/install/share/po/zh_CN.po,
+ perl-install/install/share/po/zh_TW.po,
+ perl-install/share/po/af.po, perl-install/share/po/am.po,
+ perl-install/share/po/ar.po, perl-install/share/po/az.po,
+ perl-install/share/po/be.po, perl-install/share/po/bg.po,
+ perl-install/share/po/bn.po, perl-install/share/po/br.po,
+ perl-install/share/po/bs.po, perl-install/share/po/ca.po,
+ perl-install/share/po/cs.po, perl-install/share/po/cy.po,
+ perl-install/share/po/da.po, perl-install/share/po/de.po,
+ perl-install/share/po/el.po, perl-install/share/po/eo.po,
+ perl-install/share/po/es.po, perl-install/share/po/et.po,
+ perl-install/share/po/eu.po, perl-install/share/po/fa.po,
+ perl-install/share/po/fi.po, perl-install/share/po/fr.po,
+ perl-install/share/po/fur.po, perl-install/share/po/ga.po,
+ perl-install/share/po/gl.po, perl-install/share/po/he.po,
+ perl-install/share/po/hi.po, perl-install/share/po/hr.po,
+ perl-install/share/po/hu.po, perl-install/share/po/id.po,
+ perl-install/share/po/is.po, perl-install/share/po/it.po,
+ perl-install/share/po/ja.po, perl-install/share/po/ko.po,
+ perl-install/share/po/ky.po, perl-install/share/po/libDrakX.pot,
+ perl-install/share/po/lt.po, perl-install/share/po/ltg.po,
+ perl-install/share/po/lv.po, perl-install/share/po/mk.po,
+ perl-install/share/po/mn.po, perl-install/share/po/ms.po,
+ perl-install/share/po/mt.po, perl-install/share/po/nb.po,
+ perl-install/share/po/nl.po, perl-install/share/po/nn.po,
+ perl-install/share/po/pa_IN.po, perl-install/share/po/pl.po,
+ perl-install/share/po/pt.po, perl-install/share/po/pt_BR.po,
+ perl-install/share/po/ro.po, perl-install/share/po/ru.po,
+ perl-install/share/po/sc.po, perl-install/share/po/sk.po,
+ perl-install/share/po/sl.po, perl-install/share/po/sq.po,
+ perl-install/share/po/sr.po, perl-install/share/po/sr@Latn.po,
+ perl-install/share/po/sv.po, perl-install/share/po/ta.po,
+ perl-install/share/po/tg.po, perl-install/share/po/th.po,
+ perl-install/share/po/tl.po, perl-install/share/po/tr.po,
+ perl-install/share/po/uk.po, perl-install/share/po/uz.po,
+ perl-install/share/po/uz@Latn.po, perl-install/share/po/vi.po,
+ perl-install/share/po/wa.po, perl-install/share/po/zh_CN.po,
+ perl-install/share/po/zh_TW.po,
+ perl-install/standalone/po/Makefile,
+ perl-install/standalone/po/af.po,
+ perl-install/standalone/po/am.po,
+ perl-install/standalone/po/ar.po,
+ perl-install/standalone/po/az.po,
+ perl-install/standalone/po/be.po,
+ perl-install/standalone/po/bg.po,
+ perl-install/standalone/po/bn.po,
+ perl-install/standalone/po/br.po,
+ perl-install/standalone/po/bs.po,
+ perl-install/standalone/po/ca.po,
+ perl-install/standalone/po/cs.po,
+ perl-install/standalone/po/cy.po,
+ perl-install/standalone/po/da.po,
+ perl-install/standalone/po/de.po,
+ perl-install/standalone/po/el.po,
+ perl-install/standalone/po/eo.po,
+ perl-install/standalone/po/es.po,
+ perl-install/standalone/po/et.po,
+ perl-install/standalone/po/eu.po,
+ perl-install/standalone/po/fa.po,
+ perl-install/standalone/po/fi.po,
+ perl-install/standalone/po/fr.po,
+ perl-install/standalone/po/fur.po,
+ perl-install/standalone/po/ga.po,
+ perl-install/standalone/po/gl.po,
+ perl-install/standalone/po/he.po,
+ perl-install/standalone/po/hi.po,
+ perl-install/standalone/po/hr.po,
+ perl-install/standalone/po/hu.po,
+ perl-install/standalone/po/id.po,
+ perl-install/standalone/po/is.po,
+ perl-install/standalone/po/it.po,
+ perl-install/standalone/po/ja.po,
+ perl-install/standalone/po/ko.po,
+ perl-install/standalone/po/ky.po,
+ perl-install/standalone/po/libDrakX-standalone.pot,
+ perl-install/standalone/po/lt.po,
+ perl-install/standalone/po/ltg.po,
+ perl-install/standalone/po/lv.po,
+ perl-install/standalone/po/mk.po,
+ perl-install/standalone/po/mn.po,
+ perl-install/standalone/po/ms.po,
+ perl-install/standalone/po/mt.po,
+ perl-install/standalone/po/nb.po,
+ perl-install/standalone/po/nl.po,
+ perl-install/standalone/po/nn.po,
+ perl-install/standalone/po/pa_IN.po,
+ perl-install/standalone/po/pl.po,
+ perl-install/standalone/po/pt.po,
+ perl-install/standalone/po/pt_BR.po,
+ perl-install/standalone/po/ro.po,
+ perl-install/standalone/po/ru.po,
+ perl-install/standalone/po/sc.po,
+ perl-install/standalone/po/sk.po,
+ perl-install/standalone/po/sl.po,
+ perl-install/standalone/po/sq.po,
+ perl-install/standalone/po/sr.po,
+ perl-install/standalone/po/sr@Latn.po,
+ perl-install/standalone/po/sv.po,
+ perl-install/standalone/po/ta.po,
+ perl-install/standalone/po/tg.po,
+ perl-install/standalone/po/th.po,
+ perl-install/standalone/po/tl.po,
+ perl-install/standalone/po/tr.po,
+ perl-install/standalone/po/uk.po,
+ perl-install/standalone/po/uz.po,
+ perl-install/standalone/po/uz@Latn.po,
+ perl-install/standalone/po/vi.po,
+ perl-install/standalone/po/wa.po,
+ perl-install/standalone/po/zh_CN.po,
+ perl-install/standalone/po/zh_TW.po: Updated DrakX POT files.
+
+2006-08-19 01:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po, perl-install/standalone/po/br.po:
+ update
+
+2006-08-19 01:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/br.po: typo fix
+
+2006-08-19 00:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/cy.po: typo fix
+
+2006-08-19 00:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/ga.po,
+ perl-install/share/po/ga.po, perl-install/standalone/po/ga.po:
+ update
+
+2006-08-19 00:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/cy.po, perl-install/standalone/po/cy.po:
+ update
+
+2006-08-18 20:50 berthy
+
+ * perl-install/share/po/fr.po: Update french translation
+
+2006-08-18 19:17 Pixel <pixel at mandriva.com>
+
+ * ChangeLog: new upload
+
+2006-08-18 11:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/ja.po: update (Yukiko Bando)
+ * perl-install/share/po/ja.po: update (Yukiko Bando)
+
+2006-08-18 10:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (dmidecode) do not try to run
+ dmidecode if not root (#24478)
+
+2006-08-18 11:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/ja.po: update (Yukiko Bando)
+ * perl-install/share/po/ja.po: update (Yukiko Bando)
+
+2006-08-18 10:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (dmidecode) do not try to run
+ dmidecode if not root (#24478)
+
+2006-08-18 07:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/drakfirewall.pm: better phrasing (Per
+ Øyvind Karlsen)
+
+2006-08-18 01:30 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2006-08-18 00:59 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/install/share/po/is.po: update translation/header
+ for is
+
+2006-08-18 00:58 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * live/draklive-install/po/is.po: update translation/header for is
+
+2006-08-18 00:33 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/standalone/po/nb.po: Fix list of translators
+
+2006-08-17 21:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/fs/mount_options.pm: (help) typo fix / sync with
+ man page (Per Øyvind Karlsen)
+
+2006-08-17 20:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: log one more change in
+ 10.4.53-1mdv2007.0
+
+2006-08-17 20:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.53-1mdv2007.0
+
+2006-08-17 19:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/de.po: update (Nicolas Bauer)
+
+2006-08-17 19:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: (ask_fromW) do not let an horiz
+ scrollbar appear when displaying long
+ title just because we pack an empty label (rationale: e->{val} is
+ never set for titles)
+
+2006-08-17 19:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix compatibility steps for
+ isdn and modem
+
+2006-08-17 19:17 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: introduce get_winmodems()
+
+2006-08-17 19:16 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/standalone/po/nb.po: use Copyright in stead of
+ translation
+
+2006-08-17 19:14 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/list_modules.pm: make sure rt2570 devices reporting
+ themselves as rtusb are detected (#24461)
+
+2006-08-17 19:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: allow to skip hardware
+ settings step
+
+2006-08-17 18:42 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: Finished!
+
+2006-08-17 18:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: remove unused function
+
+2006-08-17 18:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: drop old ethernet code
+
+2006-08-17 17:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/wireless.pm: perl_checker
+
+2006-08-17 17:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: remove old wireless code
+
+2006-08-17 17:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/wireless.pm: factorize (and fix
+ typo)
+
+2006-08-17 17:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/wireless.pm: add ndiswrapper
+ back in generic wireless layer, using thirdparty
+
+2006-08-17 17:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ndiswrapper.pm: allow
+ network::ndiswrapper::select_device
+
+2006-08-17 17:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection.pm: allow to override device
+ from thidrparty settings
+
+2006-08-17 17:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ndiswrapper.pm: try to unload modules
+ conflicting with the configured ndiswrapper device
+
+2006-08-17 17:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: allow to use user_install
+ for firwmare step as well
+
+2006-08-17 15:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm: drop obsolete
+ pcmcia special case
+
+2006-08-17 15:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm: add interface alias
+ in modules conf for ethernet/wireless devices (#24384)
+
+2006-08-17 15:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm,
+ perl-install/standalone/drakconnect: write modules conf in
+ drakconnect (#24384)
+
+2006-08-17 15:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection.pm: update prototype
+
+2006-08-17 15:05 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/detect.pm: - Let the "no_device_found"
+ output of HPLIP's "hp" and "hpfax" CUPS
+ backends not be interpreted as an additional printer
+
+2006-08-17 13:56 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: Almost completed translation
+
+2006-08-17 13:18 Marek Laane <bald at starman.ee>
+
+ * perl-install/standalone/po/et.po: Updated Estonian translation.
+
+2006-08-17 13:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: speedtouch firmware is in
+ speedtouch-firmware now
+
+2006-08-17 13:09 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po: Updated Estonian translation.
+
+2006-08-17 12:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mygtk2.pm: (_gtk__AboutDialog) perl_checker cleanup
+
+2006-08-17 12:26 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/autosetupprintqueues: - Another wait
+ loop for firmware upload.
+
+2006-08-17 12:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: add some comment
+
+2006-08-17 12:23 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/autosetupprintqueues: - Wait 2 sec
+ between detection of plugged printer and automatic print
+ queue setup, as some printers need to load their firmware and
+ during
+ firmware upload the automatic queue setup does not work
+ (device ID
+ not readable).
+
+2006-08-17 12:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/af.po, perl-install/share/po/am.po,
+ perl-install/share/po/ar.po, perl-install/share/po/az.po,
+ perl-install/share/po/be.po, perl-install/share/po/bg.po,
+ perl-install/share/po/bn.po, perl-install/share/po/br.po,
+ perl-install/share/po/bs.po, perl-install/share/po/ca.po,
+ perl-install/share/po/cs.po, perl-install/share/po/cy.po,
+ perl-install/share/po/da.po, perl-install/share/po/de.po,
+ perl-install/share/po/el.po, perl-install/share/po/eo.po,
+ perl-install/share/po/es.po, perl-install/share/po/et.po,
+ perl-install/share/po/eu.po, perl-install/share/po/fa.po,
+ perl-install/share/po/fi.po, perl-install/share/po/fr.po,
+ perl-install/share/po/fur.po, perl-install/share/po/ga.po,
+ perl-install/share/po/gl.po, perl-install/share/po/he.po,
+ perl-install/share/po/hi.po, perl-install/share/po/hr.po,
+ perl-install/share/po/hu.po, perl-install/share/po/id.po,
+ perl-install/share/po/is.po, perl-install/share/po/it.po,
+ perl-install/share/po/ja.po, perl-install/share/po/ko.po,
+ perl-install/share/po/ky.po, perl-install/share/po/libDrakX.pot,
+ perl-install/share/po/lt.po, perl-install/share/po/ltg.po,
+ perl-install/share/po/lv.po, perl-install/share/po/mk.po,
+ perl-install/share/po/mn.po, perl-install/share/po/ms.po,
+ perl-install/share/po/mt.po, perl-install/share/po/nb.po,
+ perl-install/share/po/nl.po, perl-install/share/po/nn.po,
+ perl-install/share/po/pa_IN.po, perl-install/share/po/pl.po,
+ perl-install/share/po/pt.po, perl-install/share/po/pt_BR.po,
+ perl-install/share/po/ro.po, perl-install/share/po/ru.po,
+ perl-install/share/po/sc.po, perl-install/share/po/sk.po,
+ perl-install/share/po/sl.po, perl-install/share/po/sq.po,
+ perl-install/share/po/sr.po, perl-install/share/po/sr@Latn.po,
+ perl-install/share/po/sv.po, perl-install/share/po/ta.po,
+ perl-install/share/po/tg.po, perl-install/share/po/th.po,
+ perl-install/share/po/tl.po, perl-install/share/po/tr.po,
+ perl-install/share/po/uk.po, perl-install/share/po/uz.po,
+ perl-install/share/po/uz@Latn.po, perl-install/share/po/vi.po,
+ perl-install/share/po/wa.po, perl-install/share/po/zh_CN.po,
+ perl-install/share/po/zh_TW.po: sync with code
+
+2006-08-17 12:16 Olivier Blin <oblin at mandriva.com>
+
+ * make_boot_img: default to harddisk in isolinux for cdrom install
+ only
+
+2006-08-17 12:12 Marek Laane <bald at starman.ee>
+
+ * perl-install/install/share/po/et.po: Updated Estonian
+ translation.
+
+2006-08-17 12:08 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2006-08-17 11:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: remove options which are the
+ defaults
+
+2006-08-17 11:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/af.po, perl-install/share/po/am.po,
+ perl-install/share/po/ar.po, perl-install/share/po/az.po,
+ perl-install/share/po/be.po, perl-install/share/po/bg.po,
+ perl-install/share/po/bn.po, perl-install/share/po/br.po,
+ perl-install/share/po/bs.po, perl-install/share/po/ca.po,
+ perl-install/share/po/cs.po, perl-install/share/po/cy.po,
+ perl-install/share/po/da.po, perl-install/share/po/de.po,
+ perl-install/share/po/el.po, perl-install/share/po/eo.po,
+ perl-install/share/po/es.po, perl-install/share/po/et.po,
+ perl-install/share/po/eu.po, perl-install/share/po/fa.po,
+ perl-install/share/po/fi.po, perl-install/share/po/fr.po,
+ perl-install/share/po/fur.po, perl-install/share/po/ga.po,
+ perl-install/share/po/gl.po, perl-install/share/po/he.po,
+ perl-install/share/po/hi.po, perl-install/share/po/hr.po,
+ perl-install/share/po/hu.po, perl-install/share/po/id.po,
+ perl-install/share/po/is.po, perl-install/share/po/it.po,
+ perl-install/share/po/ja.po, perl-install/share/po/ko.po,
+ perl-install/share/po/ky.po, perl-install/share/po/libDrakX.pot,
+ perl-install/share/po/lt.po, perl-install/share/po/ltg.po,
+ perl-install/share/po/lv.po, perl-install/share/po/mk.po,
+ perl-install/share/po/mn.po, perl-install/share/po/ms.po,
+ perl-install/share/po/mt.po, perl-install/share/po/nb.po,
+ perl-install/share/po/nl.po, perl-install/share/po/nn.po,
+ perl-install/share/po/pa_IN.po, perl-install/share/po/pl.po,
+ perl-install/share/po/pt.po, perl-install/share/po/pt_BR.po,
+ perl-install/share/po/ro.po, perl-install/share/po/ru.po,
+ perl-install/share/po/sc.po, perl-install/share/po/sk.po,
+ perl-install/share/po/sl.po, perl-install/share/po/sq.po,
+ perl-install/share/po/sr.po, perl-install/share/po/sr@Latn.po,
+ perl-install/share/po/sv.po, perl-install/share/po/ta.po,
+ perl-install/share/po/tg.po, perl-install/share/po/th.po,
+ perl-install/share/po/tl.po, perl-install/share/po/tr.po,
+ perl-install/share/po/uk.po, perl-install/share/po/uz.po,
+ perl-install/share/po/uz@Latn.po, perl-install/share/po/vi.po,
+ perl-install/share/po/wa.po, perl-install/share/po/zh_CN.po,
+ perl-install/share/po/zh_TW.po: merge in typo fix
+
+2006-08-17 11:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: use a clearer warning message
+ for https proxies
+
+2006-08-17 11:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/vpn/openvpn.pm: fix typo
+
+2006-08-17 11:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/af.po, perl-install/share/po/am.po,
+ perl-install/share/po/ar.po, perl-install/share/po/az.po,
+ perl-install/share/po/be.po, perl-install/share/po/bg.po,
+ perl-install/share/po/bn.po, perl-install/share/po/br.po,
+ perl-install/share/po/bs.po, perl-install/share/po/ca.po,
+ perl-install/share/po/cs.po, perl-install/share/po/cy.po,
+ perl-install/share/po/da.po, perl-install/share/po/de.po,
+ perl-install/share/po/el.po, perl-install/share/po/eo.po,
+ perl-install/share/po/es.po, perl-install/share/po/et.po,
+ perl-install/share/po/eu.po, perl-install/share/po/fa.po,
+ perl-install/share/po/fi.po, perl-install/share/po/fr.po,
+ perl-install/share/po/fur.po, perl-install/share/po/ga.po,
+ perl-install/share/po/gl.po, perl-install/share/po/he.po,
+ perl-install/share/po/hi.po, perl-install/share/po/hr.po,
+ perl-install/share/po/hu.po, perl-install/share/po/id.po,
+ perl-install/share/po/is.po, perl-install/share/po/it.po,
+ perl-install/share/po/ja.po, perl-install/share/po/ko.po,
+ perl-install/share/po/ky.po, perl-install/share/po/libDrakX.pot,
+ perl-install/share/po/lt.po, perl-install/share/po/ltg.po,
+ perl-install/share/po/lv.po, perl-install/share/po/mk.po,
+ perl-install/share/po/mn.po, perl-install/share/po/ms.po,
+ perl-install/share/po/mt.po, perl-install/share/po/nb.po,
+ perl-install/share/po/nl.po, perl-install/share/po/nn.po,
+ perl-install/share/po/pa_IN.po, perl-install/share/po/pl.po,
+ perl-install/share/po/pt.po, perl-install/share/po/pt_BR.po,
+ perl-install/share/po/ro.po, perl-install/share/po/ru.po,
+ perl-install/share/po/sc.po, perl-install/share/po/sk.po,
+ perl-install/share/po/sl.po, perl-install/share/po/sq.po,
+ perl-install/share/po/sr.po, perl-install/share/po/sr@Latn.po,
+ perl-install/share/po/sv.po, perl-install/share/po/ta.po,
+ perl-install/share/po/tg.po, perl-install/share/po/th.po,
+ perl-install/share/po/tl.po, perl-install/share/po/tr.po,
+ perl-install/share/po/uk.po, perl-install/share/po/uz.po,
+ perl-install/share/po/uz@Latn.po, perl-install/share/po/vi.po,
+ perl-install/share/po/wa.po, perl-install/share/po/zh_CN.po,
+ perl-install/share/po/zh_TW.po: merge in typo fix
+
+2006-08-17 11:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: (get_printer_info) typo
+ fix (Per Øyvind Karlsen)
+
+2006-08-17 11:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: (get_printer_info) add a
+ missing bracket (Berthy)
+
+2006-08-17 11:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mygtk2.pm: (_gtk_any_Paned) homogeneous and spacing
+ are not supported by XPaned
+
+2006-08-17 11:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/de.po: typo fix (#24436)
+
+2006-08-17 10:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: use more explicit variable names,
+ and fix "unknown line ..." (cf logs in bug #24320)
+
+2006-08-17 09:24 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/cups.pm: - Fixed dynamic PPD file
+ generation during installation
+
+2006-08-17 09:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: fix log message
+
+2006-08-17 09:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/various.pm: only enable Composite by
+ default on i810 since
+ - it doesn't work on proprietary nvidia
+ - it doesn't work nicely on radeon
+ - it conflicts with DRI on fglrx
+ - it conflicts with XGL
+
+2006-08-17 09:02 Pixel <pixel at mandriva.com>
+
+ * Makefile: empty commit not allowed :-/
+
+2006-08-17 08:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/various.pm: Clone option on intel and nvidia
+
+2006-08-17 08:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/various.pm: Clone option on intel and nvidia
+
+2006-08-17 00:51 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/standalone/po/nb.po: Finish translating last
+ strings to nb
+
+2006-08-16 23:23 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: More work done on nb translation..
+
+2006-08-16 23:15 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po, perl-install/standalone/po/id.po:
+ Updated Indonesian files
+
+2006-08-16 21:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/ethernet.pm: remove useless space
+ * perl-install/network/connection/ethernet.pm: fix typo
+
+2006-08-16 19:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.52-1mdv2007.0
+
+2006-08-16 19:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/diskdrake/hd_gtk.pm: fix crash
+
+2006-08-16 18:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/libDrakX.pot: fix badly generated file :-(
+
+2006-08-16 18:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/libDrakX.pot: oops...
+
+2006-08-16 18:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: install x11-driver-input-evdev when needed
+
+2006-08-16 17:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: perl_checker compliance
+
+2006-08-16 16:54 berthy
+
+ * perl-install/share/po/fr.po: Update french translation
+
+2006-08-16 16:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm, perl-install/mouse.pm: add a evdev
+ entry for mice with an horizontal wheel
+ (still need inverting buttons 6 & 7 though)
+
+2006-08-16 15:56 Pixel <pixel at mandriva.com>
+
+ * kernel/list_modules.pm,
+ perl-install/install/steps_interactive.pm: hid is no more for
+ some time, tis usbhid nowadays
+
+2006-08-16 15:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm, perl-install/modules.pm,
+ perl-install/mouse.pm: drop getSynapticsTouchpads(), setting
+ fields in the result of getInputDevices() instead (useful for
+ next commit)
+
+2006-08-16 15:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/de.po: update (Nicolas Bauer)
+
+2006-08-16 15:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: simplify
+
+2006-08-16 15:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: use {Emulate3Buttons} where it should be
+
+2006-08-16 14:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm, perl-install/standalone/mousedrake:
+ restore choosing Emulate3Buttons, creating field Emulate3Buttons
+
+2006-08-16 14:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm, perl-install/standalone/harddrake2:
+ rename EMULATEWHEEL as EmulateWheel (to make it clearer that
+ it's for X)
+
+2006-08-16 14:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/br.po: update
+
+2006-08-16 14:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: factorize
+
+2006-08-16 14:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: simplify
+
+2006-08-16 14:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/mousedrake: no need to handle modules by
+ hand (if it is really needed, we need to setup it)
+
+2006-08-16 14:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_gtk.pm, perl-install/mouse.pm,
+ perl-install/standalone/harddrake2,
+ perl-install/standalone/mousedrake: rename {XMOUSETYPE} into
+ {Protocol} to be more alike what xorg uses and to make it more
+ clear that it doesn't end up in sysconfig/mouse
+
+2006-08-16 14:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/hd_gtk.pm: cleanup and use mygtk2 (for
+ gtknew())
+
+2006-08-16 13:59 felipe
+
+ * perl-install/standalone/po/pt_BR.po: translating to pt_BR
+
+2006-08-16 13:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: force boolean context
+ * perl-install/mouse.pm: simplify: take the FULLNAME as the
+ reference or ... well ... things won't be so nice
+
+2006-08-16 13:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: remove obsolete case (but ensure that
+ usbtable only talk about Mouse:xxx|yyy where xxx|yyy exist in
+ our list)
+
+2006-08-16 13:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: simplify
+
+2006-08-16 13:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2006-08-16 13:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/fr.po: update
+
+2006-08-16 13:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/ru.po: typo fix
+
+2006-08-16 13:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: simplify
+
+2006-08-16 13:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: simplify
+
+2006-08-16 13:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/af.po,
+ perl-install/standalone/po/ar.po,
+ perl-install/standalone/po/az.po,
+ perl-install/standalone/po/be.po,
+ perl-install/standalone/po/bg.po,
+ perl-install/standalone/po/bn.po,
+ perl-install/standalone/po/bs.po,
+ perl-install/standalone/po/ca.po,
+ perl-install/standalone/po/cs.po,
+ perl-install/standalone/po/cy.po,
+ perl-install/standalone/po/da.po,
+ perl-install/standalone/po/de.po,
+ perl-install/standalone/po/el.po,
+ perl-install/standalone/po/eo.po,
+ perl-install/standalone/po/es.po,
+ perl-install/standalone/po/eu.po,
+ perl-install/standalone/po/fa.po,
+ perl-install/standalone/po/fi.po,
+ perl-install/standalone/po/fur.po,
+ perl-install/standalone/po/ga.po,
+ perl-install/standalone/po/hi.po,
+ perl-install/standalone/po/hr.po,
+ perl-install/standalone/po/hu.po,
+ perl-install/standalone/po/is.po,
+ perl-install/standalone/po/it.po,
+ perl-install/standalone/po/ko.po,
+ perl-install/standalone/po/ky.po,
+ perl-install/standalone/po/lt.po,
+ perl-install/standalone/po/ltg.po,
+ perl-install/standalone/po/lv.po,
+ perl-install/standalone/po/mk.po,
+ perl-install/standalone/po/mn.po,
+ perl-install/standalone/po/ms.po,
+ perl-install/standalone/po/mt.po,
+ perl-install/standalone/po/nl.po,
+ perl-install/standalone/po/nn.po,
+ perl-install/standalone/po/pa_IN.po,
+ perl-install/standalone/po/pl.po,
+ perl-install/standalone/po/ro.po,
+ perl-install/standalone/po/sc.po,
+ perl-install/standalone/po/sk.po,
+ perl-install/standalone/po/sl.po,
+ perl-install/standalone/po/sq.po,
+ perl-install/standalone/po/sr.po,
+ perl-install/standalone/po/sr@Latn.po,
+ perl-install/standalone/po/sv.po,
+ perl-install/standalone/po/ta.po,
+ perl-install/standalone/po/tg.po,
+ perl-install/standalone/po/th.po,
+ perl-install/standalone/po/tl.po,
+ perl-install/standalone/po/tr.po,
+ perl-install/standalone/po/uk.po,
+ perl-install/standalone/po/vi.po,
+ perl-install/standalone/po/wa.po,
+ perl-install/standalone/po/zh_TW.po: merge in translations from
+ share/po
+
+2006-08-16 13:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/af.po, perl-install/share/po/am.po,
+ perl-install/share/po/ar.po, perl-install/share/po/az.po,
+ perl-install/share/po/be.po, perl-install/share/po/bg.po,
+ perl-install/share/po/bn.po, perl-install/share/po/br.po,
+ perl-install/share/po/bs.po, perl-install/share/po/ca.po,
+ perl-install/share/po/cs.po, perl-install/share/po/cy.po,
+ perl-install/share/po/da.po, perl-install/share/po/de.po,
+ perl-install/share/po/el.po, perl-install/share/po/eo.po,
+ perl-install/share/po/es.po, perl-install/share/po/et.po,
+ perl-install/share/po/eu.po, perl-install/share/po/fa.po,
+ perl-install/share/po/fi.po, perl-install/share/po/fr.po,
+ perl-install/share/po/ga.po, perl-install/share/po/gl.po,
+ perl-install/share/po/he.po, perl-install/share/po/hi.po,
+ perl-install/share/po/hr.po, perl-install/share/po/hu.po,
+ perl-install/share/po/id.po, perl-install/share/po/is.po,
+ perl-install/share/po/it.po, perl-install/share/po/ja.po,
+ perl-install/share/po/ko.po, perl-install/share/po/ky.po,
+ perl-install/share/po/libDrakX.pot, perl-install/share/po/lt.po,
+ perl-install/share/po/ltg.po, perl-install/share/po/lv.po,
+ perl-install/share/po/mk.po, perl-install/share/po/mn.po,
+ perl-install/share/po/ms.po, perl-install/share/po/mt.po,
+ perl-install/share/po/nb.po, perl-install/share/po/nl.po,
+ perl-install/share/po/nn.po, perl-install/share/po/pa_IN.po,
+ perl-install/share/po/pl.po, perl-install/share/po/pt.po,
+ perl-install/share/po/pt_BR.po, perl-install/share/po/ro.po,
+ perl-install/share/po/ru.po, perl-install/share/po/sc.po,
+ perl-install/share/po/sk.po, perl-install/share/po/sl.po,
+ perl-install/share/po/sq.po, perl-install/share/po/sr.po,
+ perl-install/share/po/sr@Latn.po, perl-install/share/po/sv.po,
+ perl-install/share/po/ta.po, perl-install/share/po/tg.po,
+ perl-install/share/po/th.po, perl-install/share/po/tl.po,
+ perl-install/share/po/tr.po, perl-install/share/po/uk.po,
+ perl-install/share/po/uz.po, perl-install/share/po/uz@Latn.po,
+ perl-install/share/po/vi.po, perl-install/share/po/wa.po,
+ perl-install/share/po/zh_CN.po, perl-install/share/po/zh_TW.po:
+ merge in translations from standalone/po
+
+2006-08-16 13:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/af.po,
+ perl-install/standalone/po/am.po,
+ perl-install/standalone/po/ar.po,
+ perl-install/standalone/po/az.po,
+ perl-install/standalone/po/be.po,
+ perl-install/standalone/po/bg.po,
+ perl-install/standalone/po/bn.po,
+ perl-install/standalone/po/br.po,
+ perl-install/standalone/po/bs.po,
+ perl-install/standalone/po/ca.po,
+ perl-install/standalone/po/cs.po,
+ perl-install/standalone/po/cy.po,
+ perl-install/standalone/po/da.po,
+ perl-install/standalone/po/de.po,
+ perl-install/standalone/po/el.po,
+ perl-install/standalone/po/eo.po,
+ perl-install/standalone/po/es.po,
+ perl-install/standalone/po/et.po,
+ perl-install/standalone/po/eu.po,
+ perl-install/standalone/po/fa.po,
+ perl-install/standalone/po/fi.po,
+ perl-install/standalone/po/fr.po,
+ perl-install/standalone/po/fur.po,
+ perl-install/standalone/po/ga.po,
+ perl-install/standalone/po/gl.po,
+ perl-install/standalone/po/he.po,
+ perl-install/standalone/po/hi.po,
+ perl-install/standalone/po/hr.po,
+ perl-install/standalone/po/hu.po,
+ perl-install/standalone/po/id.po,
+ perl-install/standalone/po/is.po,
+ perl-install/standalone/po/it.po,
+ perl-install/standalone/po/ja.po,
+ perl-install/standalone/po/ko.po,
+ perl-install/standalone/po/ky.po,
+ perl-install/standalone/po/libDrakX-standalone.pot,
+ perl-install/standalone/po/lt.po,
+ perl-install/standalone/po/ltg.po,
+ perl-install/standalone/po/lv.po,
+ perl-install/standalone/po/mk.po,
+ perl-install/standalone/po/mn.po,
+ perl-install/standalone/po/ms.po,
+ perl-install/standalone/po/mt.po,
+ perl-install/standalone/po/nb.po,
+ perl-install/standalone/po/nl.po,
+ perl-install/standalone/po/nn.po,
+ perl-install/standalone/po/pa_IN.po,
+ perl-install/standalone/po/pl.po,
+ perl-install/standalone/po/pt.po,
+ perl-install/standalone/po/pt_BR.po,
+ perl-install/standalone/po/ro.po,
+ perl-install/standalone/po/ru.po,
+ perl-install/standalone/po/sc.po,
+ perl-install/standalone/po/sk.po,
+ perl-install/standalone/po/sl.po,
+ perl-install/standalone/po/sq.po,
+ perl-install/standalone/po/sr.po,
+ perl-install/standalone/po/sr@Latn.po,
+ perl-install/standalone/po/sv.po,
+ perl-install/standalone/po/ta.po,
+ perl-install/standalone/po/tg.po,
+ perl-install/standalone/po/th.po,
+ perl-install/standalone/po/tl.po,
+ perl-install/standalone/po/tr.po,
+ perl-install/standalone/po/uk.po,
+ perl-install/standalone/po/uz.po,
+ perl-install/standalone/po/uz@Latn.po,
+ perl-install/standalone/po/vi.po,
+ perl-install/standalone/po/wa.po,
+ perl-install/standalone/po/zh_CN.po,
+ perl-install/standalone/po/zh_TW.po: sync with code
+
+2006-08-16 13:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/ru.po: typo fix
+
+2006-08-16 13:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: - drop XEMU3 and WHEEL (were only used to
+ compute number of buttons which we already know from FULLNAME)
+ - don't write XMOUSETYPE in sysconfig/mouse (we get it back from
+ FULLNAME)
+
+2006-08-16 13:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/mousedrake: don't ask wether we want to
+ emulate 3rd button on 2 buttons mice since it doesn't change
+ anything currently
+
+2006-08-16 13:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/af.po, perl-install/share/po/am.po,
+ perl-install/share/po/ar.po, perl-install/share/po/az.po,
+ perl-install/share/po/be.po, perl-install/share/po/bg.po,
+ perl-install/share/po/bn.po, perl-install/share/po/br.po,
+ perl-install/share/po/bs.po, perl-install/share/po/ca.po,
+ perl-install/share/po/cs.po, perl-install/share/po/cy.po,
+ perl-install/share/po/da.po, perl-install/share/po/de.po,
+ perl-install/share/po/el.po, perl-install/share/po/eo.po,
+ perl-install/share/po/es.po, perl-install/share/po/et.po,
+ perl-install/share/po/eu.po, perl-install/share/po/fa.po,
+ perl-install/share/po/fi.po, perl-install/share/po/fr.po,
+ perl-install/share/po/fur.po, perl-install/share/po/ga.po,
+ perl-install/share/po/gl.po, perl-install/share/po/he.po,
+ perl-install/share/po/hi.po, perl-install/share/po/hr.po,
+ perl-install/share/po/hu.po, perl-install/share/po/id.po,
+ perl-install/share/po/is.po, perl-install/share/po/it.po,
+ perl-install/share/po/ja.po, perl-install/share/po/ko.po,
+ perl-install/share/po/ky.po, perl-install/share/po/libDrakX.pot,
+ perl-install/share/po/lt.po, perl-install/share/po/ltg.po,
+ perl-install/share/po/lv.po, perl-install/share/po/mk.po,
+ perl-install/share/po/mn.po, perl-install/share/po/ms.po,
+ perl-install/share/po/mt.po, perl-install/share/po/nb.po,
+ perl-install/share/po/nl.po, perl-install/share/po/nn.po,
+ perl-install/share/po/pa_IN.po, perl-install/share/po/pl.po,
+ perl-install/share/po/pt.po, perl-install/share/po/pt_BR.po,
+ perl-install/share/po/ro.po, perl-install/share/po/ru.po,
+ perl-install/share/po/sc.po, perl-install/share/po/sk.po,
+ perl-install/share/po/sl.po, perl-install/share/po/sq.po,
+ perl-install/share/po/sr.po, perl-install/share/po/sr@Latn.po,
+ perl-install/share/po/sv.po, perl-install/share/po/ta.po,
+ perl-install/share/po/tg.po, perl-install/share/po/th.po,
+ perl-install/share/po/tl.po, perl-install/share/po/tr.po,
+ perl-install/share/po/uk.po, perl-install/share/po/uz.po,
+ perl-install/share/po/uz@Latn.po, perl-install/share/po/vi.po,
+ perl-install/share/po/wa.po, perl-install/share/po/zh_CN.po,
+ perl-install/share/po/zh_TW.po: sync with code
+
+2006-08-16 13:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: stop messing with buttons ordering
+ (it was done to map the MsExplorer mouse two unused buttons on
+ the horiz wheel, but it's not used that way anyway)
+
+2006-08-16 13:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: (Mount_point) better
+ looking dialog
+
+2006-08-16 12:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table/raw.pm: ensure we don't die
+ computing the number of cylinders
+ (the bug occured when HDIO_GETGEO succeeds, but returning 0)
+ (#24096, #24042)
+
+2006-08-16 12:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: fix regenerating the
+ translation catalogs (don't use interpolated translated string,
+ use %s or %d instead)
+
+2006-08-16 12:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/diskdrake/hd_gtk.pm: (per_entry_info_box) nicer
+ layout: add some border
+
+2006-08-16 12:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * docs/HACKING: we now cuse Xnest rather Xvfb
+
+2006-08-16 12:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: auxmouse was only used for synaptics,
+ which don't have more than 5 buttons, so
+ /etc/X11/xinit.d/auxmouse_buttons was not generated, no need to
+ handle it
+
+2006-08-16 12:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.51-1mdv2007.0
+ * perl-install/drakxtools.spec: requires a fixed urpmi
+
+2006-08-16 12:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: allow to find PCMCIA devices in
+ sysfs using their modalias as match
+
+2006-08-16 12:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm, perl-install/standalone/harddrake2:
+ replace {auxmouse} with {synaptics} since synaptics is handled
+ very specially
+ (this simplifies the code :)
+
+2006-08-16 12:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm,
+ perl-install/network/connection/ethernet.pm,
+ perl-install/network/ndiswrapper.pm: rename
+ get_sysfs_device_id_map as get_ids_from_sysfs_device and make it
+ return sysfs values
+
+2006-08-16 12:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/hd_gtk.pm: better use internal_error()
+
+2006-08-16 11:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: be consistent
+
+2006-08-16 11:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/diskdrake/hd_gtk.pm: (create_buttons4partitions)
+ typo fix
+
+2006-08-16 11:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/diskdrake/hd_gtk.pm: (createOrChangeType) kill
+ useless arg
+
+2006-08-16 11:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (pcmcia_controller_probe) do not
+ return ()
+ * perl-install/harddrake/data.pm: (f) filter out undefined values
+ (some detectors return a list, some
+ others return a scalar which results in undev in list context
+ :-( )
+
+2006-08-16 11:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/diskdrake/hd_gtk.pm: (create_buttons4partitions)
+ display unknow size if needed
+ * perl-install/diskdrake/hd_gtk.pm: (createOrChangeType) rather
+ than popping a warning saying "just do this", just
+ do it directly
+ * perl-install/diskdrake/hd_gtk.pm: (createOrChangeType) set
+ missing titles
+ * perl-install/diskdrake/hd_gtk.pm: (per_entry_info_box)
+ beautifully align the data label thus stopinf from
+ flickering on device change due to different string size
+ * perl-install/diskdrake/interactive.pm:
+ (Create,Label,Mount_point_raw_hd,Options,Resize,Type) HIG-ize
+ some dialogs
+
+2006-08-16 11:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: (ask_fromW) better align labels
+ (eg it looked bad with a Gtk2::HScale eg in
+ diskdrake->resize)
+ * perl-install/diskdrake/interactive.pm: (Resize) HIG look,
+ explicitely display min & max sizes
+
+2006-08-16 11:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/diskdrake/hd_gtk.pm: (create_buttons4partitions)
+ display size on toggle buttons
+
+2006-08-16 11:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (pcmcia_controller_probe) do not
+ detect "undef" drivered pcmcia controller on
+ desktop machines...
+
+2006-08-16 11:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/af.po,
+ perl-install/standalone/po/am.po,
+ perl-install/standalone/po/ar.po,
+ perl-install/standalone/po/az.po,
+ perl-install/standalone/po/be.po,
+ perl-install/standalone/po/bg.po,
+ perl-install/standalone/po/bn.po,
+ perl-install/standalone/po/br.po,
+ perl-install/standalone/po/bs.po,
+ perl-install/standalone/po/ca.po,
+ perl-install/standalone/po/cs.po,
+ perl-install/standalone/po/cy.po,
+ perl-install/standalone/po/da.po,
+ perl-install/standalone/po/de.po,
+ perl-install/standalone/po/el.po,
+ perl-install/standalone/po/eo.po,
+ perl-install/standalone/po/es.po,
+ perl-install/standalone/po/et.po,
+ perl-install/standalone/po/eu.po,
+ perl-install/standalone/po/fa.po,
+ perl-install/standalone/po/fi.po,
+ perl-install/standalone/po/fr.po,
+ perl-install/standalone/po/fur.po,
+ perl-install/standalone/po/ga.po,
+ perl-install/standalone/po/gl.po,
+ perl-install/standalone/po/he.po,
+ perl-install/standalone/po/hi.po,
+ perl-install/standalone/po/hr.po,
+ perl-install/standalone/po/hu.po,
+ perl-install/standalone/po/id.po,
+ perl-install/standalone/po/is.po,
+ perl-install/standalone/po/it.po,
+ perl-install/standalone/po/ja.po,
+ perl-install/standalone/po/ko.po,
+ perl-install/standalone/po/ky.po,
+ perl-install/standalone/po/libDrakX-standalone.pot,
+ perl-install/standalone/po/lt.po,
+ perl-install/standalone/po/ltg.po,
+ perl-install/standalone/po/lv.po,
+ perl-install/standalone/po/mk.po,
+ perl-install/standalone/po/mn.po,
+ perl-install/standalone/po/ms.po,
+ perl-install/standalone/po/mt.po,
+ perl-install/standalone/po/nb.po,
+ perl-install/standalone/po/nl.po,
+ perl-install/standalone/po/nn.po,
+ perl-install/standalone/po/pa_IN.po,
+ perl-install/standalone/po/pl.po,
+ perl-install/standalone/po/pt.po,
+ perl-install/standalone/po/pt_BR.po,
+ perl-install/standalone/po/ro.po,
+ perl-install/standalone/po/ru.po,
+ perl-install/standalone/po/sc.po,
+ perl-install/standalone/po/sk.po,
+ perl-install/standalone/po/sl.po,
+ perl-install/standalone/po/sq.po,
+ perl-install/standalone/po/sr.po,
+ perl-install/standalone/po/sr@Latn.po,
+ perl-install/standalone/po/sv.po,
+ perl-install/standalone/po/ta.po,
+ perl-install/standalone/po/tg.po,
+ perl-install/standalone/po/th.po,
+ perl-install/standalone/po/tl.po,
+ perl-install/standalone/po/tr.po,
+ perl-install/standalone/po/uk.po,
+ perl-install/standalone/po/uz.po,
+ perl-install/standalone/po/uz@Latn.po,
+ perl-install/standalone/po/vi.po,
+ perl-install/standalone/po/wa.po,
+ perl-install/standalone/po/zh_CN.po,
+ perl-install/standalone/po/zh_TW.po: do not hardcode copyright
+ years
+ * perl-install/standalone/drakhelp: stop messing up with
+ translations each year
+ * perl-install/standalone/XFdrake,
+ perl-install/standalone/autosetupprintqueues,
+ perl-install/standalone/diskdrake,
+ perl-install/standalone/drakTermServ,
+ perl-install/standalone/drakautoinst,
+ perl-install/standalone/drakbackup,
+ perl-install/standalone/drakboot,
+ perl-install/standalone/drakbug,
+ perl-install/standalone/drakconnect,
+ perl-install/standalone/drakedm,
+ perl-install/standalone/drakfirewall,
+ perl-install/standalone/drakfloppy,
+ perl-install/standalone/drakfont,
+ perl-install/standalone/drakgw,
+ perl-install/standalone/drakhelp,
+ perl-install/standalone/drakhosts,
+ perl-install/standalone/draknfs,
+ perl-install/standalone/drakproxy,
+ perl-install/standalone/drakpxe,
+ perl-install/standalone/drakroam,
+ perl-install/standalone/draksambashare,
+ perl-install/standalone/draksec,
+ perl-install/standalone/draksound,
+ perl-install/standalone/drakupdate_fstab,
+ perl-install/standalone/drakvpn-old,
+ perl-install/standalone/drakxtv,
+ perl-install/standalone/fileshareset,
+ perl-install/standalone/finish-install.xsetup,
+ perl-install/standalone/listsupportedprinters,
+ perl-install/standalone/logdrake,
+ perl-install/standalone/net_monitor,
+ perl-install/standalone/printerdrake,
+ perl-install/standalone/scannerdrake: bump copyright years
+
+2006-08-16 11:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: introduce a "USB mass storage"
+ class in order to catch some devices (#21836)
+ * perl-install/interactive.pm: (ask_okcancel_) $::no_separator is
+ dead
+
+2006-08-16 11:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: symlink /dev/mouse1 for auxmouse is unused
+
+2006-08-16 11:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect: HIG: align labels
+
+2006-08-16 11:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: perl_checker compliance
+
+2006-08-16 11:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/main.pm,
+ perl-install/network/drakfirewall.pm,
+ perl-install/standalone/drakTermServ,
+ perl-install/standalone/drakgw,
+ perl-install/standalone/drakproxy,
+ perl-install/standalone/drakroam,
+ perl-install/standalone/draksplash2: HIG: add missing titles
+ * perl-install/scanner.pm, perl-install/standalone/drakbackup,
+ perl-install/standalone/drakclock,
+ perl-install/standalone/drakhosts,
+ perl-install/standalone/draknfs,
+ perl-install/standalone/drakperm,
+ perl-install/standalone/draksambashare,
+ perl-install/standalone/draksec,
+ perl-install/standalone/draksplash,
+ perl-install/standalone/drakups,
+ perl-install/standalone/harddrake2,
+ perl-install/standalone/scannerdrake: HIG: fix unmeaningfull
+ titles
+
+2006-08-16 11:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakconnect,
+ perl-install/standalone/drakfloppy,
+ perl-install/standalone/drakfont,
+ perl-install/standalone/net_applet: simplify through killing
+ useless set_title() calls
+
+2006-08-16 11:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (create_box_with_title) don't pack an
+ horizontal separator; it both doesn't look
+ nice and violates HIG
+
+2006-08-16 11:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mygtk2.pm: (_gtk__VPaned, _gtk__HPaned,
+ _gtk_any_Paned) add support for Gtk2::[HV]Paned widgets
+
+2006-08-16 10:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: no need to explicitly load
+ synaptics X module
+
+2006-08-16 10:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm, perl-install/mouse.pm: synaptics
+ touchpad do not need "Protocol auto-dev" nor "Device ..."
+ (need tests on ALPS to ensure it is the same)
+
+2006-08-16 00:40 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: Do some partial work on nb
+ translation..
+
+2006-08-16 00:23 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/install/share/po/nb.po: Completed nb translation
+
+2006-08-16 00:15 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * live/draklive-install/po/nb.po: Completed nb translation
+
+2006-08-15 18:26 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/install/share/po/zh_TW.po: updated po file
+
+2006-08-15 17:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: some comments about the REL= and
+ KEY= values for mice
+
+2006-08-15 16:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: add some comment decrypting
+ input/devices for TouchPad/GlidePoints
+
+2006-08-15 16:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: better regexp
+
+2006-08-15 15:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: at least give a chance to use input/mice
+ on sparc (it should not heart)
+
+2006-08-15 15:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: rely on getInputDevices() to choose
+ between usb mouce and busmouse for ppc
+
+2006-08-15 15:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: cook the use of "REL" (ie
+ relatives)
+
+2006-08-15 14:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm, perl-install/fs.pm,
+ perl-install/fs/wild_device.pm: handle /dev/disk/by-label/xxx
+ symlink in fstab
+
+2006-08-15 14:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: fix comment
+
+2006-08-15 13:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: - workaround in getSCSI() when
+ the device can't be found. don't really how to really fix
+ detection of the DAT below
+ - move things around to make it (a little) more clear
+
+ % ls -l /sys/bus/scsi/devices/1:0:3:0/
+ total 0
+ lrwxrwxrwx 1 root root 0 Aug 15 17:02 bus ->
+ ../../../../../../bus/scsi/
+ --w------- 1 root root 4096 Aug 15 17:03 delete
+ -r--r--r-- 1 root root 4096 Aug 15 17:03 device_blocked
+ lrwxrwxrwx 1 root root 0 Aug 15 17:02 driver ->
+ ../../../../../../bus/scsi/drivers/st/
+ -r--r--r-- 1 root root 4096 Aug 15 17:03 iocounterbits
+ -r--r--r-- 1 root root 4096 Aug 15 17:03 iodone_cnt
+ -r--r--r-- 1 root root 4096 Aug 15 17:02 ioerr_cnt
+ -r--r--r-- 1 root root 4096 Aug 15 17:03 iorequest_cnt
+ -r--r--r-- 1 root root 4096 Aug 15 17:03 model
+ drwxr-xr-x 2 root root 0 Aug 15 17:03 power/
+ -r--r--r-- 1 root root 4096 Aug 15 17:03 queue_depth
+ -r--r--r-- 1 root root 4096 Aug 15 17:03 queue_type
+ --w------- 1 root root 4096 Aug 15 17:03 rescan
+ -r--r--r-- 1 root root 4096 Aug 15 17:03 rev
+ lrwxrwxrwx 1 root root 0 Aug 15 17:03 scsi_device:1:0:3:0 ->
+ ../../../../../../class/scsi_device/1:0:3:0/
+ -r--r--r-- 1 root root 4096 Aug 15 17:03 scsi_level
+ lrwxrwxrwx 1 root root 0 Aug 15 17:03 scsi_tape:nst0 ->
+ ../../../../../../class/scsi_tape/nst0/
+ lrwxrwxrwx 1 root root 0 Aug 15 17:03 scsi_tape:nst0a ->
+ ../../../../../../class/scsi_tape/nst0a/
+ lrwxrwxrwx 1 root root 0 Aug 15 17:03 scsi_tape:nst0l ->
+ ../../../../../../class/scsi_tape/nst0l/
+ lrwxrwxrwx 1 root root 0 Aug 15 17:03 scsi_tape:nst0m ->
+ ../../../../../../class/scsi_tape/nst0m/
+ lrwxrwxrwx 1 root root 0 Aug 15 17:03 scsi_tape:st0 ->
+ ../../../../../../class/scsi_tape/st0/
+ lrwxrwxrwx 1 root root 0 Aug 15 17:03 scsi_tape:st0a ->
+ ../../../../../../class/scsi_tape/st0a/
+ lrwxrwxrwx 1 root root 0 Aug 15 17:03 scsi_tape:st0l ->
+ ../../../../../../class/scsi_tape/st0l/
+ lrwxrwxrwx 1 root root 0 Aug 15 17:03 scsi_tape:st0m ->
+ ../../../../../../class/scsi_tape/st0m/
+ -rw-r--r-- 1 root root 4096 Aug 15 17:03 state
+ lrwxrwxrwx 1 root root 0 Aug 15 17:03 tape ->
+ ../../../../../../class/scsi_tape/st0/
+ -rw-r--r-- 1 root root 4096 Aug 15 17:03 timeout
+ -r--r--r-- 1 root root 4096 Aug 15 17:02 type
+ --w------- 1 root root 4096 Aug 15 17:03 uevent
+ -r--r--r-- 1 root root 4096 Aug 15 17:02 vendor
+
+2006-08-15 13:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: make it clearer we want to emulate 3rd
+ button when using wheel emulation
+
+2006-08-15 13:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: fix copyright and mail address
+
+2006-08-15 13:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: don't mess with auxmouse buttons ordering
+ (hopefully not needed anymore, otherwise better fix is
+ ButtonMapping)
+
+2006-08-15 13:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: rework load_modules()
+
+2006-08-15 12:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: /dev/input/mice really exports
+ ExplorerPS/2 protocol (cf mousedev.c)
+
+2006-08-15 12:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: detect(): re-indent and re-structure
+
+2006-08-15 12:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: use detect_devices::getInputDevices()
+
+2006-08-15 12:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: get info from "B: ..." lines
+
+2006-08-15 12:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: rework getInputDevices()
+
+2006-08-15 11:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps.pm: set the language after setting
+ locale->{utf8} if needed (only for auto_installs which do not
+ precise utf8 or not)
+
+2006-08-15 09:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: don't set device_alias from device in any
+ case (or this need more explainations)
+
+2006-08-14 22:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: add kernel-legacy in
+ analyse_kernel_name
+
+2006-08-14 22:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/install2.pm: don't vivify $o->{locale}
+
+2006-08-14 20:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: don't bother looking for "/" on
+ remote fs (can happen in weird cases)
+
+2006-08-14 20:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/format.pm: log the mkfs.ext2 call
+
+2006-08-14 20:19 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/share/po/ru.po: updated translation
+
+2006-08-14 20:18 Pavel Maryanov <acid_jack at ukr.net>
+
+ * live/draklive-install/po/ru.po: updated translation
+
+2006-08-14 19:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: fix log message
+
+2006-08-14 19:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/install2.pm, perl-install/lang.pm: simplify
+ lang::set() (esp. for install)
+
+2006-08-14 19:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: move is deprecated and globetrotter do not
+ use move::handleI18NClp()
+
+2006-08-14 18:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: don't die when failing to select a
+ package already installed or selected
+
+2006-08-14 18:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: move "computing installed flags and
+ size of installed packages" before selecting packages
+
+2006-08-14 17:11 Pixel <pixel at mandriva.com>
+
+ * kernel/update_kernel: we don't want *four* BOOT kernels, take
+ the last one
+
+2006-08-14 16:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: fix typo
+
+2006-08-14 16:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: startx.autologin is now in /usr/bin
+
+2006-08-14 14:17 Warly <warly at mandriva.com>
+
+ * live/One/config/live.cfg: config used for beta2
+
+2006-08-14 10:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: perl_checker compliance
+
+2006-08-14 10:52 Pixel <pixel at mandriva.com>
+
+ * tools/mdkinst_stage2_tool: handle missing
+ create_compressed_fs/extract_compressed_fs
+
+2006-08-14 10:44 Pixel <pixel at mandriva.com>
+
+ * tools/mdkinst_stage2_tool: make it more clear that we try to
+ mount mdkinst.clp.iso
+ * tools/mdkinst_stage2_tool: don't create dir if loopback mount
+ fail (--from-clp)
+
+2006-08-14 10:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: when analysing /tmp/image
+ symlink, we were looking for "xxxinstall" (eg:
+ cdimage), it is now "media" (i forgot to change this one when
+ switching from
+ nfsimage/cdimage/hdimage to media)
+
+2006-08-14 10:17 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/standalone/po/ru.po: updated translation
+
+2006-08-14 01:26 mmodem
+
+ * perl-install/share/po/pt.po:
+
+2006-08-14 00:33 mmodem
+
+ * perl-install/share/po/pt.po:
+
+2006-08-13 17:12 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/install/share/po/ru.po: updated translation
+
+2006-08-13 08:30 Warly <warly at mandriva.com>
+
+ * live/One/config/rpmsrate: add extra openoffice languages
+
+2006-08-12 10:44 Pixel <pixel at mandriva.com>
+
+ * ChangeLog:
+
+2006-08-12 10:13 Warly <warly at mandriva.com>
+
+ * perl-install/detect_devices.pm: fix typo
+
+2006-08-12 10:13 Warly <warly at mandriva.com>
+
+ * perl-install/detect_devices.pm: fix typo
+
+2006-08-11 18:45 felipe
+
+ * perl-install/standalone/po/pt_BR.po: translated by Salvador
+
+2006-08-11 17:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/various.pm: (handle_May_Need_ForceBIOS)
+ further simplify it
+
+2006-08-11 17:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/various.pm: better formatting of the message
+
+2006-08-11 16:51 Pixel <pixel at mandriva.com>
+
+ * ChangeLog:
+
+2006-08-11 16:50 Pixel <pixel at mandriva.com>
+
+ * kernel/update_kernel, perl-install/install/pkgs.pm,
+ perl-install/standalone/drakTermServ: adapt to new kernels
+ (-i586-up-1GB is now -legacy, standard kernel is smp but not
+ 64GB anymore)
+
+2006-08-11 16:40 Pixel <pixel at mandriva.com>
+
+ * ChangeLog:
+
+2006-08-11 14:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: document somewhat the
+ rpmsrate format
+
+2006-08-11 14:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: decrease priority of
+ alsa-plugins
+
+2006-08-11 16:50 Pixel <pixel at mandriva.com>
+
+ * kernel/update_kernel, perl-install/install/pkgs.pm,
+ perl-install/standalone/drakTermServ: adapt to new kernels
+ (-i586-up-1GB is now -legacy, standard kernel is smp but not
+ 64GB anymore)
+
+2006-08-11 16:40 Pixel <pixel at mandriva.com>
+
+ * ChangeLog:
+
+2006-08-11 14:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: document somewhat the
+ rpmsrate format
+
+2006-08-11 14:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: decrease priority of
+ alsa-plugins
+
+2006-08-11 14:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix bad translation
+
+2006-08-11 14:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: document somewhat the
+ rpmsrate format
+
+2006-08-11 14:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: decrease priority of
+ alsa-plugins
+
+2006-08-11 14:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix bad translation
+
+2006-08-11 12:09 Warly <warly at mandriva.com>
+
+ * perl-install/install/pixmaps/logo-mandriva.png: new logo
+
+2006-08-11 10:27 Pixel <pixel at mandriva.com>
+
+ * docs/HACKING, perl-install/install/share/list.xml: use Ia Ora
+ instead of Galaxy (theme)
+
+2006-08-11 10:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/fonts.tar.bz2,
+ perl-install/install/steps_gtk.pm: adapt to new fonts location
+
+2006-08-11 10:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: adapt to new fonts location
+
+2006-08-11 10:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/gtk.pm: adapt to new font location
+
+2006-08-11 10:06 Pixel <pixel at mandriva.com>
+
+ * tools/install-xml-file-list: handle spaces in file when using
+ <from spaces_in_filename="1">
+
+2006-08-11 09:45 rafael
+
+ * perl-install/c/stuff.xs.pl: Avoid segfaults if the string passed
+ to c::syslog contains a printf format lookalike
+
+2006-08-11 09:32 Pixel <pixel at mandriva.com>
+
+ * tools/install-xml-file-list: factorize
+
+2006-08-10 23:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: clean up/simplify harddrake
+ service file creation
+
+2006-08-10 21:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/ja.po: update (Yukiko Bando)
+
+2006-08-10 20:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.50-1mdv2007.0
+
+2006-08-10 19:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: install alsa-plugins by
+ default when there's a sound card
+
+2006-08-10 19:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: create and package
+ /etc/sysconfig/harddrake2/service.conf that enable
+ to disable some auto configuration done by the harddrake service
+
+2006-08-10 19:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: display PCI/USB ids as hexa
+ like lspcidrake does (#21220)
+
+2006-08-10 18:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: enable to disable
+ hardware probing per class (#24071)
+
+2006-08-10 18:29 berthy
+
+ * perl-install/share/po/fr.po: Update french translation
+
+2006-08-10 18:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: workaround
+ do_pkgs->is_available() destroying $_ (#23327)
+
+2006-08-10 17:27 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm,
+ perl-install/printer/printerdrake.pm: - Added automatic download
+ of ICM color profiles for printers driven
+ by the "foo2zjs" driver from the internet.
+
+2006-08-10 17:07 Frederic Crozat <fcrozat at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: Orca is replacing
+ gnopernicus
+
+2006-08-10 15:54 Frederic Crozat <fcrozat at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: Replace galaxy-gnome by
+ ia_ora-gnome
+
+2006-08-10 15:34 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/standalone/po/zh_CN.po: Corrected placeholder
+ format.
+
+2006-08-10 14:57 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/standalone/po/zh_CN.po: Updated Simplified Chinese
+ translation.
+ * perl-install/install/share/po/zh_CN.po: Updated Simplified
+ Chinese translation.
+
+2006-08-10 14:54 mmodem
+
+ * perl-install/share/po/pt.po:
+
+2006-08-10 14:53 mmodem
+
+ * perl-install/install/help/po/pt.po:
+
+2006-08-10 14:51 mmodem
+
+ * perl-install/install/help/po/pt.po:
+
+2006-08-10 14:50 mmodem
+
+ * live/draklive-install/po/pt.po:
+
+2006-08-10 14:47 mmodem
+
+ * perl-install/share/po/pt.po:
+
+2006-08-10 14:31 mmodem
+
+ * perl-install/standalone/po/pt.po:
+
+2006-08-10 14:26 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/detect.pm: - Made duplicate detection of
+ the same printer being recognized also
+ with HPLIP 1.6.7 and newer.
+
+2006-08-10 14:25 mmodem
+
+ * perl-install/share/po/pt.po:
+
+2006-08-10 14:25 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm,
+ perl-install/printer/printerdrake.pm: - Added automatic setup
+ for firmware file istallation for the HP
+ LaserJet 1000, 1005, 1018, and 1020.
+
+2006-08-10 14:12 mmodem
+
+ * perl-install/install/share/po/pt.po:
+
+2006-08-10 14:08 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation.
+
+2006-08-10 13:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/install2.pm: export META_CLASS for Ia Ora
+
+2006-08-10 12:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/fr.po: better style
+
+2006-08-10 10:23 berthy
+
+ * perl-install/share/po/fr.po: Update french translation
+
+2006-08-10 09:18 berthy
+
+ * perl-install/install/share/po/fr.po: Update french translation
+
+2006-08-10 09:15 berthy
+
+ * perl-install/standalone/po/fr.po: Update french translation
+
+2006-08-09 23:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/monitor.pm: get rid of weird chars (#24078)
+
+2006-08-09 20:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: use N_ only when really using the value
+
+2006-08-09 20:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: handle evdev (keyboard or mouse)
+
+2006-08-09 20:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: revert the condition in
+ remove_InputDevices (more intuitive)
+
+2006-08-09 18:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: - selecting package should not
+ fail in select_by_package_names_or_die()
+ - always log {rejected} when a package selection fail
+
+2006-08-09 17:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/get.pm, perl-install/fsedit.pm: skip readonly
+ devices when auto-allocating
+
+2006-08-09 17:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table.pm: simplified logging, use
+ internal_error()
+
+2006-08-09 16:22 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: remove debug code wrongly committed
+
+2006-08-09 16:21 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/cdrom.c, mdk-stage1/config-stage1.h,
+ mdk-stage1/disk.c, mdk-stage1/network.c, perl-install/fsedit.pm,
+ perl-install/install/any.pm, perl-install/install/media.pm: -
+ fix symlink /tmp/stage2 -> image/install/stage2/live instead of
+ cdimage/install/stage2/live for live nfs installs
+ - unify cdimage|nfsimage|hdimage into media
+ - replace ROOT_LOCATION with MEDIA_LOCATION
+
+2006-08-09 15:50 Pixel <pixel at mandriva.com>
+
+ * make_boot_img, mdk-stage1/Makefile, mdk-stage1/cdrom.c,
+ mdk-stage1/config-stage1.h, mdk-stage1/directory.c,
+ mdk-stage1/init.c, mdk-stage1/network.c, mdk-stage1/network.h,
+ mdk-stage1/stage1.c, mdk-stage1/tools.c, mdk-stage1/tools.h:
+ remove support for mandrake Move
+
+2006-08-09 15:49 Pixel <pixel at mandriva.com>
+
+ * kernel/update_kernel: adapt to main/ -> main/release/ change
+
+2006-08-09 15:23 Warly <warly at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: remove gtk1 apps
+
+2006-08-09 15:18 Warly <warly at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: smb4k needs kde
+
+2006-08-09 15:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/list.xml: vera fonts are now in
+ /usr/share/fonts too :)
+
+2006-08-09 15:16 Warly <warly at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: remove xmms
+
+2006-08-09 14:57 Pixel <pixel at mandriva.com>
+
+ * ChangeLog:
+
+2006-08-09 14:50 Warly <warly at mandriva.com>
+
+ * live/One/config/live.cfg: reverted the changes, keep only the
+ new languages
+
+2006-08-09 14:42 Warly <warly at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: some customization for office
+ suite for the beta
+
+2006-08-09 14:36 Warly <warly at mandriva.com>
+
+ * live/One/config/live.cfg: some customization for office suite
+ for the beta
+
+2006-08-09 14:35 Warly <warly at mandriva.com>
+
+ * live/One/config/rpmsrate: remove gtk1 apps
+
+2006-08-09 13:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/xdsl.pm: install rp-pppoe for
+ pppoe connections (#24249)
+
+2006-08-09 14:50 Warly <warly at mandriva.com>
+
+ * live/One/config/live.cfg: reverted the changes, keep only the
+ new languages
+
+2006-08-09 14:42 Warly <warly at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: some customization for office
+ suite for the beta
+
+2006-08-09 14:36 Warly <warly at mandriva.com>
+
+ * live/One/config/live.cfg: some customization for office suite
+ for the beta
+
+2006-08-09 14:35 Warly <warly at mandriva.com>
+
+ * live/One/config/rpmsrate: remove gtk1 apps
+
+2006-08-09 13:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/xdsl.pm: install rp-pppoe for
+ pppoe connections (#24249)
+
+2006-08-09 12:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/vpn/openvpn.pm: don't translate "PKCS #12"
+
+2006-08-09 12:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/vpn/openvpn.pm: don't translate "OpenVPN"
+
+2006-08-09 11:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (acceptLicense) kill debug statement
+
+2006-08-09 11:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (acceptLicense) try harder to find releases
+ notes (eg: for
+ finish-install) (##23304)
+
+2006-08-09 11:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2006-08-09 11:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2006-08-09 11:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (acceptLicense) don't show the "releases
+ notes" button if empty (#23304)
+
+2006-08-09 11:10 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/standalone/po/id.po: Updated
+
+2006-08-09 11:07 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2006-08-09 10:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.49-1mdv2007.0
+
+2006-08-09 09:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: use
+ network::connection::isdn (#24244)
+
+2006-08-09 09:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: revert broken "fix"
+
+2006-08-09 08:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: don't try to translate "vpn
+ name (vpn type)"
+
+2006-08-09 08:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/af.po, perl-install/share/po/am.po,
+ perl-install/share/po/ar.po, perl-install/share/po/az.po,
+ perl-install/share/po/be.po, perl-install/share/po/bg.po,
+ perl-install/share/po/bn.po, perl-install/share/po/br.po,
+ perl-install/share/po/bs.po, perl-install/share/po/ca.po,
+ perl-install/share/po/cs.po, perl-install/share/po/cy.po,
+ perl-install/share/po/da.po, perl-install/share/po/de.po,
+ perl-install/share/po/el.po, perl-install/share/po/eo.po,
+ perl-install/share/po/es.po, perl-install/share/po/et.po,
+ perl-install/share/po/eu.po, perl-install/share/po/fa.po,
+ perl-install/share/po/fi.po, perl-install/share/po/fr.po,
+ perl-install/share/po/fur.po, perl-install/share/po/ga.po,
+ perl-install/share/po/gl.po, perl-install/share/po/he.po,
+ perl-install/share/po/hi.po, perl-install/share/po/hr.po,
+ perl-install/share/po/hu.po, perl-install/share/po/id.po,
+ perl-install/share/po/is.po, perl-install/share/po/it.po,
+ perl-install/share/po/ja.po, perl-install/share/po/ko.po,
+ perl-install/share/po/ky.po, perl-install/share/po/lt.po,
+ perl-install/share/po/ltg.po, perl-install/share/po/lv.po,
+ perl-install/share/po/mk.po, perl-install/share/po/mn.po,
+ perl-install/share/po/ms.po, perl-install/share/po/mt.po,
+ perl-install/share/po/nb.po, perl-install/share/po/nl.po,
+ perl-install/share/po/nn.po, perl-install/share/po/pa_IN.po,
+ perl-install/share/po/pl.po, perl-install/share/po/pt.po,
+ perl-install/share/po/pt_BR.po, perl-install/share/po/ro.po,
+ perl-install/share/po/ru.po, perl-install/share/po/sc.po,
+ perl-install/share/po/sk.po, perl-install/share/po/sl.po,
+ perl-install/share/po/sq.po, perl-install/share/po/sr.po,
+ perl-install/share/po/sr@Latn.po, perl-install/share/po/sv.po,
+ perl-install/share/po/ta.po, perl-install/share/po/tg.po,
+ perl-install/share/po/th.po, perl-install/share/po/tl.po,
+ perl-install/share/po/tr.po, perl-install/share/po/uk.po,
+ perl-install/share/po/uz.po, perl-install/share/po/uz@Latn.po,
+ perl-install/share/po/vi.po, perl-install/share/po/wa.po,
+ perl-install/share/po/zh_CN.po, perl-install/share/po/zh_TW.po:
+ merge in existing translations from install/share/po
+
+2006-08-09 07:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/wireless.pm: atmel wireless
+ drivers are now named atmel_cs and atmel_pci (instead of
+ at76c50*)
+
+2006-08-09 07:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/af.po, perl-install/share/po/am.po,
+ perl-install/share/po/ar.po, perl-install/share/po/az.po,
+ perl-install/share/po/be.po, perl-install/share/po/bg.po,
+ perl-install/share/po/bn.po, perl-install/share/po/br.po,
+ perl-install/share/po/bs.po, perl-install/share/po/ca.po,
+ perl-install/share/po/cs.po, perl-install/share/po/cy.po,
+ perl-install/share/po/da.po, perl-install/share/po/de.po,
+ perl-install/share/po/el.po, perl-install/share/po/eo.po,
+ perl-install/share/po/es.po, perl-install/share/po/et.po,
+ perl-install/share/po/eu.po, perl-install/share/po/fa.po,
+ perl-install/share/po/fi.po, perl-install/share/po/fr.po,
+ perl-install/share/po/fur.po, perl-install/share/po/ga.po,
+ perl-install/share/po/gl.po, perl-install/share/po/he.po,
+ perl-install/share/po/hi.po, perl-install/share/po/hr.po,
+ perl-install/share/po/hu.po, perl-install/share/po/id.po,
+ perl-install/share/po/is.po, perl-install/share/po/it.po,
+ perl-install/share/po/ja.po, perl-install/share/po/ko.po,
+ perl-install/share/po/ky.po, perl-install/share/po/libDrakX.pot,
+ perl-install/share/po/lt.po, perl-install/share/po/ltg.po,
+ perl-install/share/po/lv.po, perl-install/share/po/mk.po,
+ perl-install/share/po/mn.po, perl-install/share/po/ms.po,
+ perl-install/share/po/mt.po, perl-install/share/po/nb.po,
+ perl-install/share/po/nl.po, perl-install/share/po/nn.po,
+ perl-install/share/po/pa_IN.po, perl-install/share/po/pl.po,
+ perl-install/share/po/pt.po, perl-install/share/po/pt_BR.po,
+ perl-install/share/po/ro.po, perl-install/share/po/ru.po,
+ perl-install/share/po/sc.po, perl-install/share/po/sk.po,
+ perl-install/share/po/sl.po, perl-install/share/po/sq.po,
+ perl-install/share/po/sr.po, perl-install/share/po/sr@Latn.po,
+ perl-install/share/po/sv.po, perl-install/share/po/ta.po,
+ perl-install/share/po/tg.po, perl-install/share/po/th.po,
+ perl-install/share/po/tl.po, perl-install/share/po/tr.po,
+ perl-install/share/po/uk.po, perl-install/share/po/uz.po,
+ perl-install/share/po/uz@Latn.po, perl-install/share/po/vi.po,
+ perl-install/share/po/wa.po, perl-install/share/po/zh_CN.po,
+ perl-install/share/po/zh_TW.po: sync with code
+ * perl-install/standalone/po/af.po,
+ perl-install/standalone/po/am.po,
+ perl-install/standalone/po/ar.po,
+ perl-install/standalone/po/az.po,
+ perl-install/standalone/po/be.po,
+ perl-install/standalone/po/bg.po,
+ perl-install/standalone/po/bn.po,
+ perl-install/standalone/po/br.po,
+ perl-install/standalone/po/bs.po,
+ perl-install/standalone/po/ca.po,
+ perl-install/standalone/po/cs.po,
+ perl-install/standalone/po/cy.po,
+ perl-install/standalone/po/da.po,
+ perl-install/standalone/po/de.po,
+ perl-install/standalone/po/el.po,
+ perl-install/standalone/po/eo.po,
+ perl-install/standalone/po/es.po,
+ perl-install/standalone/po/et.po,
+ perl-install/standalone/po/eu.po,
+ perl-install/standalone/po/fa.po,
+ perl-install/standalone/po/fi.po,
+ perl-install/standalone/po/fr.po,
+ perl-install/standalone/po/fur.po,
+ perl-install/standalone/po/ga.po,
+ perl-install/standalone/po/gl.po,
+ perl-install/standalone/po/he.po,
+ perl-install/standalone/po/hi.po,
+ perl-install/standalone/po/hr.po,
+ perl-install/standalone/po/hu.po,
+ perl-install/standalone/po/id.po,
+ perl-install/standalone/po/is.po,
+ perl-install/standalone/po/it.po,
+ perl-install/standalone/po/ja.po,
+ perl-install/standalone/po/ko.po,
+ perl-install/standalone/po/ky.po,
+ perl-install/standalone/po/libDrakX-standalone.pot,
+ perl-install/standalone/po/lt.po,
+ perl-install/standalone/po/ltg.po,
+ perl-install/standalone/po/lv.po,
+ perl-install/standalone/po/mk.po,
+ perl-install/standalone/po/mn.po,
+ perl-install/standalone/po/ms.po,
+ perl-install/standalone/po/mt.po,
+ perl-install/standalone/po/nb.po,
+ perl-install/standalone/po/nl.po,
+ perl-install/standalone/po/nn.po,
+ perl-install/standalone/po/pa_IN.po,
+ perl-install/standalone/po/pl.po,
+ perl-install/standalone/po/pt.po,
+ perl-install/standalone/po/pt_BR.po,
+ perl-install/standalone/po/ro.po,
+ perl-install/standalone/po/ru.po,
+ perl-install/standalone/po/sc.po,
+ perl-install/standalone/po/sk.po,
+ perl-install/standalone/po/sl.po,
+ perl-install/standalone/po/sq.po,
+ perl-install/standalone/po/sr.po,
+ perl-install/standalone/po/sr@Latn.po,
+ perl-install/standalone/po/sv.po,
+ perl-install/standalone/po/ta.po,
+ perl-install/standalone/po/tg.po,
+ perl-install/standalone/po/th.po,
+ perl-install/standalone/po/tl.po,
+ perl-install/standalone/po/tr.po,
+ perl-install/standalone/po/uk.po,
+ perl-install/standalone/po/uz.po,
+ perl-install/standalone/po/uz@Latn.po,
+ perl-install/standalone/po/vi.po,
+ perl-install/standalone/po/wa.po,
+ perl-install/standalone/po/zh_CN.po,
+ perl-install/standalone/po/zh_TW.po: sync with code
+
+2006-08-09 07:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/DrakX.pot,
+ perl-install/install/share/po/af.po,
+ perl-install/install/share/po/am.po,
+ perl-install/install/share/po/ar.po,
+ perl-install/install/share/po/az.po,
+ perl-install/install/share/po/be.po,
+ perl-install/install/share/po/bg.po,
+ perl-install/install/share/po/bn.po,
+ perl-install/install/share/po/br.po,
+ perl-install/install/share/po/bs.po,
+ perl-install/install/share/po/ca.po,
+ perl-install/install/share/po/cs.po,
+ perl-install/install/share/po/cy.po,
+ perl-install/install/share/po/da.po,
+ perl-install/install/share/po/de.po,
+ perl-install/install/share/po/el.po,
+ perl-install/install/share/po/eo.po,
+ perl-install/install/share/po/es.po,
+ perl-install/install/share/po/et.po,
+ perl-install/install/share/po/eu.po,
+ perl-install/install/share/po/fa.po,
+ perl-install/install/share/po/fi.po,
+ perl-install/install/share/po/fr.po,
+ perl-install/install/share/po/fur.po,
+ perl-install/install/share/po/ga.po,
+ perl-install/install/share/po/gl.po,
+ perl-install/install/share/po/he.po,
+ perl-install/install/share/po/hi.po,
+ perl-install/install/share/po/hr.po,
+ perl-install/install/share/po/hu.po,
+ perl-install/install/share/po/id.po,
+ perl-install/install/share/po/is.po,
+ perl-install/install/share/po/it.po,
+ perl-install/install/share/po/ja.po,
+ perl-install/install/share/po/ko.po,
+ perl-install/install/share/po/ky.po,
+ perl-install/install/share/po/lt.po,
+ perl-install/install/share/po/ltg.po,
+ perl-install/install/share/po/lv.po,
+ perl-install/install/share/po/mk.po,
+ perl-install/install/share/po/mn.po,
+ perl-install/install/share/po/ms.po,
+ perl-install/install/share/po/mt.po,
+ perl-install/install/share/po/nb.po,
+ perl-install/install/share/po/nl.po,
+ perl-install/install/share/po/nn.po,
+ perl-install/install/share/po/pa_IN.po,
+ perl-install/install/share/po/pl.po,
+ perl-install/install/share/po/pt.po,
+ perl-install/install/share/po/pt_BR.po,
+ perl-install/install/share/po/ro.po,
+ perl-install/install/share/po/ru.po,
+ perl-install/install/share/po/sc.po,
+ perl-install/install/share/po/sk.po,
+ perl-install/install/share/po/sl.po,
+ perl-install/install/share/po/sq.po,
+ perl-install/install/share/po/sr.po,
+ perl-install/install/share/po/sr@Latn.po,
+ perl-install/install/share/po/sv.po,
+ perl-install/install/share/po/ta.po,
+ perl-install/install/share/po/tg.po,
+ perl-install/install/share/po/th.po,
+ perl-install/install/share/po/tl.po,
+ perl-install/install/share/po/tr.po,
+ perl-install/install/share/po/uk.po,
+ perl-install/install/share/po/uz.po,
+ perl-install/install/share/po/uz@Latn.po,
+ perl-install/install/share/po/vi.po,
+ perl-install/install/share/po/wa.po,
+ perl-install/install/share/po/zh_CN.po,
+ perl-install/install/share/po/zh_TW.po: sync with code
+ * perl-install/Makefile.config: package missing drakconnect bits
+ * perl-install/standalone/drakconnect: make it work...
+
+2006-08-09 07:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mygtk2.pm: (_gtk__AboutDialog) fix inactive "close"
+ button (#23266)
+
+2006-08-08 21:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: I forget to commited draknetprofile
+
+2006-08-08 21:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draknetprofile: use window icon
+
+2006-08-08 20:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.48-1mdv2007.0
+
+2006-08-08 20:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/timezone.pm: remove spurious space
+
+2006-08-08 20:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/finish-install: use
+ any::configure_timezone
+ * perl-install/any.pm: use treeview to ask timezone
+
+2006-08-08 20:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/timezone.pm: default to NTP pools from pool.ntp.org
+ instead of hardcoded NTP servers
+
+2006-08-08 20:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/bluetooth.pm,
+ perl-install/network/connection/pots.pm,
+ perl-install/network/netconnect.pm,
+ perl-install/network/network.pm,
+ perl-install/standalone/drakfirewall,
+ perl-install/standalone/draksec,
+ perl-install/standalone/drakvpn,
+ perl-install/standalone/drakxservices: revert unmeant
+ modifications (and get some brown paper bag)
+
+2006-08-08 20:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/any.pm, perl-install/install/steps_interactive.pm,
+ perl-install/network/connection/bluetooth.pm,
+ perl-install/network/connection/pots.pm,
+ perl-install/network/netconnect.pm,
+ perl-install/network/network.pm,
+ perl-install/standalone/drakfirewall,
+ perl-install/standalone/draksec,
+ perl-install/standalone/drakvpn,
+ perl-install/standalone/drakxservices: move
+ install::steps_interactive::configureTimezone() code to
+ any::configure_timezone()
+
+2006-08-08 20:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/harddrake/data.pm: use network::connection::isdn
+ (#24236)
+
+2006-08-08 20:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/timezone.pm: use NTP pools from pool.ntp.org
+ instead of hardcoded NTP servers (get_ntp_server_tree)
+
+2006-08-08 20:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/timezone.pm: initial import of ntp pools
+ * perl-install/timezone.pm: add functions to dump ntp servers on
+ stdout
+
+2006-08-08 20:01 felipe
+
+ * perl-install/install/share/po/pt_BR.po: finishing to translate
+ this file
+
+2006-08-08 19:53 felipe
+
+ * perl-install/share/po/pt_BR.po: potfile translated to pt_BR by
+ Wanderley Cavassin
+
+2006-08-08 18:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakhosts,
+ perl-install/standalone/draknfs: use window icon
+
+2006-08-08 17:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakclock: simplify
+ * perl-install/standalone/drakclock: don't put timezone in
+ interactive hash
+
+2006-08-08 16:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakclock: simplify
+
+2006-08-08 16:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/steps_interactive.pm: remove incorrect title
+
+2006-08-08 16:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakclock: perl_checker fixes
+
+2006-08-08 15:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakclock: fix ntp parsing when coutry
+ name contains a space (#24215)
+
+2006-08-08 12:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: show VPN sub-menu even if
+ only one connection is configured
+
+2006-08-08 12:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakxtv: use /usr/bin/xvt (from Nicolas
+ Lécureuil, #24213)
+
+2006-08-08 10:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: don't show a VPN connection
+ button if no VPN connection is configured (#24203)
+
+2006-08-07 18:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Makefile.config: add network/connection pm dir
+
+2006-08-07 18:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.47-1mdv2007.0
+
+2006-08-07 18:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone.pm: add network::connection in the drakx
+ modules list
+
+2006-08-07 18:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: use
+ network::connection::ethernet
+
+2006-08-07 18:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: use
+ network::connection::ethernet
+
+2006-08-07 18:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/install2.pm: use
+ network::connection::ethernet
+
+2006-08-07 18:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: use
+ network::connection::ethernet
+ * perl-install/standalone/drakgw: use network::connection::ethernet
+
+2006-08-07 18:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakgw: don't use caching-nameserver but
+ directly "bind" and "named"
+
+2006-08-07 18:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: use
+ network::connection::ethernet
+
+2006-08-07 18:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/drakvpn.pm: perl_checker fixes
+
+2006-08-07 18:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: allow to connect/disconnect
+ VPN from net_applet (#20949)
+
+2006-08-07 18:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: use
+ network::connection::ethernet
+
+2006-08-07 18:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/vpn.pm: add is_started method
+
+2006-08-07 18:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/vpn.pm: wrap VPN command for non-root users
+
+2006-08-07 18:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/drakvpn.pm, perl-install/network/vpn.pm:
+ rename network::vpn::configured_connections as
+ get_configured_connections and make it return objects
+
+2006-08-07 18:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection.pm,
+ perl-install/network/netconnect.pm,
+ perl-install/standalone/drakroam: drop
+ network::connection::get_type_class
+
+2006-08-07 18:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/monitor.pm: use
+ network::connection::wireless
+
+2006-08-07 17:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection.pm: drop default get_devices
+ * perl-install/network/connection.pm: use
+ common::load_modules_from_base to load connection types
+
+2006-08-07 17:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/bluetooth.pm,
+ perl-install/network/connection/cable.pm,
+ perl-install/network/connection/cellular.pm,
+ perl-install/network/connection/isdn.pm,
+ perl-install/network/connection/pots.pm,
+ perl-install/network/connection/wireless.pm,
+ perl-install/network/connection/xdsl.pm: adjust default metric
+ settings
+
+2006-08-07 17:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/cable.pm: use lower metric for
+ cable connection
+
+2006-08-07 17:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/isdn,
+ perl-install/network/connection/isdn.pm,
+ perl-install/network/connection/isdn/consts.pm,
+ perl-install/network/connection/isdn_consts.pm: move isdn_consts
+ in network::connection::isdn::consts
+
+2006-08-07 17:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/bluetooth.pm,
+ perl-install/network/cable.pm, perl-install/network/cellular.pm,
+ perl-install/network/cellular_providers.pm,
+ perl-install/network/dvb.pm, perl-install/network/ethernet.pm,
+ perl-install/network/isdn.pm,
+ perl-install/network/isdn_consts.pm,
+ perl-install/network/pots.pm, perl-install/network/ppp.pm,
+ perl-install/network/wireless.pm, perl-install/network/xdsl.pm,
+ perl-install/network/xdsl_providers.pm: complete move to
+ network/connection
+
+2006-08-07 17:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection/cellular.pm,
+ perl-install/network/connection/cellular_providers.pm,
+ perl-install/network/connection/providers,
+ perl-install/network/connection/providers/cellular.pm,
+ perl-install/network/connection/providers/xdsl.pm,
+ perl-install/network/connection/xdsl.pm,
+ perl-install/network/connection/xdsl_providers.pm: move
+ providers data in network::connection::providers
+
+2006-08-07 17:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: (ask_fromW) pass the banner if
+ provided
+
+2006-08-07 17:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm,
+ perl-install/network/connection.pm,
+ perl-install/network/connection/bluetooth.pm,
+ perl-install/network/connection/cable.pm,
+ perl-install/network/connection/cellular.pm,
+ perl-install/network/connection/cellular_providers.pm,
+ perl-install/network/connection/dvb.pm,
+ perl-install/network/connection/ethernet.pm,
+ perl-install/network/connection/isdn.pm,
+ perl-install/network/connection/isdn_consts.pm,
+ perl-install/network/connection/pots.pm,
+ perl-install/network/connection/ppp.pm,
+ perl-install/network/connection/wireless.pm,
+ perl-install/network/connection/xdsl.pm,
+ perl-install/network/connection/xdsl_providers.pm,
+ perl-install/network/monitor.pm,
+ perl-install/network/netconnect.pm,
+ perl-install/network/network.pm,
+ perl-install/network/shorewall.pm,
+ perl-install/network/tools.pm: move connection modules in
+ network/connection
+
+2006-08-07 17:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (new) pack the banner if provided in
+ standalone mode
+
+2006-08-07 17:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mygtk2.pm: (_gtk__MagicWindow) pack the banner if
+ provided even if not in wizard mode
+
+2006-08-07 16:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection: add network/connection
+ sub-directory
+
+2006-08-07 16:46 mmodem
+
+ * perl-install/share/po/pt.po:
+
+2006-08-07 16:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: (real_main) fix bad window
+ sizing (#23552)
+ * perl-install/interactive/gtk.pm: (ask_fromW) introduce & handle
+ the new "use_scrolling" gtk+ hint (#23552)
+
+2006-08-07 16:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: do not display unknown
+ driver for "MEMORY_OTHER" class
+
+2006-08-07 16:10 mmodem
+
+ * perl-install/share/po/pt.po:
+
+2006-08-07 15:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2006-08-07 15:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/ja.po: update (Yukiko Bando)
+ * perl-install/standalone/po/ja.po: update (Yukiko Bando)
+
+2006-08-07 12:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakproxy: ask to logout after proxies
+ settings have been modified (#20052)
+
+2006-08-07 11:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: display old interface name
+ in bubble on disconnection, not new default interface (#23943)
+
+2006-08-05 21:27 mmodem
+
+ * perl-install/standalone/po/pt.po:
+
+2006-08-05 21:23 mmodem
+
+ * perl-install/install/share/po/pt.po:
+
+2006-08-05 21:21 mmodem
+
+ * perl-install/share/po/pt.po:
+
+2006-08-05 19:15 berthy
+
+ * perl-install/share/po/fr.po: Update french translation
+
+2006-08-05 01:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.46-1mdv2007.0
+
+2006-07-25 18:17 Warly <warly at mandriva.com>
+
+ * mdk-stage1/cdrom.c, mdk-stage1/config-stage1.h: make the ARCH
+ extra dir only for CDs install
+
+2006-07-25 16:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/harddrake/autoconf.pm: revert r42130 (already
+ handled in modules::set_preload_modules)
+
+2006-07-25 16:16 Pixel <pixel at mandriva.com>
+
+ * ChangeLog:
+
+2006-07-25 15:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/autoconf.pm: (cpufreq) fix crash when
+ modules doesn't exist
+
+2006-07-25 15:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/autoconf.pm: (cpufreq) fix crash when
+ modules doesn't exist
+
+2006-07-24 19:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: install the proper firmware
+ for "snd-asihpi" driven sound cards
+
+2006-07-24 15:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/steps.pm,
+ perl-install/network/drakfirewall.pm,
+ perl-install/network/shorewall.pm: allow not to log firewall
+ messages in system logs (#23690)
+
+2006-07-24 15:16 Pixel <pixel at mandriva.com>
+
+ * ChangeLog:
+
+2006-07-24 15:06 Pixel <pixel at mandriva.com>
+
+ * ChangeLog:
+
+2006-07-24 14:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakbug: all to report drakroam bugs
+
+2006-07-24 14:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbug: fix parsing new packages
+ fullnames (tropikhajma@seznam.cz, #23066)
+
+2006-07-24 15:06 Pixel <pixel at mandriva.com>
+
+ * ChangeLog:
+
+2006-07-24 14:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakbug: all to report drakroam bugs
+
+2006-07-24 14:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbug: fix parsing new packages
+ fullnames (tropikhajma@seznam.cz, #23066)
+
+2006-07-24 14:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakbug: all to report drakroam bugs
+
+2006-07-24 14:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakbug: fix parsing new packages
+ fullnames (tropikhajma@seznam.cz, #23066)
+
+2006-07-24 07:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: use "wext" wpa_supplicant
+ driver for ndiswrapper as well (ndiswrapper >= 1.12)
+
+2006-07-23 12:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.42-1mdv2007.0
+
+2006-07-23 10:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/common.pm: use --noignorebutton option instead of
+ --ignorebutton for kdesu (for KDE >= 3.5.3, patch from Nicolas
+ Lécureuil)
+
+2006-07-22 10:50 Dovix <dovix2003 at yahoo.com>
+
+ * perl-install/share/po/he.po: update hebrew translation
+
+2006-07-22 10:22 Dovix <dovix2003 at yahoo.com>
+
+ * perl-install/share/po/he.po: update hebrew translation
+
+2006-07-22 09:33 Dovix <dovix2003 at yahoo.com>
+
+ * perl-install/share/po/he.po: update hebrew translation
+
+2006-07-21 13:53 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg: ksynaptics is back to normal, keep it
+
+2006-07-21 10:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: don't use a timeout workaround
+ for --ap arg
+
+2006-07-21 10:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: use default connection for
+ --ap action
+
+2006-07-21 10:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: update comment
+
+2006-07-21 09:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: use a 20 seconds timeout for
+ status messages
+
+2006-07-21 09:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: refresh networks on every
+ network status event (#23862)
+
+2006-07-20 19:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: don't pre-select WPA only
+ because WIRELESS_WPA_DRIVER is set
+
+2006-07-20 19:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: write wireless encryption key
+ even if WPA (so that we can guess it from ifcfg, we don't parse
+ wpa_supplicant.conf yet)
+
+2006-07-20 19:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.41-1mdv2007.0
+
+2006-07-20 18:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: add a status bar and display
+ network event messages (#19290)
+
+2006-07-20 18:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection.pm,
+ perl-install/network/ethernet.pm,
+ perl-install/network/wireless.pm: add status messages
+
+2006-07-20 18:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/monitor.pm,
+ perl-install/network/wireless.pm: move access point detection to
+ network::wireless::get_access_point
+
+2006-07-20 14:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakvpn,
+ perl-install/standalone/drakvpn-old: rename old drakvpn as
+ drakvpn-old
+
+2006-07-20 12:41 Warly <warly at mandriva.com>
+
+ * live/One/config/rpmsrate: openoffice is lowercase, smb4k
+ requires KDE
+
+2006-07-20 12:39 Warly <warly at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: now openoffice.org is
+ lowercase
+
+2006-07-20 09:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ifw.pm: simplify
+
+2006-07-20 09:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/dbus_object.pm: inline last dispatch call
+
+2006-07-20 09:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/dbus_object.pm: split set_gtk2_watch_helper
+ function (doesn't require an object)
+
+2006-07-20 09:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: settings have to be rewritten
+ only if they are impacted by choices from the main window
+
+2006-07-20 09:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: guess control settings as well
+
+2006-07-20 09:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: reload settings before
+ connection
+
+2006-07-20 09:17 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: reload interface settings
+ before configuration (#23803)
+
+2006-07-20 09:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: disable broken network guess
+ for now
+
+2006-07-20 09:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: use get_selected_network
+
+2006-07-20 09:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: fix bad deref
+ * perl-install/network/wireless.pm: don't source settings from
+ ifcfg if a network is selected
+
+2006-07-19 18:06 Warly <warly at mandriva.com>
+
+ * mdk-stage1/Makefile: root arch dir is i586 on i386
+
+2006-07-19 17:26 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: tag systems with
+ ipw2100/2200/3945 devices as laptops, they are Mini-PCI
+ (Express) adapters
+
+2006-07-19 16:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: fix selecting the first
+ network in the list
+
+2006-07-19 15:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.40-1mdv2007.0
+
+2006-07-19 15:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm,
+ perl-install/standalone/drakroam: rename is_configured method as
+ selected_network_is_configured
+
+2006-07-19 15:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm,
+ perl-install/standalone/drakroam: use ->get_selected_network
+
+2006-07-19 15:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection.pm: add get_selected_network
+ helper
+ * perl-install/network/connection.pm: add step labels (#23796)
+
+2006-07-19 15:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: perl_checker fix
+
+2006-07-19 14:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm,
+ perl-install/standalone/drakroam: is unused for network access
+ settings
+
+2006-07-19 14:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: $net is now unused here
+
+2006-07-19 14:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: re-read ssid configuration
+ each time it is accessed
+
+2006-07-19 14:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: write settings after
+ configuration, not only before connection (partial fix for
+ #23803)
+
+2006-07-19 14:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: store wireless.d path in
+ $wireless_d
+
+2006-07-19 14:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: don't connect when Configure
+ is clicked
+
+2006-07-19 14:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: fix --ap behavior
+
+2006-07-19 14:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: don't allow to modify ESSID if
+ a network with a valid ESSID is selected
+
+2006-07-19 14:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: don't set connection network
+ if no connection is selected
+
+2006-07-19 14:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: supplement IP settings only is
+ IP address is valid
+
+2006-07-19 14:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: fix NETMASK configuration
+
+2006-07-19 14:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: don't supplement IP settings
+ when IP address isn't set
+
+2006-07-19 13:12 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: fix configuring an AP without
+ ESSID
+
+2006-07-19 13:08 Pixel <pixel at mandriva.com>
+
+ * ChangeLog:
+
+2006-07-19 13:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/monitor.pm: fill AP field for
+ wpa_supplicant as well
+
+2006-07-19 12:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: acx100 firmware support
+
+2006-07-19 12:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm,
+ perl-install/network/netconnect.pm,
+ perl-install/network/wireless.pm,
+ perl-install/standalone/drakroam: add step labels and use them
+ (#23796)
+
+2006-07-19 11:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: $connection->{network} should
+ contain a network ID, not a hash
+
+2006-07-19 11:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: select the first interface
+ that doesn't have a slow network scan
+
+2006-07-19 11:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/cellular.pm,
+ perl-install/network/connection.pm: add a network_scan_is_slow()
+ method
+
+2006-07-19 11:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: allow to select interface from
+ command line
+
+2006-07-19 11:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: perl_checker
+ * perl-install/standalone/drakroam: always activate first combo
+ entry
+
+2006-07-19 10:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: move command line args in a
+ hash
+
+2006-07-19 13:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/monitor.pm: fill AP field for
+ wpa_supplicant as well
+
+2006-07-19 12:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: acx100 firmware support
+
+2006-07-19 12:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm,
+ perl-install/network/netconnect.pm,
+ perl-install/network/wireless.pm,
+ perl-install/standalone/drakroam: add step labels and use them
+ (#23796)
+
+2006-07-19 11:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: $connection->{network} should
+ contain a network ID, not a hash
+
+2006-07-19 11:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: select the first interface
+ that doesn't have a slow network scan
+
+2006-07-19 11:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/cellular.pm,
+ perl-install/network/connection.pm: add a network_scan_is_slow()
+ method
+
+2006-07-19 11:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: allow to select interface from
+ command line
+
+2006-07-19 11:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: perl_checker
+ * perl-install/standalone/drakroam: always activate first combo
+ entry
+
+2006-07-19 10:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: move command line args in a
+ hash
+
+2006-07-19 10:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: don't allow to configure if no
+ network is selected
+
+2006-07-19 10:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: yet another network selection
+ fix
+
+2006-07-19 10:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: change label to Connect is
+ selected network isn't current network
+
+2006-07-19 10:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: fix network selection
+
+2006-07-19 10:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: grey Configure/Refresh buttons
+ when no device is selected (#23794)
+
+2006-07-19 09:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: simplify network selection
+
+2006-07-19 09:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm, perl-install/Xconfig/main.pm,
+ perl-install/Xconfig/various.pm: move DRI_GLX choice in
+ Xconfig::various::various, and use it instead of
+ xfree_and_glx_choose()
+
+2006-07-19 09:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: use better names
+
+2006-07-19 07:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: move choosing GLX or not after
+ choosing Driver2 (proprietary driver) or not
+
+2006-07-19 07:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: remove special configuration only
+ for XFree 3.3
+
+2006-07-18 18:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.39-1mdv2007.0
+
+2006-07-18 18:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: add group labels to separate
+ settings (#23796)
+
+2006-07-18 18:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakgw: test caching-nameserver using
+ /usr/sbin/named
+
+2006-07-18 17:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: fix signal level (#23799)
+
+2006-07-18 16:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/main.pm,
+ perl-install/Xconfig/proprietary.pm,
+ perl-install/Xconfig/resolution_and_depth.pm,
+ perl-install/Xconfig/xfree.pm: use Modes instead of Virtual by
+ default
+
+ (it seems we don't need to list the smaller resolutions anymore
+ with Modes,
+ and Modes works better than Virtual. eg: on a laptop here, we
+ end up with only
+ 1400x1050 in xrandr when using Virtual, whereas with Modes, we
+ have 1024x768,
+ 800x600...)
+
+2006-07-18 16:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: fix remaining ejectCdrom call (ejectCdrom
+ is no more for some time)
+
+2006-07-18 16:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/main.pm, perl-install/Xconfig/various.pm:
+ allow toggling Composite extension (on by default), and
+ RenderAccel proprietary nvidia option (on by default until this
+ f*cking driver works better)
+
+2006-07-18 16:19 Warly <warly at mandriva.com>
+
+ * perl-install/install/pixmaps/logo-mandriva.png: add beta logo
+
+2006-07-18 16:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/proprietary.pm: handle fglrx_dri.so in
+ /usr/$lib/dri
+
+2006-07-18 11:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/po/ca.po, perl-install/share/po/de.po,
+ perl-install/share/po/es.po, perl-install/share/po/it.po,
+ perl-install/share/po/libDrakX.pot,
+ perl-install/share/po/pt_BR.po: more modules/modprobe fixes
+
+2006-07-18 09:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ipsec.pm: drop unused sub
+
+2006-07-18 09:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakvpn: drop 2.4 support
+ (freeswan/super-freeswan)
+
+2006-07-18 09:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ipsec.pm: drop 2.4 support
+
+2006-07-18 08:13 Warly <warly at mandriva.com>
+
+ * make_boot_img: now that the stage one looks into the /arch/ dir,
+ we must use isolinux-i586 by default for rescue and boot.iso
+
+2006-07-18 01:03 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2006-07-17 20:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Makefile.config: network/wireless is no more
+
+2006-07-17 20:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.38-1mdv2007.0
+
+2006-07-17 19:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: really write DHCP_* variables
+ (and guess DHCP_TIMEOUT)
+
+2006-07-17 19:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: drop unused code
+ * perl-install/network/wireless.pm: simplify
+
+2006-07-17 19:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless: remove deprecated module
+ * perl-install/network/wireless.pm: drop unused code
+
+2006-07-17 19:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: use generic layer to connect
+
+2006-07-17 19:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: handle wpa_supplicant
+ reconfiguration in network::wireless::prepare_connection
+ * perl-install/network/wireless.pm: always write wireless
+ configuration file
+
+2006-07-17 19:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: don't overwrite
+ WIRELESS_ENC_KEY with a wrong value
+ * perl-install/network/wireless.pm: add need_rt2x00_iwpriv and use
+ it
+
+2006-07-17 19:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: guess encryption according to
+ network flags
+
+2006-07-17 18:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection.pm,
+ perl-install/network/netconnect.pm: move interactive protocol
+ code in network::connection::get_protocol_settings
+
+2006-07-17 18:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: allow to show all address
+ settings, even if the protocol doesn't match
+
+2006-07-17 16:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: split hostname stuff in
+ get_hostname_settings
+
+2006-07-17 16:12 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: don't show buble at applet
+ startup
+
+2006-07-17 16:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: ask hostname settings in
+ address setp
+
+2006-07-17 14:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: fix typo
+
+2006-07-17 12:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: don't use wireless::gui
+ directly from here
+
+2006-07-17 12:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: center wait messages and popups
+
+2006-07-17 12:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: warn when device isn't ready
+
+2006-07-17 12:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: simplify
+
+2006-07-17 12:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: use icon for window decoration
+ as well
+
+2006-07-17 12:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: factorize title and icon path
+
+2006-07-17 12:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: rename wireless_* variables
+ using a more generic name
+
+2006-07-17 12:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: grey the Connect button when
+ no network is selected (#20168)
+
+2006-07-17 12:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: allow to disconnect
+
+2006-07-17 11:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/harddrake/sound.pm, perl-install/share/po/af.po,
+ perl-install/share/po/am.po, perl-install/share/po/ar.po,
+ perl-install/share/po/az.po, perl-install/share/po/be.po,
+ perl-install/share/po/bg.po, perl-install/share/po/bn.po,
+ perl-install/share/po/br.po, perl-install/share/po/bs.po,
+ perl-install/share/po/ca.po, perl-install/share/po/cs.po,
+ perl-install/share/po/cy.po, perl-install/share/po/da.po,
+ perl-install/share/po/de.po, perl-install/share/po/el.po,
+ perl-install/share/po/eo.po, perl-install/share/po/es.po,
+ perl-install/share/po/et.po, perl-install/share/po/eu.po,
+ perl-install/share/po/fa.po, perl-install/share/po/fi.po,
+ perl-install/share/po/fr.po, perl-install/share/po/fur.po,
+ perl-install/share/po/ga.po, perl-install/share/po/gl.po,
+ perl-install/share/po/he.po, perl-install/share/po/hi.po,
+ perl-install/share/po/hr.po, perl-install/share/po/hu.po,
+ perl-install/share/po/id.po, perl-install/share/po/is.po,
+ perl-install/share/po/it.po, perl-install/share/po/ja.po,
+ perl-install/share/po/ko.po, perl-install/share/po/ky.po,
+ perl-install/share/po/lt.po, perl-install/share/po/ltg.po,
+ perl-install/share/po/lv.po, perl-install/share/po/mk.po,
+ perl-install/share/po/mn.po, perl-install/share/po/ms.po,
+ perl-install/share/po/mt.po, perl-install/share/po/nb.po,
+ perl-install/share/po/nl.po, perl-install/share/po/nn.po,
+ perl-install/share/po/pa_IN.po, perl-install/share/po/pl.po,
+ perl-install/share/po/pt.po, perl-install/share/po/pt_BR.po,
+ perl-install/share/po/ro.po, perl-install/share/po/ru.po,
+ perl-install/share/po/sc.po, perl-install/share/po/sk.po,
+ perl-install/share/po/sl.po, perl-install/share/po/sq.po,
+ perl-install/share/po/sr.po, perl-install/share/po/sr@Latn.po,
+ perl-install/share/po/sv.po, perl-install/share/po/ta.po,
+ perl-install/share/po/tg.po, perl-install/share/po/th.po,
+ perl-install/share/po/tl.po, perl-install/share/po/tr.po,
+ perl-install/share/po/uk.po, perl-install/share/po/uz.po,
+ perl-install/share/po/uz@Latn.po, perl-install/share/po/vi.po,
+ perl-install/share/po/wa.po, perl-install/share/po/zh_CN.po,
+ perl-install/share/po/zh_TW.po: use modprobe.conf instead of
+ modules.conf
+
+2006-07-17 11:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: - fix handling drakx-in-chroot
+ media
+ - ensure we can't go through with a missing real_mntpoint
+ (otherwise it can cause havoc)
+
+2006-07-17 10:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/interactive_http/miniserv.pam: don't use
+ pam_stack anymore
+
+2006-07-17 10:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/net_applet.desktop,
+ perl-install/share/net_applet.xinit: remove unused files
+
+2006-07-17 10:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.37-1mdv2007.0
+
+2006-07-17 10:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: add missing changelog entry
+
+2006-07-17 10:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: fix typo (still, this
+ doesn't make it understandable...)
+
+2006-07-17 10:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/install2.pm: umount stage1 (remaining after
+ pivot_root) only if not local_install
+
+2006-07-17 10:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: XDG menu (Nicolas Lécureuil)
+
+2006-07-16 12:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/monitor.pm: drop stderr of iwlist/iwgetid
+ (so that net_applet doesn't flood .xsession-errors)
+
+2006-07-14 17:10 berthy
+
+ * perl-install/share/po/fr.po: Update french translation
+
+2006-07-13 17:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: use network card description
+ in state notification bubble if possible
+
+2006-07-13 16:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: add wireless access point
+ and link level in state notification bubble
+
+2006-07-13 16:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: move tooltip messages in
+ get_state_message
+
+2006-07-13 16:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm,
+ perl-install/Xconfig/proprietary.pm: allow to choose the
+ non-proprietary driver
+
+2006-07-13 13:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: fix typo (thanks Pixel)
+
+2006-07-13 13:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: use sprintf and translate to
+ please perl_checker
+
+2006-07-13 12:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: show notification bubble on
+ state change
+
+2006-07-13 12:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: move message queuing logic
+ in a Gtk2::NotificationBubble::Queue package
+
+2006-07-13 11:03 Warly <warly at mandriva.com>
+
+ * mdk-stage1/Makefile, mdk-stage1/cdrom.c,
+ mdk-stage1/config-stage1.h: now cdrom image is in cdimage with a
+ symlink image to cdimage/ARCH
+
+2006-07-13 10:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: perl_checker fixes
+
+2006-07-13 10:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: move buttons at bottom
+
+2006-07-13 10:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: allow to select wireless
+ interface
+
+2006-07-12 19:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/cpufreq.pm: fix matching "power management" field
+
+2006-07-12 16:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: make isLaptop() return true if
+ Type is "laptop", using dmitable entries for example (#23197)
+
+2006-07-12 15:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draknetprofile: add details about
+ profile modification (thanks Chty)
+
+2006-07-12 15:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: fully fix the typo
+
+2006-07-12 15:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/modules.pm: don't fail when preload modules can't
+ be loaded (#23674)
+
+2006-07-12 14:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: fix typo
+
+2006-07-12 14:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: differentiate local auth and NIS
+ auth (by reading yp.conf)
+
+2006-07-12 14:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: rewrite writing in yp.conf (for
+ NIS)
+
+2006-07-12 14:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: bcm43xx firmware support
+
+2006-07-12 14:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm,
+ perl-install/network/xdsl.pm: always reload module if a firmware
+ file is required
+
+2006-07-11 18:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/mount.pm: remove duplicated log
+ (run_program::run will log the mount command, and more nicely)
+ * perl-install/fs/mount.pm: drop option utf8 and iocharset=xxx
+ during install (esp. for cdrom mounting), otherwise we would
+ need to modprobe some nls_xxx (??)
+
+2006-07-11 18:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: use find_and_add_to_fstab() for
+ cdrom:// (so that we get the same behaviour as booting &
+ installing from cd)
+
+2006-07-11 18:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: don't do setup_postinstall_rpms()
+ if non interactive (since ask_change_cd will fail)
+
+2006-07-11 18:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps.pm: fix typo in log message
+
+2006-07-11 15:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: greatly increase the swap maxsize
+ (useful for swsuspend)
+
+2006-07-10 20:12 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: fix connection to AP passed as
+ argument (#23628)
+
+2006-07-10 19:31 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/list_modules.pm: add zd1211rw module in network/wireless
+
+2006-07-10 19:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: zd1211 support
+
+2006-07-10 19:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: handle prism2 drivers using
+ thirdparty layer
+
+2006-07-10 15:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix some errors reported by
+ perl_checker
+
+2006-07-10 15:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: switch to generic layer for
+ LAN and wireless
+
+2006-07-10 15:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection.pm: keep thirdparty settings
+
+2006-07-10 15:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: use
+ network::ethernet::check_device
+ * perl-install/network/ethernet.pm: check if network interface is
+ present before configuring network interface
+
+2006-07-10 15:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: remove useless sub
+ (network::ethernet is our base)
+
+2006-07-10 15:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: add wireless support using
+ network::connection
+
+2006-07-10 14:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: allow to pass additionnal
+ settings to build_ifcfg_settings
+
+2006-07-10 13:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm,
+ perl-install/install/share/rpmsrate,
+ perl-install/install/steps.pm: handle numlock with rpmsrate
+ ($o->{miscellaneous}{numlock} is dead, not backward
+ compatibility added)
+
+2006-07-10 13:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: fix typo
+
+2006-07-10 13:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/list.xml: X locales have moved
+
+2006-07-10 10:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: rename many pkgs to their
+ new names. remove many removed pkgs
+
+2006-07-10 10:14 Frederic Crozat <fcrozat at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: -clean GNOME dependencies
+ -don't install numlock on laptop
+
+2006-07-09 05:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.36-1mdv2007.0
+
+2006-07-09 05:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: conflicts with older rpmdrake
+
+2006-07-09 05:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: use another treeview for displaying the
+ packages
+
+2006-07-09 01:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/br.po: update
+
+2006-07-08 00:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: set up SCIM for indian
+ languages
+
+2006-07-07 18:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install, perl-install/standalone/drakclock: adapt server
+ parsing to previous commit
+
+2006-07-07 18:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install, perl-install/standalone/drakclock: sort ntp server
+ list by country
+
+2006-07-07 17:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/cpufreq.pm: better typo fix
+
+2006-07-07 17:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/cpufreq.pm: fix typo (Danny)
+
+2006-07-07 15:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: allow installing 2006
+ (/etc/modprobe.preload.d didn't exist in initscripts)
+
+2006-07-07 15:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: fix N() use
+
+2006-07-07 14:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/hd_gtk.pm: simplify
+
+2006-07-07 14:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/diskdrake/hd_gtk.pm: (main) compare untranslated
+ strings & properly check the return value
+
+2006-07-07 14:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/diskdrake/hd_gtk.pm: (main) make it more
+ understandable (#18840)
+
+2006-07-07 13:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: (need_migration) try
+ harder to explain (#21361)
+
+2006-07-07 12:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: be more friendly with
+ translators by providing them more time to
+ translate this string
+
+2006-07-07 10:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: s/CVS/SVN/
+
+2006-07-07 08:27 Pixel <pixel at mandriva.com>
+
+ * ChangeLog:
+
+2006-07-06 16:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: (Create): use a wrapped
+ list which looks nicer and is more user-friendly (only needed in
+ expert mode)
+
+2006-07-06 16:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install, perl-install/network/xdsl.pm: r78@inspiron: a |
+ 2006-07-06 20:06:51 +0200
+ don't take VPI/VCI settings as hex (#23557)
+
+2006-07-06 16:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install, perl-install/network/xdsl.pm: r77@inspiron: a |
+ 2006-07-06 20:03:18 +0200
+ fix undef array deref
+
+2006-07-06 15:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install, perl-install/cpufreq.pm: r51@inspiron: a |
+ 2006-07-06 19:09:39 +0200
+ handle new centrino model (#22914)
+ * perl-install, perl-install/network/ethernet.pm: r50@inspiron:
+ a | 2006-07-06 19:04:19 +0200
+ fix spacing
+
+2006-07-06 15:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install, perl-install/network/ethernet.pm: r49@inspiron:
+ a | 2006-07-06 18:57:49 +0200
+ add reminder about Zeroconf
+ * perl-install, perl-install/network/ethernet.pm: r48@inspiron:
+ a | 2006-07-06 18:56:20 +0200
+ automatically fill some static settings
+ * perl-install, perl-install/network/ethernet.pm: r47@inspiron:
+ a | 2006-07-06 18:53:23 +0200
+ add gateway field for static connections
+ * perl-install, perl-install/network/ethernet.pm: r46@inspiron:
+ a | 2006-07-06 18:52:26 +0200
+ fix a bunch of typos
+ * perl-install, perl-install/network/ethernet.pm: r45@inspiron:
+ a | 2006-07-06 18:43:28 +0200
+ add DNS settings
+ * perl-install, perl-install/network/ethernet.pm: r44@inspiron:
+ a | 2006-07-06 18:38:21 +0200
+ ask for hostname in address step
+
+2006-07-06 15:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install, perl-install/network/ethernet.pm: r43@inspiron:
+ a | 2006-07-06 18:35:21 +0200
+ DHCP host name is an advanced setting
+ * perl-install, perl-install/network/ethernet.pm: r42@inspiron:
+ a | 2006-07-06 18:30:06 +0200
+ use peer DNS by default for DHCP
+ * perl-install, perl-install/network/ethernet.pm: r41@inspiron:
+ a | 2006-07-06 18:28:33 +0200
+ move common control settings upper
+
+2006-07-06 15:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install, perl-install/network/ethernet.pm: r40@inspiron:
+ a | 2006-07-06 18:27:50 +0200
+ make ifplugd an advanced option
+
+2006-07-06 15:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install, perl-install/network/ethernet.pm: r39@inspiron:
+ a | 2006-07-06 18:26:12 +0200
+ drop confusing zeroconf protocol
+
+2006-07-06 15:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install, perl-install/network/connection.pm: r38@inspiron:
+ a | 2006-07-06 18:25:00 +0200
+ drop unused
+
+2006-07-06 15:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install, perl-install/network/connection.pm: r37@inspiron:
+ a | 2006-07-06 18:24:12 +0200
+ drop get_ifcfg_hash
+
+2006-07-06 15:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install, perl-install/network/connection.pm,
+ perl-install/network/ethernet.pm: r36@inspiron: a | 2006-07-06
+ 18:22:30 +0200
+ add network::connection::get_ifcfg_bool and use it
+
+2006-07-06 15:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install, perl-install/network/ethernet.pm: r35@inspiron:
+ a | 2006-07-06 17:01:50 +0200
+ use ->{ifcfg}
+ * perl-install, perl-install/network/connection.pm: r34@inspiron:
+ a | 2006-07-06 16:51:38 +0200
+ load ifcfg settings in ->{ifcfg}
+
+2006-07-06 16:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: (Create): use a wrapped
+ list which looks nicer and is more user-friendly (only needed in
+ expert mode)
+
+2006-07-06 16:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install, perl-install/network/xdsl.pm: r78@inspiron: a |
+ 2006-07-06 20:06:51 +0200
+ don't take VPI/VCI settings as hex (#23557)
+
+2006-07-06 16:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install, perl-install/network/xdsl.pm: r77@inspiron: a |
+ 2006-07-06 20:03:18 +0200
+ fix undef array deref
+
+2006-07-06 15:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install, perl-install/cpufreq.pm: r51@inspiron: a |
+ 2006-07-06 19:09:39 +0200
+ handle new centrino model (#22914)
+ * perl-install, perl-install/network/ethernet.pm: r50@inspiron:
+ a | 2006-07-06 19:04:19 +0200
+ fix spacing
+
+2006-07-06 15:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install, perl-install/network/ethernet.pm: r49@inspiron:
+ a | 2006-07-06 18:57:49 +0200
+ add reminder about Zeroconf
+ * perl-install, perl-install/network/ethernet.pm: r48@inspiron:
+ a | 2006-07-06 18:56:20 +0200
+ automatically fill some static settings
+ * perl-install, perl-install/network/ethernet.pm: r47@inspiron:
+ a | 2006-07-06 18:53:23 +0200
+ add gateway field for static connections
+ * perl-install, perl-install/network/ethernet.pm: r46@inspiron:
+ a | 2006-07-06 18:52:26 +0200
+ fix a bunch of typos
+ * perl-install, perl-install/network/ethernet.pm: r45@inspiron:
+ a | 2006-07-06 18:43:28 +0200
+ add DNS settings
+ * perl-install, perl-install/network/ethernet.pm: r44@inspiron:
+ a | 2006-07-06 18:38:21 +0200
+ ask for hostname in address step
+
+2006-07-06 15:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install, perl-install/network/ethernet.pm: r43@inspiron:
+ a | 2006-07-06 18:35:21 +0200
+ DHCP host name is an advanced setting
+ * perl-install, perl-install/network/ethernet.pm: r42@inspiron:
+ a | 2006-07-06 18:30:06 +0200
+ use peer DNS by default for DHCP
+ * perl-install, perl-install/network/ethernet.pm: r41@inspiron:
+ a | 2006-07-06 18:28:33 +0200
+ move common control settings upper
+
+2006-07-06 15:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install, perl-install/network/ethernet.pm: r40@inspiron:
+ a | 2006-07-06 18:27:50 +0200
+ make ifplugd an advanced option
+
+2006-07-06 15:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install, perl-install/network/ethernet.pm: r39@inspiron:
+ a | 2006-07-06 18:26:12 +0200
+ drop confusing zeroconf protocol
+
+2006-07-06 15:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install, perl-install/network/connection.pm: r38@inspiron:
+ a | 2006-07-06 18:25:00 +0200
+ drop unused
+
+2006-07-06 15:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install, perl-install/network/connection.pm: r37@inspiron:
+ a | 2006-07-06 18:24:12 +0200
+ drop get_ifcfg_hash
+
+2006-07-06 15:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install, perl-install/network/connection.pm,
+ perl-install/network/ethernet.pm: r36@inspiron: a | 2006-07-06
+ 18:22:30 +0200
+ add network::connection::get_ifcfg_bool and use it
+
+2006-07-06 15:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install, perl-install/network/ethernet.pm: r35@inspiron:
+ a | 2006-07-06 17:01:50 +0200
+ use ->{ifcfg}
+ * perl-install, perl-install/network/connection.pm: r34@inspiron:
+ a | 2006-07-06 16:51:38 +0200
+ load ifcfg settings in ->{ifcfg}
+
+2006-07-06 12:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: (part_possible_actions)
+ use a wrapped list which looks nicer and is more user-friendly
+
+2006-07-06 12:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: (ask_fromW) use a list with
+ columns if requested
+ * perl-install/diskdrake/interactive.pm: (part_possible_actions)
+ there's not point in enabling one to type in a
+ partition type that is unknown to diskdrake
+ * perl-install/diskdrake/interactive.pm: (part_possible_actions)
+ don't offer useless options for swap partitions
+
+2006-07-06 12:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm: -
+ move agressively clean_rpmdb_shared_regions() (#21502)
+ - rename rpmDbCleanLogs() into clean_rpmdb_shared_regions()
+
+2006-07-06 12:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: remove debug code
+ * perl-install/log.pm: don't log on tty3 in local_install
+
+2006-07-06 11:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install, perl-install/network/netconnect.pm:
+ r18@localhost: a | 2006-07-06 15:13:46 +0200
+ remove zeroconf configuration step (#21625)
+
+2006-07-06 11:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install, perl-install/network/netconnect.pm:
+ r17@localhost: a | 2006-07-06 15:10:39 +0200
+ remove unused and incorrect LAN protocol
+ * perl-install, perl-install/network/netconnect.pm:
+ r16@localhost: a | 2006-07-06 15:09:52 +0200
+ move unused message in the i18n cimetery
+ * perl-install, perl-install/network/wireless.pm: r15@localhost:
+ a | 2006-07-06 13:27:28 +0200
+ warn if RF kill switch is disabled
+
+2006-07-06 11:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install, perl-install/network/netconnect.pm:
+ r14@localhost: a | 2006-07-06 13:24:25 +0200
+ use full connection type description
+ * perl-install, perl-install/network/connection.pm:
+ r13@localhost: a | 2006-07-06 13:23:54 +0200
+ fix get_type_description
+ * perl-install, perl-install/network/wireless.pm: r12@localhost:
+ a | 2006-07-06 13:18:24 +0200
+ use network::ethernet as base
+ * perl-install, perl-install/network/netconnect.pm:
+ r11@localhost: a | 2006-07-06 13:10:13 +0200
+ allow to configure an unlisted network
+
+2006-07-06 11:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install, perl-install/network/ethernet.pm: r10@localhost:
+ a | 2006-07-05 19:42:58 +0200
+ initial generic layer support for ethernet
+ * perl-install, perl-install/network/connection.pm: r9@localhost:
+ a | 2006-07-05 19:32:37 +0200
+ use directly write_interface_settings
+ * perl-install, perl-install/network/network.pm: r8@localhost: a
+ | 2006-07-05 19:31:05 +0200
+ split get_ifcfg_file
+ * perl-install, perl-install/network/ethernet.pm: r7@localhost:
+ a | 2006-07-05 18:55:57 +0200
+ remove useless connect method (already implemented in
+ network::connection)
+
+2006-07-06 11:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install, perl-install/network/netconnect.pm: r6@localhost:
+ a | 2006-07-05 18:40:55 +0200
+ handle check_device as well
+ * perl-install, perl-install/network/cellular.pm,
+ perl-install/network/netconnect.pm: r5@localhost: a |
+ 2006-07-05 18:37:17 +0200
+ rename prepare_hardware as check_hardware
+
+2006-07-06 11:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install, perl-install/detect_devices.pm: r4@localhost: a
+ | 2006-07-05 18:33:11 +0200
+ add sysfs_device field in PCI device hash (path to sysfs device)
+
+2006-07-05 08:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: fix typo in ueagle-atm fir,mare
+ path (#23398Ã)
+
+2006-07-05 07:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: you need a "true fs" for /home (ie fat
+ not allowed) (bugzilla #23514)
+
+2006-07-04 13:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_auto_install.pm: do not display
+ "Press <Enter> to reboot" in local installs
+
+2006-07-04 13:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: add text_ref handling for 'Entry'
+
+2006-07-04 12:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/list.xml: fix for xorg7.1 on x86_64
+ * perl-install/install/steps_gtk.pm: (reallyChooseGroups)
+ temporary disable individual package selection b/c of
+ changes regarding rpmdrake
+
+2006-07-04 12:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * docs/HACKING: quota is now needed
+
+2006-07-04 12:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (ask_browse_tree_info) kill unused
+ arguments
+
+2006-07-03 18:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/cellular_providers.pm: yet another URL
+
+2006-07-03 18:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/cellular_providers.pm: add a new URL
+
+2006-07-03 17:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/cellular_providers.pm: add some URL pointers
+
+2006-06-30 16:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: remove test code: now use hdlists
+ if available, then media.cfg (still prefering hdlists when
+ available since there used to be media.cfg without name=xxx)
+
+2006-06-29 14:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection.pm,
+ perl-install/network/netconnect.pm: seperate loading of
+ interface settings
+
+2006-06-29 14:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: allow to supplement address
+ settings on focus_out
+
+2006-06-29 13:09 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/install/pixmaps/langs/lang-ca@valencia.png,
+ perl-install/install/pixmaps/langs/lang-ca@valencian.png:
+ ca@valencian, not ca@valencia
+
+2006-06-29 13:08 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm, perl-install/lang.pm: ca@valencian,
+ not ca@valencia
+
+2006-06-29 12:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/br.po: updater
+
+2006-06-29 12:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/uz@Latn.po: update (Mashrab
+ Kuvatov)
+
+2006-06-29 12:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/uz@Latn.po: update (Mashrab Kuvatov)
+
+2006-06-29 12:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/uz@Latn.po: update (Mashrab Kuvatov)
+
+2006-06-29 12:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/uz.po: update (Mashrab Kuvatov)
+
+2006-06-29 12:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/uz.po: update (Mashrab Kuvatov)
+
+2006-06-29 12:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/uz.po: update (Mashrab Kuvatov)
+
+2006-06-29 09:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm,
+ perl-install/network/mobile_data.pm,
+ perl-install/network/xdsl_consts.pm: remove from repository,
+ they've been renamed (but not removed by svn mv...)
+
+2006-06-29 02:11 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/standalone/po/id.po: Updated
+
+2006-06-29 02:00 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2006-06-29 00:58 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/install/share/po/id.po: Updated
+
+2006-06-28 12:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.35-1mdv2007.0
+
+2006-06-28 12:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: remove "Track network card
+ id (useful for laptops)" option (we do this by default using
+ udev rules anyway), and fix #23414 as a side effect
+
+2006-06-28 12:24 berthy
+
+ * perl-install/share/po/fr.po: Update french translation
+
+2006-06-28 11:53 berthy
+
+ * perl-install/standalone/po/fr.po: Update french translation
+
+2006-06-28 11:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/harddrake/autoconf.pm: configure CPU frequency
+ modules in harddrake and during install (will replace the
+ cpufreq service)
+ * perl-install/cpufreq.pm, perl-install/harddrake/data.pm,
+ perl-install/install/steps.pm,
+ perl-install/standalone/service_harddrake: configure CPU
+ frequency modules in harddrake and during install (will replace
+ the cpufreq service)
+
+2006-06-28 11:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: remove incorrect
+ comment
+ * perl-install/harddrake/autoconf.pm, perl-install/modules.pm:
+ move modprobe.preload.d code in modules::set_preload_modules
+
+2006-06-27 16:01 Pixel <pixel at mandriva.com>
+
+ * ChangeLog:
+
+2006-06-27 15:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: - handle nfs-iso
+ - add the nfs dir containing iso in fstab, but mounted by default
+ - do umount first phys_medium if it is not the stage2 phys_medium
+
+2006-06-27 14:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/mount.pm: handle re-mounting elsewhere using
+ mount --move
+
+2006-06-27 14:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: fix typo
+
+2006-06-27 15:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: - handle nfs-iso
+ - add the nfs dir containing iso in fstab, but mounted by default
+ - do umount first phys_medium if it is not the stage2 phys_medium
+
+2006-06-27 14:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/mount.pm: handle re-mounting elsewhere using
+ mount --move
+
+2006-06-27 14:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: fix typo
+
+2006-06-27 10:12 Pixel <pixel at mandriva.com>
+
+ * rescue/list.xml: add testdisk (together with gpart and rescuept
+ which we may deprecate sooner or later)
+
+2006-06-27 09:46 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/install/pixmaps/langs/lang-ca@valencia.png,
+ perl-install/keyboard.pm, perl-install/lang.pm: New lang
+ (variant) choice: "Catalan (Valencian)"
+
+2006-06-27 09:20 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: new locales
+
+2006-06-27 08:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: - don't bother umounting first
+ phys medium if clp is not on disk
+ (mainly for nfs installs using install/stage2/live)
+ - add support for disk-iso in stage2_phys_medium()
+ - add rel_path parameter to iso_phys_media() to be able to use
+ it for {stage2_phys_medium}
+ - add entry for the mountpoint containing the iso files in fstab
+
+2006-06-26 16:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/install2.pm:
+ $o->{stage2_phys_medium} is needed early for
+ install::any::drakx_version()
+
+2006-06-26 15:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/mount.pm, perl-install/install/commands.pm,
+ perl-install/install/share/list.xml,
+ perl-install/install/share/symlinks: use the real umount
+ command, no more the syscall. /etc/mtab is no more a symlink to
+ /proc/mounts. this allows mount/umount of loopback file in a
+ simple way
+
+2006-06-26 15:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_auto_install.pm:
+ install::steps::exitInstall must be called in when using
+ {autoExitInstall}, handle it cleanly
+
+2006-06-26 14:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: special case for cdrom hopefully
+ now handled more cleanly
+
+2006-06-26 14:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: fix typo in commit r38050
+
+2006-06-26 14:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: call phys_medium_is_mounted with
+ the final phys_medium struct
+
+2006-06-26 14:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/mount.pm: force type "iso9660" instead of "auto"
+ when mounting cdrom during install
+
+2006-06-26 13:49 stewb
+
+ * perl-install/standalone/drakbackup: Fix #23368 - freeze at
+ CD/DVD media selection
+
+2006-06-26 13:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: nicer log message
+
+2006-06-26 13:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: use internal_error()
+ * perl-install/any.pm, perl-install/install/any.pm,
+ perl-install/install/install2.pm, perl-install/install/media.pm,
+ perl-install/install/steps.pm: call stage2_phys_medium() only
+ once, save the result in $o->{stage2_phys_medium}
+ (since /tmp/hdimage may be mounted somewhere else)
+
+2006-06-26 12:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/mount.pm: - don't umount partitions mounted
+ non-rooted (ie having {real_mntpoint})
+ - when {real_mntpoint} is set, isMounted is set too
+
+2006-06-26 12:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm, perl-install/install/steps.pm:
+ create install::media::phys_medium_to_string() and use it
+
+2006-06-26 12:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs.pm: when merging /proc/mounts "loose", merge
+ real_mntpoint (not only isMounted)
+ * perl-install/fs.pm: no need to set mount point /mnt/hd for hd
+ installs (now handled in install::media::find_and_add_to_fstab())
+
+2006-06-26 11:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: call phys_medium_is_mounted()
+ with the drakx:// phys_medium
+
+2006-06-26 10:29 Pixel <pixel at mandriva.com>
+
+ * tools/mdkinst_stage2_tool: fix exit code when not cleanup
+
+2006-06-26 10:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile, tools/mdkinst_stage2_tool: make
+ mdkinst_stage2_tool more flexible
+
+2006-06-26 09:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: better regexp
+
+2006-06-26 07:54 Pixel <pixel at mandriva.com>
+
+ * ChangeLog:
+
+2006-06-26 07:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: fix typo (breaking http/ftp
+ installs)
+
+2006-06-26 07:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: fix typo (breaking http/ftp
+ installs)
+
+2006-06-23 20:43 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/install/share/po/af.po,
+ perl-install/install/share/po/am.po,
+ perl-install/install/share/po/ar.po,
+ perl-install/install/share/po/az.po,
+ perl-install/install/share/po/be.po,
+ perl-install/install/share/po/bg.po,
+ perl-install/install/share/po/bn.po,
+ perl-install/install/share/po/bs.po,
+ perl-install/install/share/po/ca.po,
+ perl-install/install/share/po/cs.po,
+ perl-install/install/share/po/da.po,
+ perl-install/install/share/po/de.po,
+ perl-install/install/share/po/el.po,
+ perl-install/install/share/po/eo.po,
+ perl-install/install/share/po/es.po,
+ perl-install/install/share/po/eu.po,
+ perl-install/install/share/po/fa.po,
+ perl-install/install/share/po/fi.po,
+ perl-install/install/share/po/fur.po,
+ perl-install/install/share/po/ga.po,
+ perl-install/install/share/po/gl.po,
+ perl-install/install/share/po/he.po,
+ perl-install/install/share/po/hi.po,
+ perl-install/install/share/po/hr.po,
+ perl-install/install/share/po/hu.po,
+ perl-install/install/share/po/id.po,
+ perl-install/install/share/po/is.po,
+ perl-install/install/share/po/it.po,
+ perl-install/install/share/po/ko.po,
+ perl-install/install/share/po/ky.po,
+ perl-install/install/share/po/lt.po,
+ perl-install/install/share/po/ltg.po,
+ perl-install/install/share/po/lv.po,
+ perl-install/install/share/po/mk.po,
+ perl-install/install/share/po/mn.po,
+ perl-install/install/share/po/ms.po,
+ perl-install/install/share/po/mt.po,
+ perl-install/install/share/po/nb.po,
+ perl-install/install/share/po/nl.po,
+ perl-install/install/share/po/nn.po,
+ perl-install/install/share/po/pa_IN.po,
+ perl-install/install/share/po/pl.po,
+ perl-install/install/share/po/pt.po,
+ perl-install/install/share/po/pt_BR.po,
+ perl-install/install/share/po/ro.po,
+ perl-install/install/share/po/ru.po,
+ perl-install/install/share/po/sc.po,
+ perl-install/install/share/po/sk.po,
+ perl-install/install/share/po/sl.po,
+ perl-install/install/share/po/sq.po,
+ perl-install/install/share/po/sr.po,
+ perl-install/install/share/po/sr@Latn.po,
+ perl-install/install/share/po/sv.po,
+ perl-install/install/share/po/ta.po,
+ perl-install/install/share/po/tg.po,
+ perl-install/install/share/po/th.po,
+ perl-install/install/share/po/tl.po,
+ perl-install/install/share/po/tr.po,
+ perl-install/install/share/po/uk.po,
+ perl-install/install/share/po/uz.po,
+ perl-install/install/share/po/uz@Latn.po,
+ perl-install/install/share/po/vi.po,
+ perl-install/install/share/po/wa.po,
+ perl-install/install/share/po/zh_CN.po,
+ perl-install/install/share/po/zh_TW.po: using an existing
+ translation
+
+2006-06-23 20:36 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/install/help/po/gl.po: updated Galician file
+
+2006-06-23 20:32 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/po/et.po: fixed missing \n
+
+2006-06-23 20:30 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/po/af.po,
+ perl-install/standalone/po/ar.po,
+ perl-install/standalone/po/az.po,
+ perl-install/standalone/po/bg.po,
+ perl-install/standalone/po/bn.po,
+ perl-install/standalone/po/br.po,
+ perl-install/standalone/po/bs.po,
+ perl-install/standalone/po/ca.po,
+ perl-install/standalone/po/cs.po,
+ perl-install/standalone/po/cy.po,
+ perl-install/standalone/po/da.po,
+ perl-install/standalone/po/de.po,
+ perl-install/standalone/po/el.po,
+ perl-install/standalone/po/eo.po,
+ perl-install/standalone/po/es.po,
+ perl-install/standalone/po/eu.po,
+ perl-install/standalone/po/fa.po,
+ perl-install/standalone/po/fi.po,
+ perl-install/standalone/po/fr.po,
+ perl-install/standalone/po/fur.po,
+ perl-install/standalone/po/ga.po,
+ perl-install/standalone/po/gl.po,
+ perl-install/standalone/po/he.po,
+ perl-install/standalone/po/hi.po,
+ perl-install/standalone/po/hr.po,
+ perl-install/standalone/po/hu.po,
+ perl-install/standalone/po/id.po,
+ perl-install/standalone/po/is.po,
+ perl-install/standalone/po/it.po,
+ perl-install/standalone/po/ja.po,
+ perl-install/standalone/po/ko.po,
+ perl-install/standalone/po/ky.po,
+ perl-install/standalone/po/lt.po,
+ perl-install/standalone/po/ltg.po,
+ perl-install/standalone/po/lv.po,
+ perl-install/standalone/po/mk.po,
+ perl-install/standalone/po/mt.po,
+ perl-install/standalone/po/nb.po,
+ perl-install/standalone/po/nl.po,
+ perl-install/standalone/po/nn.po,
+ perl-install/standalone/po/pa_IN.po,
+ perl-install/standalone/po/pl.po,
+ perl-install/standalone/po/pt.po,
+ perl-install/standalone/po/pt_BR.po,
+ perl-install/standalone/po/ro.po,
+ perl-install/standalone/po/ru.po,
+ perl-install/standalone/po/sc.po,
+ perl-install/standalone/po/sk.po,
+ perl-install/standalone/po/sl.po,
+ perl-install/standalone/po/sq.po,
+ perl-install/standalone/po/sr.po,
+ perl-install/standalone/po/sr@Latn.po,
+ perl-install/standalone/po/sv.po,
+ perl-install/standalone/po/ta.po,
+ perl-install/standalone/po/tg.po,
+ perl-install/standalone/po/tl.po,
+ perl-install/standalone/po/tr.po,
+ perl-install/standalone/po/uk.po,
+ perl-install/standalone/po/uz.po,
+ perl-install/standalone/po/uz@Latn.po,
+ perl-install/standalone/po/vi.po,
+ perl-install/standalone/po/wa.po,
+ perl-install/standalone/po/zh_CN.po,
+ perl-install/standalone/po/zh_TW.po: updated po files
+
+2006-06-23 20:20 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/af.po, perl-install/share/po/am.po,
+ perl-install/share/po/ar.po, perl-install/share/po/az.po,
+ perl-install/share/po/bg.po, perl-install/share/po/bn.po,
+ perl-install/share/po/bs.po, perl-install/share/po/ca.po,
+ perl-install/share/po/cs.po, perl-install/share/po/cy.po,
+ perl-install/share/po/da.po, perl-install/share/po/de.po,
+ perl-install/share/po/el.po, perl-install/share/po/eo.po,
+ perl-install/share/po/es.po, perl-install/share/po/et.po,
+ perl-install/share/po/eu.po, perl-install/share/po/fa.po,
+ perl-install/share/po/fi.po, perl-install/share/po/ga.po,
+ perl-install/share/po/gl.po, perl-install/share/po/he.po,
+ perl-install/share/po/hi.po, perl-install/share/po/hr.po,
+ perl-install/share/po/hu.po, perl-install/share/po/id.po,
+ perl-install/share/po/is.po, perl-install/share/po/it.po,
+ perl-install/share/po/ja.po, perl-install/share/po/ky.po,
+ perl-install/share/po/ltg.po, perl-install/share/po/mk.po,
+ perl-install/share/po/mn.po, perl-install/share/po/mt.po,
+ perl-install/share/po/nb.po, perl-install/share/po/nl.po,
+ perl-install/share/po/nn.po, perl-install/share/po/pa_IN.po,
+ perl-install/share/po/pl.po, perl-install/share/po/pt.po,
+ perl-install/share/po/pt_BR.po, perl-install/share/po/ro.po,
+ perl-install/share/po/ru.po, perl-install/share/po/sc.po,
+ perl-install/share/po/sk.po, perl-install/share/po/sl.po,
+ perl-install/share/po/sq.po, perl-install/share/po/sr.po,
+ perl-install/share/po/sr@Latn.po, perl-install/share/po/sv.po,
+ perl-install/share/po/ta.po, perl-install/share/po/tg.po,
+ perl-install/share/po/tl.po, perl-install/share/po/tr.po,
+ perl-install/share/po/uk.po, perl-install/share/po/uz.po,
+ perl-install/share/po/uz@Latn.po, perl-install/share/po/vi.po,
+ perl-install/share/po/wa.po, perl-install/share/po/zh_TW.po:
+ updated po files
+
+2006-06-23 17:56 Pixel <pixel at mandriva.com>
+
+ * ChangeLog:
+
+2006-06-23 17:53 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: syslinux-graphic is no more (todo: handle gfxboot)
+
+2006-06-23 17:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: fix hd installs
+
+2006-06-23 17:53 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: syslinux-graphic is no more (todo: handle gfxboot)
+
+2006-06-23 17:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: fix hd installs
+
+2006-06-23 15:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/br.po: update
+
+2006-06-23 15:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/ja.po: update (BANDO Yukiko)
+
+2006-06-23 15:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/ja.po: update (BANDO Yukiko)
+ * perl-install/standalone/po/ja.po: update (BANDO Yukiko)
+
+2006-06-23 12:26 Marek Laane <bald at starman.ee>
+
+ * perl-install/standalone/po/et.po: Updated Estonian translation.
+
+2006-06-23 12:08 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po: Updated Estonian translation.
+
+2006-06-23 12:02 Pixel <pixel at mandriva.com>
+
+ * kernel/update_kernel: no xbox kernel anymore
+
+2006-06-23 11:58 Pixel <pixel at mandriva.com>
+
+ * ChangeLog:
+
+2006-06-23 11:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/install2.pm, perl-install/install/media.pm,
+ perl-install/install/steps.pm,
+ perl-install/install/steps_interactive.pm: umount media & eject
+ cdrom at exitInstall step
+
+2006-06-23 11:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/media.pm,
+ perl-install/install/steps_interactive.pm: - replace {path} with
+ a call to install::media::path() for phys_mediums
+ - after umounting a stage2 phys_medium, remount it in the final
+ mntpoint
+ - umount_phys_medium logs the error and list files still open
+ - add {mntpoint} to cdrom stage2 phys_medium
+ - ensure we know the stage2 phys medium is mounted in
+ %mounted_media
+ - if a cdrom was mounted and we want another one, do not try to
+ mount cdrom just after umounting it
+ - we creating phys_mediums for other cdroms, unset
+ {real_mntpoint}
+ - simplify ejectCdrom
+
+2006-06-23 11:18 Marek Laane <bald at starman.ee>
+
+ * perl-install/install/share/po/et.po: Updated Estonian
+ translation.
+
+2006-06-23 10:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/mount.pm: correctly umount part with both
+ {real_mntpoint} and {mntpoint}
+
+2006-06-23 11:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/install2.pm, perl-install/install/media.pm,
+ perl-install/install/steps.pm,
+ perl-install/install/steps_interactive.pm: umount media & eject
+ cdrom at exitInstall step
+
+2006-06-23 11:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/media.pm,
+ perl-install/install/steps_interactive.pm: - replace {path} with
+ a call to install::media::path() for phys_mediums
+ - after umounting a stage2 phys_medium, remount it in the final
+ mntpoint
+ - umount_phys_medium logs the error and list files still open
+ - add {mntpoint} to cdrom stage2 phys_medium
+ - ensure we know the stage2 phys medium is mounted in
+ %mounted_media
+ - if a cdrom was mounted and we want another one, do not try to
+ mount cdrom just after umounting it
+ - we creating phys_mediums for other cdroms, unset
+ {real_mntpoint}
+ - simplify ejectCdrom
+
+2006-06-23 11:18 Marek Laane <bald at starman.ee>
+
+ * perl-install/install/share/po/et.po: Updated Estonian
+ translation.
+
+2006-06-23 10:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/mount.pm: correctly umount part with both
+ {real_mntpoint} and {mntpoint}
+
+2006-06-23 09:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/crypto.pm,
+ perl-install/install/media.pm, perl-install/install/pkgs.pm:
+ have back {name} for mediums, since it can differ for the same
+ phys_medium
+ (eg: cooker where main and contrib are on the same phys_medium
+ but with
+ different names. {name} should be used to find the good
+ phys_medium only for
+ iso files and cdroms)
+
+2006-06-23 08:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: put back support for cdrom
+ installs (still broken)
+
+2006-06-23 08:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: log found iso files
+
+2006-06-23 07:29 Pixel <pixel at mandriva.com>
+
+ * .: add ChangeLog.bak to svn:ignore
+
+2006-06-23 07:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: add debug code (but disactivated
+ at the moment
+ )
+
+2006-06-23 07:20 berthy
+
+ * perl-install/standalone/po/fr.po: Update french translation
+
+2006-06-22 19:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: perl_checko cleanup
+
+2006-06-22 17:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: move the Fn-File require where
+ appropriate
+
+2006-06-22 16:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.34-1mdv2007.0
+
+2006-06-22 16:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: require perl-File-FnMatch
+
+2006-06-22 15:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: fix getFile_stage2 call in loadO
+ * perl-install/install/media.pm: fix stage2_phys_medium for ftp &
+ http
+
+2006-06-22 15:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: - stage2_phys_medium is already
+ mounted
+ - if the nfs server is already in fstab, use that entry
+
+2006-06-22 15:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: is analyse_kernel_name() still
+ needed? shouldn't it use bootloader.pm much better code? anyway
+ adding kernel-linus and kernel-linus-smp
+
+2006-06-22 14:40 Frederic Crozat <fcrozat at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: Add gcalctool for default
+ GNOME install
+
+2006-06-22 14:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm: clean
+ rpmdb state files before using db for the first time (useful for
+ installs without formatting "/", ie mostly for testing)
+
+2006-06-22 14:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: correctly configure urpmi for
+ drakx:// on nfs
+
+2006-06-22 13:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/crypto.pm,
+ perl-install/install/media.pm: - rework install_urpmi, make it
+ work again
+ - {with_hdlist} is not needed anymore, we use the per medium
+ hdlist.cz directly
+ - nicer {fakemedium} value (the name used in urpmi.cfg)
+ - add the iso files in fstab
+ - simplify the mount point used for iso files
+ - {name} is a phys_medium attribute, not a medium one
+ - for iso files on nfs, configure the nfs mount point to be
+ mounted at boot
+ (since urpmi can't handle mounting both the nfs + the iso file)
+
+2006-06-22 13:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm, perl-install/fs/mount.pm:
+ rely on the mount command to handle mounting loopback file
+ (without encryption)
+
+2006-06-22 13:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (Gtk2::Banner->new) fix icon position
+ when not using the default 75 height
+
+2006-06-22 13:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (Gtk2::Banner->new) fix text position
+ when not using the default 75 height
+
+2006-06-22 12:56 Frederic Crozat <fcrozat at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: Add gnome-power-manager for
+ GNOME laptops
+
+2006-06-22 12:33 Pixel <pixel at mandriva.com>
+
+ * tools/drakx-in-chroot: handle Xephyr (used when Xnest not
+ available)
+
+2006-06-22 08:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: move hplip & sane various
+ pkgs to NOCOPY (we were copying 160MB of pkgs)
+
+2006-06-22 08:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: seldom used pkgs must be in
+ NOCOPY (xorg-x11-glide-module Glide_V3-DRI Glide_V5)
+
+2006-06-22 08:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: - adapt to x11 pkgs
+ currently installed by XFdrake
+ - remove seldom used (xorg-x11-glide-module Glide_V3-DRI
+ Glide_V5)
+ - remove Mesa (obsolete??)
+
+2006-06-21 16:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: package
+ /etc/sysconfig/harddrake2/kernel so that we don't try to
+ autoconf the mouse on first boot b/c of a dummy kernel version
+ change
+
+2006-06-21 16:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: simplify. fix previous commit
+
+2006-06-21 15:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: make things more explicit
+
+2006-06-21 15:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/br.po,
+ perl-install/standalone/po/fr.po: update
+
+2006-06-21 15:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/af.po,
+ perl-install/standalone/po/am.po,
+ perl-install/standalone/po/ar.po,
+ perl-install/standalone/po/az.po,
+ perl-install/standalone/po/be.po,
+ perl-install/standalone/po/bg.po,
+ perl-install/standalone/po/bn.po,
+ perl-install/standalone/po/br.po,
+ perl-install/standalone/po/bs.po,
+ perl-install/standalone/po/ca.po,
+ perl-install/standalone/po/cs.po,
+ perl-install/standalone/po/cy.po,
+ perl-install/standalone/po/da.po,
+ perl-install/standalone/po/de.po,
+ perl-install/standalone/po/el.po,
+ perl-install/standalone/po/eo.po,
+ perl-install/standalone/po/es.po,
+ perl-install/standalone/po/et.po,
+ perl-install/standalone/po/eu.po,
+ perl-install/standalone/po/fa.po,
+ perl-install/standalone/po/fi.po,
+ perl-install/standalone/po/fr.po,
+ perl-install/standalone/po/fur.po,
+ perl-install/standalone/po/ga.po,
+ perl-install/standalone/po/gl.po,
+ perl-install/standalone/po/he.po,
+ perl-install/standalone/po/hi.po,
+ perl-install/standalone/po/hr.po,
+ perl-install/standalone/po/hu.po,
+ perl-install/standalone/po/id.po,
+ perl-install/standalone/po/is.po,
+ perl-install/standalone/po/it.po,
+ perl-install/standalone/po/ja.po,
+ perl-install/standalone/po/ko.po,
+ perl-install/standalone/po/ky.po,
+ perl-install/standalone/po/libDrakX-standalone.pot,
+ perl-install/standalone/po/lt.po,
+ perl-install/standalone/po/ltg.po,
+ perl-install/standalone/po/lv.po,
+ perl-install/standalone/po/mk.po,
+ perl-install/standalone/po/mn.po,
+ perl-install/standalone/po/ms.po,
+ perl-install/standalone/po/mt.po,
+ perl-install/standalone/po/nb.po,
+ perl-install/standalone/po/nl.po,
+ perl-install/standalone/po/nn.po,
+ perl-install/standalone/po/pa_IN.po,
+ perl-install/standalone/po/pl.po,
+ perl-install/standalone/po/pt.po,
+ perl-install/standalone/po/pt_BR.po,
+ perl-install/standalone/po/ro.po,
+ perl-install/standalone/po/ru.po,
+ perl-install/standalone/po/sc.po,
+ perl-install/standalone/po/sk.po,
+ perl-install/standalone/po/sl.po,
+ perl-install/standalone/po/sq.po,
+ perl-install/standalone/po/sr.po,
+ perl-install/standalone/po/sr@Latn.po,
+ perl-install/standalone/po/sv.po,
+ perl-install/standalone/po/ta.po,
+ perl-install/standalone/po/tg.po,
+ perl-install/standalone/po/th.po,
+ perl-install/standalone/po/tl.po,
+ perl-install/standalone/po/tr.po,
+ perl-install/standalone/po/uk.po,
+ perl-install/standalone/po/uz.po,
+ perl-install/standalone/po/uz@Latn.po,
+ perl-install/standalone/po/vi.po,
+ perl-install/standalone/po/wa.po,
+ perl-install/standalone/po/zh_CN.po,
+ perl-install/standalone/po/zh_TW.po: sync with code
+
+2006-06-21 15:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: remove debug code
+ * perl-install/install/media.pm: setup_postinstall_rpms(): really
+ copy all dependencies
+
+2006-06-21 15:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/cy.po: update
+
+2006-06-21 15:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/br.po,
+ perl-install/install/share/po/fr.po,
+ perl-install/share/po/br.po, perl-install/share/po/fr.po: update
+
+2006-06-21 15:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm, perl-install/install/pkgs.pm: -
+ fix handling of CD1 pkgs copied on disks
+ - when mounting first CD, allow interactive prompting by
+ checking availability of media_info directory
+ - setup_postinstall_rpms() is now working (well partially,
+ toCopy rpm deps are not all copied yet)
+
+2006-06-21 14:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive.pm: better error case
+
+2006-06-21 14:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/DrakX.pot,
+ perl-install/install/share/po/af.po,
+ perl-install/install/share/po/am.po,
+ perl-install/install/share/po/ar.po,
+ perl-install/install/share/po/az.po,
+ perl-install/install/share/po/be.po,
+ perl-install/install/share/po/bg.po,
+ perl-install/install/share/po/bn.po,
+ perl-install/install/share/po/br.po,
+ perl-install/install/share/po/bs.po,
+ perl-install/install/share/po/ca.po,
+ perl-install/install/share/po/cs.po,
+ perl-install/install/share/po/cy.po,
+ perl-install/install/share/po/da.po,
+ perl-install/install/share/po/de.po,
+ perl-install/install/share/po/el.po,
+ perl-install/install/share/po/eo.po,
+ perl-install/install/share/po/es.po,
+ perl-install/install/share/po/et.po,
+ perl-install/install/share/po/eu.po,
+ perl-install/install/share/po/fa.po,
+ perl-install/install/share/po/fi.po,
+ perl-install/install/share/po/fr.po,
+ perl-install/install/share/po/fur.po,
+ perl-install/install/share/po/ga.po,
+ perl-install/install/share/po/gl.po,
+ perl-install/install/share/po/he.po,
+ perl-install/install/share/po/hi.po,
+ perl-install/install/share/po/hr.po,
+ perl-install/install/share/po/hu.po,
+ perl-install/install/share/po/id.po,
+ perl-install/install/share/po/is.po,
+ perl-install/install/share/po/it.po,
+ perl-install/install/share/po/ja.po,
+ perl-install/install/share/po/ko.po,
+ perl-install/install/share/po/ky.po,
+ perl-install/install/share/po/lt.po,
+ perl-install/install/share/po/ltg.po,
+ perl-install/install/share/po/lv.po,
+ perl-install/install/share/po/mk.po,
+ perl-install/install/share/po/mn.po,
+ perl-install/install/share/po/ms.po,
+ perl-install/install/share/po/mt.po,
+ perl-install/install/share/po/nb.po,
+ perl-install/install/share/po/nl.po,
+ perl-install/install/share/po/nn.po,
+ perl-install/install/share/po/pa_IN.po,
+ perl-install/install/share/po/pl.po,
+ perl-install/install/share/po/pt.po,
+ perl-install/install/share/po/pt_BR.po,
+ perl-install/install/share/po/ro.po,
+ perl-install/install/share/po/ru.po,
+ perl-install/install/share/po/sc.po,
+ perl-install/install/share/po/sk.po,
+ perl-install/install/share/po/sl.po,
+ perl-install/install/share/po/sq.po,
+ perl-install/install/share/po/sr.po,
+ perl-install/install/share/po/sr@Latn.po,
+ perl-install/install/share/po/sv.po,
+ perl-install/install/share/po/ta.po,
+ perl-install/install/share/po/tg.po,
+ perl-install/install/share/po/th.po,
+ perl-install/install/share/po/tl.po,
+ perl-install/install/share/po/tr.po,
+ perl-install/install/share/po/uk.po,
+ perl-install/install/share/po/uz.po,
+ perl-install/install/share/po/uz@Latn.po,
+ perl-install/install/share/po/vi.po,
+ perl-install/install/share/po/wa.po,
+ perl-install/install/share/po/zh_CN.po,
+ perl-install/install/share/po/zh_TW.po: sync with code
+
+2006-06-21 14:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/af.po, perl-install/share/po/am.po,
+ perl-install/share/po/ar.po, perl-install/share/po/az.po,
+ perl-install/share/po/be.po, perl-install/share/po/bg.po,
+ perl-install/share/po/bn.po, perl-install/share/po/br.po,
+ perl-install/share/po/bs.po, perl-install/share/po/ca.po,
+ perl-install/share/po/cs.po, perl-install/share/po/cy.po,
+ perl-install/share/po/da.po, perl-install/share/po/de.po,
+ perl-install/share/po/el.po, perl-install/share/po/eo.po,
+ perl-install/share/po/es.po, perl-install/share/po/et.po,
+ perl-install/share/po/eu.po, perl-install/share/po/fa.po,
+ perl-install/share/po/fi.po, perl-install/share/po/fr.po,
+ perl-install/share/po/fur.po, perl-install/share/po/ga.po,
+ perl-install/share/po/gl.po, perl-install/share/po/he.po,
+ perl-install/share/po/hi.po, perl-install/share/po/hr.po,
+ perl-install/share/po/hu.po, perl-install/share/po/id.po,
+ perl-install/share/po/is.po, perl-install/share/po/it.po,
+ perl-install/share/po/ja.po, perl-install/share/po/ko.po,
+ perl-install/share/po/ky.po, perl-install/share/po/libDrakX.pot,
+ perl-install/share/po/lt.po, perl-install/share/po/ltg.po,
+ perl-install/share/po/lv.po, perl-install/share/po/mk.po,
+ perl-install/share/po/mn.po, perl-install/share/po/ms.po,
+ perl-install/share/po/mt.po, perl-install/share/po/nb.po,
+ perl-install/share/po/nl.po, perl-install/share/po/nn.po,
+ perl-install/share/po/pa_IN.po, perl-install/share/po/pl.po,
+ perl-install/share/po/pt.po, perl-install/share/po/pt_BR.po,
+ perl-install/share/po/ro.po, perl-install/share/po/ru.po,
+ perl-install/share/po/sc.po, perl-install/share/po/sk.po,
+ perl-install/share/po/sl.po, perl-install/share/po/sq.po,
+ perl-install/share/po/sr.po, perl-install/share/po/sr@Latn.po,
+ perl-install/share/po/sv.po, perl-install/share/po/ta.po,
+ perl-install/share/po/tg.po, perl-install/share/po/th.po,
+ perl-install/share/po/tl.po, perl-install/share/po/tr.po,
+ perl-install/share/po/uk.po, perl-install/share/po/uz.po,
+ perl-install/share/po/uz@Latn.po, perl-install/share/po/vi.po,
+ perl-install/share/po/wa.po, perl-install/share/po/zh_CN.po,
+ perl-install/share/po/zh_TW.po: sync with code
+
+2006-06-21 14:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: handle both old and new kernels
+ for usb sysfs fields as well, to fill usb_vendor/id and fix
+ isKeyUsb()
+
+2006-06-21 14:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.33-1mdv2007.0
+
+2006-06-21 14:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: ejectCdrom() now needs a parameter (this
+ would need more cleanup)
+
+2006-06-21 14:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/wizards.pm: revert bogus commit r37666 that readded
+ ref on ref support
+
+2006-06-21 13:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: "Old compatibility (non UTF-8) encoding"
+ instead of "Use Unicode by default"
+
+2006-06-21 13:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: revert part of the commit whihc was
+ overriding given {utf8}
+
+2006-06-21 13:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: add address configuration
+ step
+
+2006-06-21 13:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draknfs: enhanced layout for advanced
+ help
+
+2006-06-21 13:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (markup_to_TextView_format) handle
+ Gtk2::Label's <big> markup for TextViews
+
+2006-06-21 13:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive.pm: (markup_simplify) do not drop
+ "<big>" markup
+
+2006-06-21 13:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: remove kernel-2.4 and
+ ipchains
+
+2006-06-21 13:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/convert,
+ perl-install/standalone/drakedm,
+ perl-install/standalone/drakhelp,
+ perl-install/standalone/drakhosts,
+ perl-install/standalone/drakids,
+ perl-install/standalone/draknfs,
+ perl-install/standalone/draksplash2,
+ perl-install/standalone/drakvpn,
+ perl-install/standalone/localedrake,
+ perl-install/standalone/net_applet,
+ perl-install/standalone/service_harddrake.sh,
+ perl-install/standalone/service_harddrake_confirm: set
+ executable bit
+
+2006-06-21 12:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/af.po,
+ perl-install/standalone/po/am.po,
+ perl-install/standalone/po/ar.po,
+ perl-install/standalone/po/az.po,
+ perl-install/standalone/po/be.po,
+ perl-install/standalone/po/bg.po,
+ perl-install/standalone/po/bn.po,
+ perl-install/standalone/po/br.po,
+ perl-install/standalone/po/bs.po,
+ perl-install/standalone/po/ca.po,
+ perl-install/standalone/po/cs.po,
+ perl-install/standalone/po/cy.po,
+ perl-install/standalone/po/da.po,
+ perl-install/standalone/po/de.po,
+ perl-install/standalone/po/el.po,
+ perl-install/standalone/po/eo.po,
+ perl-install/standalone/po/es.po,
+ perl-install/standalone/po/et.po,
+ perl-install/standalone/po/eu.po,
+ perl-install/standalone/po/fa.po,
+ perl-install/standalone/po/fi.po,
+ perl-install/standalone/po/fr.po,
+ perl-install/standalone/po/fur.po,
+ perl-install/standalone/po/ga.po,
+ perl-install/standalone/po/gl.po,
+ perl-install/standalone/po/he.po,
+ perl-install/standalone/po/hi.po,
+ perl-install/standalone/po/hr.po,
+ perl-install/standalone/po/hu.po,
+ perl-install/standalone/po/id.po,
+ perl-install/standalone/po/is.po,
+ perl-install/standalone/po/it.po,
+ perl-install/standalone/po/ja.po,
+ perl-install/standalone/po/ko.po,
+ perl-install/standalone/po/ky.po,
+ perl-install/standalone/po/libDrakX-standalone.pot,
+ perl-install/standalone/po/lt.po,
+ perl-install/standalone/po/ltg.po,
+ perl-install/standalone/po/lv.po,
+ perl-install/standalone/po/mk.po,
+ perl-install/standalone/po/mn.po,
+ perl-install/standalone/po/ms.po,
+ perl-install/standalone/po/mt.po,
+ perl-install/standalone/po/nb.po,
+ perl-install/standalone/po/nl.po,
+ perl-install/standalone/po/nn.po,
+ perl-install/standalone/po/pa_IN.po,
+ perl-install/standalone/po/pl.po,
+ perl-install/standalone/po/pt.po,
+ perl-install/standalone/po/pt_BR.po,
+ perl-install/standalone/po/ro.po,
+ perl-install/standalone/po/ru.po,
+ perl-install/standalone/po/sc.po,
+ perl-install/standalone/po/sk.po,
+ perl-install/standalone/po/sl.po,
+ perl-install/standalone/po/sq.po,
+ perl-install/standalone/po/sr.po,
+ perl-install/standalone/po/sr@Latn.po,
+ perl-install/standalone/po/sv.po,
+ perl-install/standalone/po/ta.po,
+ perl-install/standalone/po/tg.po,
+ perl-install/standalone/po/th.po,
+ perl-install/standalone/po/tl.po,
+ perl-install/standalone/po/tr.po,
+ perl-install/standalone/po/uk.po,
+ perl-install/standalone/po/uz.po,
+ perl-install/standalone/po/uz@Latn.po,
+ perl-install/standalone/po/vi.po,
+ perl-install/standalone/po/wa.po,
+ perl-install/standalone/po/zh_CN.po,
+ perl-install/standalone/po/zh_TW.po: sync with latest draknfs
+ changes
+
+2006-06-21 12:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draknfs: fix previous commit (smoother
+ advanced help) w/o breaking the dialog layout
+
+2006-06-21 12:36 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: fix redundant ":" in advanced
+ help, and now check directory to share
+
+2006-06-21 12:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm, perl-install/install/steps.pm,
+ perl-install/install/steps_interactive.pm: -
+ change_phys_medium() takes a relative file name (getFile_ was
+ giving it absolute whereas some other call was giving it
+ relative)
+ - create physical media for each cdroms
+
+2006-06-21 12:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection.pm: guess onboot and userctl
+ settings from ifcfg
+
+2006-06-21 11:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection.pm,
+ perl-install/network/netconnect.pm: correctly guess metric
+ settings for ifcfg
+
+2006-06-21 10:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: remove HWADDR support, we do
+ persistent ethernet interfaces naming now
+
+2006-06-21 10:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: configure address settings
+ if possible
+
+2006-06-21 10:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: keep_unrequested_dependencies
+ helps perl-URPM not unselecting previously selected package
+ (this bug occurs when there is a conflict)
+
+2006-06-21 10:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/cellular_providers.pm: add SFR as cellular
+ provider
+
+2006-06-21 09:37 Warly <warly at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: OFFICE is too big for kde,
+ only in Gnome; remove some categories in KDE, keep them in
+ gnome; add x11-driver packages, not in rpmsrate
+
+2006-06-21 09:33 Warly <warly at mandriva.com>
+
+ * live/One/config/live.cfg: remove ksynaptics after install (mess
+ up the mouse); unionfs now in kernel; add new regions
+
+2006-06-21 09:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: better var name
+
+2006-06-21 08:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm, perl-install/install/any.pm,
+ perl-install/install/pkgs.pm: - fix read_rpmsrate_raw() (we give
+ a file, not a filehandle anymore)
+ - read_rpmsrate() now takes a $dont_check_hardware parameter
+ (used for $::o->{build_live_system}, but can be useful for
+ testing too)
+ - speed-up read_rpmsrate(), esp. with matching_types() instead
+ of matching_type()
+
+2006-06-20 16:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: do not try to detect legacy
+ floppy drives, which result in a warning message
+ * perl-install/detect_devices.pm: (floopies) rename argument
+
+2006-06-20 16:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (floppies) add an argument that
+ enable/prevent detecting legacy floppies
+
+2006-06-20 15:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ppp.pm: write ppp secrets only if login is
+ present
+
+2006-06-20 14:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps.pm: fix typo (but would need even
+ more fixing)
+
+2006-06-20 14:26 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/wizards.pm: fix problem of fixed_list in wizards
+
+2006-06-20 14:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/install2.pm, perl-install/install/media.pm,
+ perl-install/install/steps.pm,
+ perl-install/install/steps_interactive.pm: fix install with one
+ cd (multi-cd will come)
+
+2006-06-20 14:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/media.pm: - fix associating a phys_medium
+ for non media_cfg_isos install
+ - associate with main phys_medium for first phys_medium, do not
+ recreate one
+
+2006-06-20 14:14 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: use a dialog box instead
+ of a wizard to add a share entry
+
+2006-06-20 13:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm, perl-install/install/any.pm,
+ perl-install/install/crypto.pm,
+ perl-install/install/install2.pm, perl-install/install/media.pm,
+ perl-install/install/pkgs.pm, perl-install/install/steps.pm,
+ perl-install/install/steps_interactive.pm: - create
+ install/media.pm out of functions from install/pkgs.pm and
+ install/any.pm
+ - differentiate "simple_medium" and "medium": we now have
+ "phys_medium" and "medium", where each "medium" has a
+ {phys_medium}
+ - mountable phys_media are compatible with drakx fstab objects
+ - restore parse_hdlists() (useful for installing 2006.0)
+
+2006-06-20 13:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/mount.pm: create {device} for loopback device
+ when needed
+ (nb: it's also done in fs::loopback::create, but for iso files,
+ we don't create them)
+
+2006-06-20 10:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/bluetooth.pm: configre APN and dial number
+ for bluetooth connections
+
+2006-06-20 10:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/bluetooth.pm: ask for provider and access
+ settings for bluetooth connections (using cellular providers)
+
+2006-06-20 10:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: fix missing argument in
+ translated string
+
+2006-06-20 10:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm, perl-install/lang.pm: utf8 by default
+ (except in chinese for now)
+
+2006-06-20 08:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/proc_partitions.pm: perl_checker compliance
+
+2006-06-19 18:27 mmodem
+
+ * perl-install/install/share/po/pt.po: update
+
+2006-06-19 17:21 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: add live install and copy
+ tools (draklive-install and draklive)
+
+2006-06-19 17:17 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/Makefile, live/draklive/draklive.desktop,
+ live/draklive/draklive.spec, live/draklive/theme: add initial
+ draklive packaging bits
+
+2006-06-19 17:12 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: sort squashfs loopback if a
+ config/distrib.sort file is present
+
+2006-06-19 16:32 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: use system's mount to mount NFS loopbacks
+
+2006-06-19 16:30 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive/draklive: remove unwanted patches (thanks Titi)
+
+2006-06-19 16:10 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive, live/draklive/draklive, tools/draklive: move
+ tools/draklive in live/draklive/ (but keep a symlink)
+
+2006-06-19 16:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: add CDROMCLOSETRAY and
+ CDROM_LOCKDOOR (used in live systems)
+
+2006-06-19 16:04 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/files/halt.local: call CDROM_LOCKDOOR and CDROMCLOSETRAY
+
+2006-06-19 15:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/harddrake/autoconf.pm: unlink pcmcia preload.d file
+ if there is no PCMCIA controller
+
+2006-06-19 15:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: fix forced
+ reconfiguration of laptop related services (#23072)
+
+2006-06-19 15:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/devices.pm: require modules.pm when needed
+
+2006-06-19 14:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/devices.pm: try using doing losetup read-only if rw
+ fails
+
+2006-06-19 13:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/cellular.pm: the chatscript is now written
+ by the network::ppp module
+
+2006-06-19 13:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ppp.pm: abort on VOICE, 'NO ANSWER',
+ DELAYED and 'SIM PIN' in chat script
+
+2006-06-19 13:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/cellular.pm: remove unused variable
+
+2006-06-19 13:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/cellular.pm: drop custom Orange support,
+ use provider data instead
+
+2006-06-19 13:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/cellular_providers.pm: use "login" key
+ instead of "user"
+
+2006-06-19 12:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: fix typo in commit 36916
+
+2006-06-19 11:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/cellular.pm: allow to ask for APN and
+ login/password for cellular connections
+
+2006-06-19 11:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/cellular.pm: use network::ppp to write peer
+ file
+
+2006-06-19 11:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ppp.pm, perl-install/network/xdsl.pm:
+ handle user peer option in network::ppp
+
+2006-06-19 11:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: fix typo
+
+2006-06-19 11:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm: have
+ the field {url} for stage2 simple_medium (helpful for logging)
+
+2006-06-19 11:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: perl_checker compliance
+
+2006-06-19 10:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/cellular_providers.pm: oops, don't fill
+ cellular_providers hash with an hash ref...
+
+2006-06-19 10:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/install2.pm,
+ perl-install/install/pkgs.pm, perl-install/install/steps.pm:
+ handle medium nfs://...
+
+2006-06-19 07:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/bootloader-config: remove symlink
+ "source" for kernel-source (thanks to Thomas Backlund) (#22827)
+
+2006-06-19 07:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: also create symlink source for
+ kernel-source (as done in %post of kernel-source-stripped)
+ (thanks to Thomas Backlund) (#22827)
+
+2006-06-18 19:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/cellular.pm: remove unused variable
+
+2006-06-18 16:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm,
+ perl-install/network/xdsl_providers.pm: move
+ %network::xdsl_consts::xdsl_data in
+ %network::xdsl_providers::data
+
+2006-06-18 16:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/cellular.pm: add get_providers, using,
+ network::cellular_providers::data
+
+2006-06-18 16:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/cellular_providers.pm: add
+ network::cellular_providers and fill it with some french Orange
+ providers
+
+2006-06-18 15:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/pots.pm, perl-install/network/ppp.pm,
+ perl-install/network/xdsl.pm: rename
+ network::ppp::get_login_password as
+ network::ppp::get_access_settings and make it return an array
+ ref (network::pots will use directly this super method now)
+
+2006-06-18 15:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/pots.pm: inherit from network::ppp
+
+2006-06-17 09:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: install schedutils on SMP
+ machines
+
+2006-06-16 19:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: add wait message when
+ scanning for networks
+
+2006-06-16 19:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: add wait message when
+ configuring hardware
+ * perl-install/network/cellular.pm: wait one second before killing
+ gcom, or some serial_cs cards may be resetted
+
+2006-06-16 18:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/cellular.pm: drop unused $in
+
+2006-06-16 18:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/cellular.pm: add an error message when SIM
+ card isn't present
+
+2006-06-16 18:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection.pm: drop cumbersome load_settings
+
+2006-06-16 18:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/cellular.pm: read PIN stuff in
+ guess_hardware_settings
+
+2006-06-16 18:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/cellular.pm: drop custom connect() function
+
+2006-06-16 18:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/cellular.pm: rename prepare_device as
+ prepare_hardware, get_device_settings as get_hardware_settings,
+ and drop unused ask_pin
+
+2006-06-16 18:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: handle hardware
+ configuration step
+
+2006-06-16 16:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/cellular.pm: move $self->{pin} in
+ $self->{hardware}{pin}
+
+2006-06-16 16:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl_consts.pm: don't export
+ network::xdsl_consts::xdsl_data
+
+2006-06-16 16:17 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm,
+ perl-install/network/xdsl_consts.pm: rename network::adsl_consts
+ as network::xdsl_consts
+
+2006-06-16 16:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/crypto.pm,
+ perl-install/install/pkgs.pm: rename psUsingHdlist() into
+ get_medium(). also rename a few remaining {descr}
+
+2006-06-16 16:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: handle standalone media type
+
+2006-06-16 16:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/crypto.pm: descr is no more
+
+2006-06-16 15:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: "a missing pubkey can cause media
+ deselection in getFile_" is not true anymore :)
+
+2006-06-16 15:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm: the
+ deselection of a media is better done in case of change_medium()
+ error not in getFile_()
+
+2006-06-16 15:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm, perl-install/install/steps_gtk.pm:
+ - do not remove mediums in ->deselectFoundMedia but only
+ deselect them
+ - handle {selected} at beginning of get_media_cfg()
+ - do not handle it anymore in the middle of get_media_cfg(),
+ it's useless, errors are taken care with exceptions
+
+2006-06-16 15:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/crypto.pm,
+ perl-install/install/ftp.pm, perl-install/install/pkgs.pm: drop
+ {ftp_prefix}, keep the ftp location encoded in url in {prefix}
+
+2006-06-16 15:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm: for
+ the first time, one can specify in $o->{media} a media source
+ different from the one used to boot DrakX
+
+2006-06-16 15:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/cellular.pm: don't report a weird cellular
+ network when there is none
+
+2006-06-16 14:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: don't guess the wrong PCMCIA
+ driver for multi-function devices
+
+2006-06-16 14:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: simplify
+
+2006-06-16 14:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/.perl_checker, perl-install/install/any.pm,
+ perl-install/install/pkgs.pm,
+ perl-install/install/share/list.xml: switch to media.cfg
+ (instead of hdlists)
+
+2006-06-16 13:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm: drop
+ getAndSaveFile_media_info() (it was kind of implying there is a
+ central media_info medium, whereas there could be more than one)
+
+2006-06-16 13:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm,
+ perl-install/install/steps_interactive.pm: -
+ getAndSaveFile_media_info() now gets files directly in media_info
+ - {rpmsdir} is now xxx instead of media/xxx
+ - {prefix} is now xxx/media instead of xxx
+ - prefix in default_simple_medium() contains or not media/
+ depending on the value of parameter $for_stage2
+ - drop obsolete code in install_urpmi ({prefix} is always set)
+
+2006-06-16 10:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm,
+ perl-install/install/steps_gtk.pm,
+ perl-install/install/steps_interactive.pm: - {descr} is better
+ called {name} (which is how it is called in media.cfg)
+ - parse_hdlist really is parse_hdlists
+
+2006-06-15 15:30 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg: draklive-install is now in the main
+ repository
+
+2006-06-15 15:27 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install.spec: 0.1-7mdv2007.0
+
+2006-06-15 15:25 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/theme/IM-INSTALLCDONE.png: add
+ IM-INSTALLCDONE.png back (Pixel forgot to commit it when
+ readding files with -kb :-p)
+
+2006-06-15 15:03 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install.spec: make clear this
+ package is maintained on SVN
+
+2006-06-15 14:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/modalias.pm: add ide class
+ * perl-install/modalias.pm: we process classes, not buses
+
+2006-06-15 14:31 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/files/halt.local: remove CDROM_LOCKDOOR call
+
+2006-06-15 14:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_interactive.pm: enhande
+ change_medium()
+
+2006-06-15 13:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: fix typo
+ * perl-install/install/any.pm: cdrom is no more a special case
+
+2006-06-15 13:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: simplify
+
+2006-06-15 13:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: - enhande change_medium()
+ - we don't need to change_medium() back, the next user of the
+ medium will take care of it
+ - create new mediums hashes after copying rpms on disk
+
+2006-06-15 13:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/mount.pm, perl-install/install/any.pm,
+ perl-install/install/ftp.pm, perl-install/install/http.pm,
+ perl-install/install/pkgs.pm, perl-install/install/steps.pm: -
+ replace useMedium() + getFile() with change_medium()
+ - drop getFile('XXX'), hopefully unneeded nowadays (otherwise it
+ will need to be fixed, but *locally*)
+ - make the $file optional in change_medium() parameters
+ (to allow it to be used with a cd we don't have what it
+ contains)
+
+2006-06-15 12:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/pots.pm: improve description
+
+2006-06-15 12:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/connection.pm: help perl_checker
+
+2006-06-15 12:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ppp.pm: add missing quote
+
+2006-06-15 12:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ppp.pm: use chat script in peer file if
+ dial number is specified
+
+2006-06-15 11:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/bluetooth.pm: don't use empty prototypes
+ * perl-install/network/bluetooth.pm: remove debug code
+
+2006-06-15 11:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ppp.pm: allow to specify an array ref of AT
+ commands
+
+2006-06-15 11:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ppp.pm: further simplify
+
+2006-06-15 11:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ppp.pm: add write_chat and use it if dial
+ number is specified
+
+2006-06-15 11:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ppp.pm: use settings from $self->{access}
+
+2006-06-15 11:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ppp.pm: simplify
+
+2006-06-15 11:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ppp.pm: rename as build_chat
+
+2006-06-15 10:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/bluetooth.pm, perl-install/network/ppp.pm,
+ perl-install/network/xdsl.pm: make network::ppp::write_settings
+ call super method
+
+2006-06-15 09:56 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/list_modules.pm, perl-install/network/cellular.pm,
+ perl-install/network/connection.pm: rename mobile_data as
+ cellular
+
+2006-06-15 09:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ppp.pm: remove old comment
+
+2006-06-15 09:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: we don't want to eject cd if stage2
+ was on cd but media were not
+
+2006-06-15 09:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/bluetooth.pm,
+ perl-install/network/mobile_data.pm,
+ perl-install/network/ppp.pm: rename get_ppp_device() as less
+ confusing get_tty_device()
+
+2006-06-15 09:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: $o->{method} is for stage2 files,
+ not media, so we don't need to modify it after copying files on
+ disk
+
+2006-06-15 09:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: don't use hardcoded /tmp/image.
+ fill in {finalprefix}
+
+2006-06-15 09:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: remove unused var
+
+2006-06-15 09:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/install2.pm: remove obsolete code
+
+2006-06-15 09:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: *** empty log message ***
+
+2006-06-15 09:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm: -
+ callback after each psUsingHdlist is no more needed, we pass
+ things directly in the simple_medium
+ - call setup_suppl_medium() to create simple_medium, no need to
+ call it later
+ - setup_suppl_medium(): change prototype and cleanup
+ - use setup_suppl_medium() for cdrom too
+
+2006-06-15 09:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: use the simple_medium instead of
+ $o->{method}
+
+2006-06-15 08:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: chown is useless during install,
+ we are root in any case, and dest file is
+ removed before writing. also remove some unlink, now done in
+ getAndSaveFile_()
+
+2006-06-15 08:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: getAndSaveFile_raw(): ensure the
+ output file is ok in more cases
+
+2006-06-15 08:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: hdlist & synthesis should be
+ looked for on the same medium where the hdlists is
+
+2006-06-15 08:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: perl_checker compliance
+
+2006-06-15 08:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm:
+ factorize getAndSave of rpmsrate and compssUsers.pl
+
+2006-06-15 08:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm, perl-install/install/any.pm,
+ perl-install/install/install2.pm, perl-install/install/pkgs.pm,
+ perl-install/install/steps.pm: - replace getFile() and
+ getAndSaveFile() calls with more explicit functions:
+ - getFile_stage2() and getAndSaveFile_stage2() to access
+ stage2 files (ie ROOT_DISTR/<file> and ROOT_DISTR/install/*)
+ - getFile_media_info() and getAndSaveFile_media_info() to
+ access main media_info files (ie ROOT_DISTR/media/media_info/*)
+ - getFile() is kept temporarily (mostly for getFile('XXX'))
+ - getAndSaveFile() is dropped
+ - export getFile_ getAndSaveFile_ getAndSaveFile_main_medium
+ from install::any for install::pkgs
+ (remove "use install::pkgs" from install::any otherwise the
+ export fails)
+ - switch arguments of getFile_(): ($medium, $file) instead of
+ ($file, $medium)
+ - simplify using rpmsrate & compssUsers.pl by saving them in
+ /tmp in all cases
+ (it would be even better to do it in psUsingHdlists)
+
+2006-06-15 08:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/.perl_checker: new perl_checker has a fake
+ packdrake.pm
+
+2006-06-15 08:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/.perl_checker: no need to have packdrake twice :p
+
+2006-06-15 07:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: remove obsolete code (live and
+ mdkinst.clp are the same, useless to find modules.cz-xxx
+ elsewhere)
+
+2006-06-15 07:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: simplify
+
+2006-06-15 07:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: remountCD1 should not be needed,
+ use standard code
+
+2006-06-14 21:08 Dovix <dovix2003 at yahoo.com>
+
+ * perl-install/share/po/he.po: update hebrew translation
+
+2006-06-14 17:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: simplify
+
+2006-06-14 17:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/cable.pm: shorten type name
+
+2006-06-14 17:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/bluetooth.pm: shorten type name
+
+2006-06-14 17:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/pots.pm: use "Dial-Up" as description for
+ POTS (Buchan Milne)
+ * perl-install/network/connection.pm: introduce
+ get_type_description, defaulting to the short name
+
+2006-06-14 17:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: use DSL in description (Buchan
+ Milne)
+
+2006-06-14 17:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/cable.pm: enhance description (Austin Acton)
+
+2006-06-14 17:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: don't be so paranoid
+
+2006-06-14 17:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: factorize
+
+2006-06-14 17:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/commands.pm: cleanup
+
+2006-06-14 16:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/commands.pm: handle '-v' for both lspci and
+ lspcidrake
+
+2006-06-14 16:55 Pixel <pixel at mandriva.com>
+
+ * ChangeLog:
+
+2006-06-14 16:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: have lspcidrake compliant output
+ and allow verbose listing (with vendor/device IDs)
+
+2006-06-14 16:13 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/url.c: stage2 is saying HTTP 1.0, use it instead of
+ HTTP 0.9 (works better with the sample http server in
+ perl-Net-Server)
+
+2006-06-14 16:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: have lspcidrake compliant output
+ and allow verbose listing (with vendor/device IDs)
+
+2006-06-14 16:13 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/url.c: stage2 is saying HTTP 1.0, use it instead of
+ HTTP 0.9 (works better with the sample http server in
+ perl-Net-Server)
+
+2006-06-14 12:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: {mediums} is now an array (fix
+ previous commit)
+
+2006-06-14 12:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: please perl_checker
+
+2006-06-14 12:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: fix typo
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm:
+ {start} and {end} are defined iff medium is not {selected}
+
+2006-06-14 12:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm:
+ {mediums} is now an array
+
+2006-06-14 11:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: more explicit variable names
+
+2006-06-14 11:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: - $o_fhdlist is a filehandle or
+ undef
+ - always remove synthesis file even if we don't have it, it
+ won't hurt
+
+2006-06-14 11:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: don't log {prefix} in getFile_ (it
+ can contain ftp password)
+
+2006-06-14 11:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: do unselect media at first error
+ (we need even better handling)
+
+2006-06-14 10:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: restore computing fakemedium with
+ medium id (rpmsdir contains some "/"s, and may not be unique)
+
+2006-06-14 10:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm,
+ perl-install/install/steps_interactive.pm: fix commit (r37213)
+
+2006-06-14 10:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: cleanup
+
+2006-06-14 10:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: better name
+
+2006-06-14 10:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm,
+ perl-install/install/steps.pm,
+ perl-install/install/steps_interactive.pm: - rename
+ ->ask_change_medium into ->ask_change_cd, let it handle the
+ mounting/retry
+ - use function while_suspending_time() to allow using "return"
+ in ask_change_cd
+ - move some stuff from errorOpeningFile into getFile_
+ - make the various possibilities in getFile_ separate
+ - create change_medium out of errorOpeningFile, askChangeMedium,
+ changeMedium, $changeMedium
+ - create same_medium_support()
+
+2006-06-13 21:58 nanardon
+
+ * tools/drakx-in-chroot: - better explanation message
+
+2006-06-13 21:30 nanardon
+
+ * tools/drakx-in-chroot: - set drakx-in-chroot executable
+
+2006-06-13 17:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/bluetooth.pm: remove unused function (SVN
+ history will allow to restore it if needed)
+
+2006-06-13 17:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/bluetooth.pm,
+ perl-install/network/connection.pm: initial bluetooth support
+
+2006-06-13 16:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm:
+ rename relGetFile in rel_rpm_file (not a really nice name, but
+ better anyway)
+
+2006-06-13 16:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm: don't
+ call relGetFile in getFile, do it only when needed
+
+2006-06-13 16:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: get rid of hardcoded /tmp/image
+
+2006-06-13 16:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: do set current_medium for iso on
+ disks
+
+2006-06-13 16:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm: -
+ drop {cd_number}, {descr} can be used directly
+ - don't need sorting supplementary media differently
+
+2006-06-13 16:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: fix typo
+
+2006-06-13 16:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/crypto.pm,
+ perl-install/install/pkgs.pm, perl-install/install/steps_gtk.pm:
+ assign medium {id} in psUsingHdlist(). don't rely so much on
+ {id}.
+
+2006-06-13 15:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: fix typo
+
+2006-06-13 15:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: remove obsolete code
+
+ (cf rev.22706: Remove the naming convention with a trailing "s"
+ for supplementary CDs medium ids)
+
+2006-06-13 14:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: if ever we allow deselection of
+ iso files on disk, do it after removing non available isos
+
+2006-06-13 14:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm: fix
+ calling set_selected_available_ISO()
+
+2006-06-13 14:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: create parse_hdlist()
+
+2006-06-13 14:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps.pm: please perl_checker
+
+2006-06-13 14:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm, perl-install/install/steps.pm,
+ perl-install/install/steps_gtk.pm: create
+ allow_copy_rpms_on_disk() out of
+ install::steps_gtk::deselectFoundMedia
+
+2006-06-13 14:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm, perl-install/install/steps.pm,
+ perl-install/install/steps_gtk.pm: modify the list in place
+
+2006-06-13 14:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_gtk.pm: big simplification and
+ cleanup of the mess in deselectFoundMedia(). also allow
+ deselecting media even if we can't copy rpms on disk
+
+2006-06-13 14:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: size is in MB. restore its parsing
+
+2006-06-13 13:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: put size in the medium (no more in
+ a separate hash)
+
+2006-06-13 13:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: remove now unused variable
+
+2006-06-13 13:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm:
+ create getAndSaveFile_() and getAndSaveFile_raw().
+ getAndSaveFile() do not accept refs anymore
+
+2006-06-13 13:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: - get pubkey in any case
+ - $o_fhdlist not allowed to be a string anymore in
+ psUsingHdlist()
+
+2006-06-13 13:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: rework errorOpeningFile()
+
+2006-06-13 12:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: don't call errorOpeningFile() on
+ http/ftp
+
+2006-06-13 12:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/mobile_data.pm: simplify
+
+2006-06-13 12:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/mobile_data.pm: remove useless require
+
+2006-06-13 12:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: cleanup
+
+2006-06-13 12:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/steps_gtk.pm:
+ move rm_rf to non interactive function
+
+2006-06-13 12:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: factorize destination directory.
+ fix typo in previous commit
+
+2006-06-13 12:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: rework copy_rpms_on_disk()
+
+2006-06-13 11:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm: parse
+ {cd_number} once
+
+2006-06-13 11:39 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl, tools/draklive: pass langs to
+ auto_inst using DRAKLIVE_LANGS environment, or else $o->{locale}
+ from auto_inst will override --langs command line options
+
+2006-06-13 11:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: fix typo
+
+2006-06-13 11:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/crypto.pm,
+ perl-install/install/pkgs.pm, perl-install/install/steps_gtk.pm:
+ install::medium is no more
+
+2006-06-13 10:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm:
+ remove some special suppl_cd code, and rewrite the remaining
+
+2006-06-13 10:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: this should not be needed anymore
+ (errorOpeningFile should take care of this mess)
+
+2006-06-13 10:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm:
+ $o->{method} is only the base install method. It should not be
+ messed up. In most cases the used medium method should be
+ prefered
+ (this commit may break!)
+
+2006-06-13 10:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: ->is_suppl now unused
+
+2006-06-13 10:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm: drop
+ install::medium::by_id, now mostly unused. create first_medium()
+
+2006-06-13 10:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm:
+ allMediums() can now return structs instead of id
+
+2006-06-13 10:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm:
+ $install::any::current_medium and $install::any::asked_medium
+ are now structs, no more id
+
+2006-06-13 09:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/steps.pm,
+ perl-install/install/steps_interactive.pm: askChangeMedium(),
+ changeMedium() and ->ask_change_medium now except a medium
+
+2006-06-13 09:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/steps.pm:
+ medium_id is a better variable name for medium->{id}
+
+2006-06-13 09:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: medium_id is a better variable
+ name for medium->{id}
+
+2006-06-13 09:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/crypto.pm, perl-install/install/pkgs.pm:
+ psUsingHdlist(): handle pubkey like other medium parameters
+
+2006-06-13 09:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: optional argument $o_nocopy is
+ unused, drop it
+
+2006-06-13 09:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: rewrite
+ * perl-install/install/crypto.pm: psUsingHdlist(): group medium
+ parameters in a hash
+ * perl-install/install/any.pm: psUsingHdlist(): group medium
+ parameters in a hash
+
+2006-06-13 09:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: add comment
+
+2006-06-13 09:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: psUsingHdlist(): group medium
+ parameters in a hash
+
+2006-06-13 08:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm:
+ rename field {medium} to {id} (for clarity)
+
+2006-06-13 08:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: we want objects to allow
+ ->is_suppl_cd
+
+2006-06-13 08:35 Warly <warly at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: rpmsrate_flag_choosen is an
+ hash
+
+2006-06-13 08:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/crypto.pm,
+ perl-install/install/pkgs.pm: psUsingHdlist() now takes a
+ simple_medium (allowing seamless ftp and more),
+ use getFile_ before packages->{mediums} is filled with the new
+ medium
+
+2006-06-13 07:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: getAndSaveFile() is always used
+ with 2 args nowodays
+ * perl-install/install/any.pm: create default_simple_medium() and
+ use it
+
+2006-06-12 18:07 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg, live/One/config/rpmsrate: sync with
+ cooker rpmsrate
+
+2006-06-12 17:52 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: core files are now removed in
+ draklive config (since rpms installed by draklive may also
+ coredump)
+
+2006-06-12 17:51 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/local_cfg: kooka is already installed with
+ rpmsrate if the SCANNER cat is selected, which is done by
+ install::any::rpmsrate_always_flags(), using
+ modules::sub_categories('multimedia')
+
+2006-06-12 17:45 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl, live/One/config/local_cfg:
+ inline desktop dependent packages in auto_inst
+
+2006-06-12 17:43 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg, live/One/config/local_cfg: use
+ DRAKLIVE_DESKTOP and DRAKLIVE_ARCH
+
+2006-06-12 17:40 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: use DRAKLIVE_DESKTOP
+ environment variable
+
+2006-06-12 17:39 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg: draklive-install is already listed 3
+ lines above
+
+2006-06-12 17:38 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg: patch-live-2006 is dead
+ * live/One/config/live.cfg: revert warly's unindentation diff :p
+
+2006-06-12 17:37 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg: xmoto is already listed in auto_inst
+
+2006-06-12 17:36 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg: add USB initrd on media
+
+2006-06-12 17:32 Warly <warly at mandriva.com>
+
+ * live/One/config/live.cfg: update live.cfg
+
+2006-06-12 17:29 Warly <warly at mandriva.com>
+
+ * live/One/patches/halt.loopfs.patch,
+ live/One/patches/lp.script.start.patch,
+ live/One/patches/netfs.loopfs.patch: rediff patches
+
+2006-06-12 17:21 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: remove busybox, it's already
+ listed above
+
+2006-06-12 17:18 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: the libxi issue is fixed in
+ lsb-build-base, don't add arch-specific package here
+
+2006-06-12 17:17 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: unionfs-tools is already
+ selected...
+
+2006-06-12 17:12 Warly <warly at mandriva.com>
+
+ * live/One/config/local_cfg: add for example of new variables
+
+2006-06-12 17:10 Warly <warly at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: add env var in auto_inst
+
+2006-06-12 15:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/crypto.pm:
+ $install::any::global_ftp_prefix is dead, use {ftp_prefix}
+ instead
+ (nb: setup_suppl_medium() already takes care of setting
+ {ftp_prefix})
+
+2006-06-12 15:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm:
+ change prototype of psUsingHdlists, allow to pass a
+ simple_medium which knows how to access to files
+
+2006-06-12 15:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm:
+ getFile_ takes a medium struct instead of a medium id
+
+2006-06-12 15:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: don't pass the medium id, but
+ directly the struct to errorOpeningFile()
+
+2006-06-12 15:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_interactive.pm: fix cancel when
+ prompting supplementary ftp mirror
+
+2006-06-12 14:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: rewrite
+
+2006-06-12 14:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: add the medium to relGetFile
+ arguments
+
+2006-06-12 14:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: fix previous commit
+
+2006-06-12 14:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: we want the medium id, not the
+ struct
+
+2006-06-12 14:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: fix previous commit
+
+2006-06-12 14:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm: -
+ create getFile_() which takes a file + a medium
+ - getFile() now only take one argument
+ - add the medium to errorOpeningFile() arguments
+
+2006-06-12 14:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: fix previous commit
+
+2006-06-12 14:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: supplCDMountPoint() returns the
+ main method
+
+2006-06-12 14:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm: the
+ second arg of getFile() doesn't do anything, drop it
+ * perl-install/install/crypto.pm, perl-install/install/http.pm:
+ make things a little more clear
+
+2006-06-12 13:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/install2.pm,
+ perl-install/install/steps.pm: inline ->method. don't pass
+ around $o now unneeded (because of $::prefix instead of
+ $o->{prefix})
+
+2006-06-12 13:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/install2.pm,
+ perl-install/install/steps.pm,
+ perl-install/install/steps_interactive.pm: use $::prefix, not
+ $o->{prefix}
+
+2006-06-12 13:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm: drop
+ ->is_suppl
+
+2006-06-12 13:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: drop ->method
+
+2006-06-12 13:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/install2.pm,
+ perl-install/install/steps.pm: make things more explicit
+
+2006-06-12 13:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/install2.pm:
+ move getNextStep() in install2.pm
+
+2006-06-12 13:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/install2.pm:
+ do not export spawnShell()
+
+2006-06-12 13:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: remove prototype
+
+2006-06-12 13:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm: the
+ only function using the $o_otherOnly feature is
+ setup_postinstall_rpms(), so moving the $o_otherOnly feature out
+ of selectPackage()
+
+2006-06-12 12:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm,
+ perl-install/install/steps.pm: create
+ select_by_package_names_or_die() and use it
+
+2006-06-12 12:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm: drop
+ ->mark_suppl
+
+2006-06-12 12:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: rename {issuppl} to {is_suppl}
+
+2006-06-12 12:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: move function with the other
+ medium related functions
+
+2006-06-12 12:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: rewrite
+
+2006-06-12 12:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: drop *old* obsolete comment, and
+ replace it with the real one
+
+2006-06-12 12:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps.pm: cleanup. drop testing mode
+
+2006-06-12 12:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/commands.pm,
+ perl-install/partition_table.pm: use common::open_file()
+
+2006-06-12 11:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/modalias.pm: handle input subsystem in modalias.pm
+
+2006-06-12 11:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm, perl-install/install/any.pm,
+ perl-install/install/pkgs.pm: install::any::getLocalFile() is
+ now common::open_file() (since it can be useful elsewhere)
+
+2006-06-12 11:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: rewrite
+
+2006-06-12 11:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: simplify (is it equivalent?)
+
+2006-06-12 11:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: - no CD umounting will take place
+ in this ejectCdrom()
+ - ejecting CD just before mounting CD is useless and not friendly
+
+2006-06-12 10:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/steps.pm,
+ perl-install/install/steps_interactive.pm: ->changeMedium is
+ prompting, so rename it ->ask_change_medium
+
+2006-06-12 10:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/steps.pm,
+ perl-install/install/steps_gtk.pm,
+ perl-install/install/steps_interactive.pm: -
+ install::any::changeMedium() was modified in steps_gtk and
+ steps_interactive,
+ - unify those functions (using $o->{install_start_time})
+ - use method call to dispatch changeMedium
+
+2006-06-12 10:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: move comment at the right place
+
+2006-06-12 10:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: pass function $changeMedium as
+ parameter to askChangeMedium(), allowing copy_rpms_on_disk() to
+ pass changeMedium directly instead of overriding
+ install::any::changeMedium()
+
+2006-06-12 10:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: install::pkgs is "use"d, so
+ "require"ing it is not needed
+
+2006-06-12 10:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: drop "old, obsolete and wrong
+ comment" (the call to extractHeaders has been removed in
+ rev.8218, in 2002)
+
+2006-06-12 10:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: cleanup
+
+2006-06-12 09:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: cleanup (drop prototypes)
+
+2006-06-12 09:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: be more coherent
+
+2006-06-12 09:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: simplify
+
+2006-06-12 09:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: simplify
+
+2006-06-12 09:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: cleanup
+
+2006-06-12 09:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: normalize
+
+2006-06-12 09:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: simplify
+
+2006-06-12 08:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: i don't really understand how the
+ search is done, but at least making things separate and simpler
+ can't hurt
+
+2006-06-12 08:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: simplify
+
+2006-06-12 08:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: simplify
+
+2006-06-12 07:56 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/pcmcia-resource: pcmcia-ids.h is generated, add it to
+ svn:ignore
+
+2006-06-12 07:55 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/pcmcia_: add lex & yacc generated files to svn:ignore
+
+2006-06-12 07:54 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1: add TAGS to svn:ignore
+
+2006-06-12 07:53 Pixel <pixel at mandriva.com>
+
+ * globetrotter/make_live: - switch to davfs2
+ - devfs is dead
+
+2006-06-09 15:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm,
+ perl-install/install/steps_interactive.pm: chooseCD() replaced
+ by the much simpler set_selected_available_ISO()
+
+ (nb: chooseCD() was only doing something for installs from ISO
+ images. the
+ whole mess was something only used in expert. the real chooseCD
+ is
+ deselectFoundMedia nowadays)
+
+2006-06-09 15:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: create ISO_images() (for future use)
+
+2006-06-09 15:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_interactive.pm: simplify
+
+2006-06-09 15:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: rework changeIso(),
+ find_ISO_image_labelled(), look_for_ISO_images()
+
+2006-06-09 14:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: simplify
+
+2006-06-09 14:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: don't use global var in
+ supplCDMountPoint()
+
+2006-06-09 14:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: simplify
+
+2006-06-09 14:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: simplify
+
+2006-06-09 14:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/list.xml: and File::FnMatch
+ (currently used for pcmcia)
+
+2006-06-09 13:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/crypto.pm,
+ perl-install/install/pkgs.pm, perl-install/install/steps_gtk.pm,
+ perl-install/install/steps_interactive.pm: inline accessors
+
+2006-06-09 13:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: install kino on Gnome
+
+2006-06-09 13:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm,
+ perl-install/install/steps_interactive.pm: drop ->ignored which
+ is the opposite of ->selected (at least it seems)
+
+2006-06-09 12:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/pkgs.pm:
+ cleanup psUsingHdlists() prototype
+
+2006-06-09 12:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/dav.pm, perl-install/fs.pm,
+ perl-install/fs/mount.pm, perl-install/fs/mount_options.pm:
+ minimal changes for davfs2 to work (#23024)
+
+2006-06-09 11:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: fix typo (and enhance comment)
+
+2006-06-09 11:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: factorize
+
+2006-06-09 11:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: move function
+
+2006-06-09 11:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: i misunderstood, the pkg can only
+ be on one medium. cool we can simplify even more
+
+2006-06-09 11:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: introduce pkg2media to factorize
+ some code
+
+2006-06-09 11:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: remove unused function
+
+2006-06-09 11:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: drop code handling non-upgrade of
+ kernel pkgs (was needed when the kernel pkg name was simply
+ "kernel" when we now use "kernel-2.6.16.1mdk")
+
+2006-06-09 10:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: test for ipw2200-*.fw firmware
+ files for ipw2200 driver (3.0 firmware version, required for
+ 2.6.16)
+
+2006-06-09 10:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: simplify
+
+2006-06-09 10:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: simplify
+
+2006-06-09 10:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: simplify
+
+2006-06-09 10:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: comestic changes
+
+2006-06-09 10:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: factorize code in parse_ftp_url()
+
+2006-06-09 10:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: factorize code
+
+2006-06-09 10:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm, perl-install/install/any.pm:
+ return the whole PCMCIA controller device in
+ pcmcia_controller_probe() (so that harddrake reports the correct
+ description), and use c::probe as fallback only
+
+2006-06-09 09:32 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: simplify (thanks Pixel)
+
+2006-06-09 09:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/do_pkgs.pm: no need to protect &_ for some time now
+
+2006-06-09 09:26 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg: pass DRAKLIVE_DESKTOP to install
+ environment
+
+2006-06-09 09:25 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: allow to pass variables to drakx-in-chroot
+ environment
+
+2006-06-09 09:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/devices.pm,
+ perl-install/install/steps_interactive.pm,
+ perl-install/mouse.pm, perl-install/standalone/mousedrake: use
+ directly /dev/input/mice instead of /dev/usbmouse
+
+2006-06-09 09:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm, perl-install/devices.pm,
+ perl-install/mouse.pm, perl-install/network/modem.pm: rename
+ any::devfssymlinkf() into devices::symlink_now_and_register()
+
+2006-06-09 09:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm, perl-install/bootloader.pm,
+ perl-install/common.pm, perl-install/detect_devices.pm,
+ perl-install/devices.pm, perl-install/diskdrake/interactive.pm,
+ perl-install/fs.pm, perl-install/fs/get.pm,
+ perl-install/fs/proc_partitions.pm,
+ perl-install/fs/wild_device.pm, perl-install/install/steps.pm,
+ perl-install/partition_table.pm, perl-install/printer/main.pm,
+ perl-install/printer/printerdrake.pm, perl-install/scanner.pm,
+ perl-install/standalone/drakupdate_fstab,
+ perl-install/standalone/harddrake2: drop devfs support
+
+2006-06-09 09:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: don't set console font on local_install
+
+2006-06-09 09:06 Warly <warly at mandriva.com>
+
+ * tools/draklive: use common mkdir_p (thanks to Rafael)
+
+2006-06-09 08:42 Warly <warly at mandriva.com>
+
+ * tools/draklive: add dir creation if needed when copying files
+
+2006-06-09 08:37 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: fix typo
+
+2006-06-09 08:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: no more kat by default
+
+2006-06-09 08:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/ftp.pm: second value of install::ftp::new()
+ is always used
+
+2006-06-09 07:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: cosmetic change
+
+2006-06-08 17:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * docs/HACKING: require linuxwacom for the wacom driver
+
+2006-06-08 17:14 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: allow to include additional modules by
+ specifying a .ko list in $live->{system}{additional_modules}
+ (useful when the kernel team forgets to build unionfs in the
+ kernel package, or to include crappy profiling module)
+
+2006-06-08 15:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: simplify
+ * perl-install/bootloader.pm: - don't die when translating a
+ device to grub naming, return undef instead
+ - if the file is on a device not available at boot time, log it
+ as so, and use a dumb value
+
+2006-06-08 15:43 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: add dhcp-client
+
+2006-06-08 15:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/list.xml: handle back the wacom driver
+
+2006-06-08 15:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/newt.pm: handle type "label" (including
+ the title one used by titi)
+
+2006-06-08 14:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/mount.pm, perl-install/install/share/list.xml:
+ create files needed by ext3 quota
+
+2006-06-08 14:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/list.xml: we don't have wacom_drv in
+ cooker
+
+2006-06-08 14:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/crypto.pm: - more logging
+ - simplification
+ - remove debug code (???)
+
+2006-06-08 11:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: we don't have monitord-edid on
+ sparc (Per Oyvind Karlsen)
+
+2006-06-07 20:48 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/autosetupprintqueues: X.org 7.x fix:
+ s:/usr/X11R6:/usr:
+
+2006-06-07 20:38 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: - Some LaserJets (e. g. LaserJet
+ 1022) were not recognized as
+ HPLIP-supported, due to libusb-based HPLIP reporting URI with
+ serial
+ number but "usblp"-kernel-module based IOCTL polling of the
+ device
+ ID string by printerdrake does not return the serial number.
+
+2006-06-07 20:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: better label (from old #4136)
+
+2006-06-07 17:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/type.pm: disable reiser4 during install since we
+ don't bundle reiser4 tools
+
+2006-06-07 16:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: wrap_command_for_root is now
+ in common
+
+2006-06-07 16:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: use "ifw_message" instead of
+ "attack" for some variables/functions
+
+2006-06-07 11:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/harddrake/autoconf.pm: don't try to load PCMCIA
+ controller when none is configured
+
+2006-06-07 11:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/install2.pm: log distro_type and VERSION
+
+2006-06-07 11:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/install2.pm: log the VERSION content
+
+2006-06-07 11:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm, tools/drakx-in-chroot: - have
+ resolv.conf in drakx chroot (for local_install)
+ - don't configure network on local_install
+
+2006-06-07 10:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/crypto.pm: update hardcoded list
+
+2006-06-07 10:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_interactive.pm: simplify
+ * perl-install/install/steps_interactive.pm: remove duplicated code
+
+2006-06-07 10:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_interactive.pm: last adaptation to
+ crypto.pm being now install/crypto.pm
+
+2006-06-06 16:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draknfs,
+ perl-install/standalone/po/af.po,
+ perl-install/standalone/po/am.po,
+ perl-install/standalone/po/ar.po,
+ perl-install/standalone/po/az.po,
+ perl-install/standalone/po/be.po,
+ perl-install/standalone/po/bg.po,
+ perl-install/standalone/po/bn.po,
+ perl-install/standalone/po/br.po,
+ perl-install/standalone/po/bs.po,
+ perl-install/standalone/po/ca.po,
+ perl-install/standalone/po/cs.po,
+ perl-install/standalone/po/cy.po,
+ perl-install/standalone/po/da.po,
+ perl-install/standalone/po/de.po,
+ perl-install/standalone/po/el.po,
+ perl-install/standalone/po/eo.po,
+ perl-install/standalone/po/es.po,
+ perl-install/standalone/po/et.po,
+ perl-install/standalone/po/eu.po,
+ perl-install/standalone/po/fa.po,
+ perl-install/standalone/po/fi.po,
+ perl-install/standalone/po/fr.po,
+ perl-install/standalone/po/fur.po,
+ perl-install/standalone/po/ga.po,
+ perl-install/standalone/po/gl.po,
+ perl-install/standalone/po/he.po,
+ perl-install/standalone/po/hi.po,
+ perl-install/standalone/po/hr.po,
+ perl-install/standalone/po/hu.po,
+ perl-install/standalone/po/id.po,
+ perl-install/standalone/po/is.po,
+ perl-install/standalone/po/it.po,
+ perl-install/standalone/po/ja.po,
+ perl-install/standalone/po/ko.po,
+ perl-install/standalone/po/ky.po,
+ perl-install/standalone/po/libDrakX-standalone.pot,
+ perl-install/standalone/po/lt.po,
+ perl-install/standalone/po/ltg.po,
+ perl-install/standalone/po/lv.po,
+ perl-install/standalone/po/mk.po,
+ perl-install/standalone/po/mn.po,
+ perl-install/standalone/po/ms.po,
+ perl-install/standalone/po/mt.po,
+ perl-install/standalone/po/nb.po,
+ perl-install/standalone/po/nl.po,
+ perl-install/standalone/po/nn.po,
+ perl-install/standalone/po/pa_IN.po,
+ perl-install/standalone/po/pl.po,
+ perl-install/standalone/po/pt.po,
+ perl-install/standalone/po/pt_BR.po,
+ perl-install/standalone/po/ro.po,
+ perl-install/standalone/po/ru.po,
+ perl-install/standalone/po/sc.po,
+ perl-install/standalone/po/sk.po,
+ perl-install/standalone/po/sl.po,
+ perl-install/standalone/po/sq.po,
+ perl-install/standalone/po/sr.po,
+ perl-install/standalone/po/sr@Latn.po,
+ perl-install/standalone/po/sv.po,
+ perl-install/standalone/po/ta.po,
+ perl-install/standalone/po/tg.po,
+ perl-install/standalone/po/th.po,
+ perl-install/standalone/po/tl.po,
+ perl-install/standalone/po/tr.po,
+ perl-install/standalone/po/uk.po,
+ perl-install/standalone/po/uz.po,
+ perl-install/standalone/po/uz@Latn.po,
+ perl-install/standalone/po/vi.po,
+ perl-install/standalone/po/wa.po,
+ perl-install/standalone/po/zh_CN.po,
+ perl-install/standalone/po/zh_TW.po: remove some tags from
+ translation messages in order to ease translators' job
+
+2006-06-06 16:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/br.po: update
+
+2006-06-06 16:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.32-1mdv2007.0
+
+2006-06-06 14:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/Makefile: use fuzzy matching when updating
+ translations
+
+2006-06-06 14:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/af.po, perl-install/share/po/ar.po,
+ perl-install/share/po/az.po, perl-install/share/po/be.po,
+ perl-install/share/po/bn.po, perl-install/share/po/bs.po,
+ perl-install/share/po/ca.po, perl-install/share/po/cs.po,
+ perl-install/share/po/cy.po, perl-install/share/po/da.po,
+ perl-install/share/po/de.po, perl-install/share/po/el.po,
+ perl-install/share/po/eo.po, perl-install/share/po/es.po,
+ perl-install/share/po/et.po, perl-install/share/po/eu.po,
+ perl-install/share/po/fa.po, perl-install/share/po/fi.po,
+ perl-install/share/po/fr.po, perl-install/share/po/he.po,
+ perl-install/share/po/hr.po, perl-install/share/po/hu.po,
+ perl-install/share/po/id.po, perl-install/share/po/is.po,
+ perl-install/share/po/it.po, perl-install/share/po/ja.po,
+ perl-install/share/po/mk.po, perl-install/share/po/mn.po,
+ perl-install/share/po/ms.po, perl-install/share/po/mt.po,
+ perl-install/share/po/nb.po, perl-install/share/po/nl.po,
+ perl-install/share/po/nn.po, perl-install/share/po/pl.po,
+ perl-install/share/po/pt.po, perl-install/share/po/pt_BR.po,
+ perl-install/share/po/ru.po, perl-install/share/po/sk.po,
+ perl-install/share/po/sl.po, perl-install/share/po/sq.po,
+ perl-install/share/po/sr.po, perl-install/share/po/sr@Latn.po,
+ perl-install/share/po/sv.po, perl-install/share/po/tg.po,
+ perl-install/share/po/tl.po, perl-install/share/po/tr.po,
+ perl-install/share/po/uk.po, perl-install/share/po/vi.po,
+ perl-install/share/po/wa.po, perl-install/share/po/zh_CN.po,
+ perl-install/share/po/zh_TW.po: resurrect licence translation
+ after pixel change
+
+2006-06-06 14:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: install
+ x11-font-wqy-bitmapfont too for chinese locale
+
+2006-06-06 14:11 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/cups.pm, perl-install/printer/main.pm: -
+ Made temporary PPD file also be accessible in sub programs called
+ via "chroot" during installation
+ - Better fix for bug #22935, the old one did not cover all cases
+
+2006-06-06 13:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: handle rootnoverify (#22912)
+
+2006-06-06 13:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: fix font directory (#22898)
+
+2006-06-06 12:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm,
+ perl-install/install/any.pm,
+ perl-install/install/share/rpmsrate: install pkg "quota" when
+ needed
+
+2006-06-06 08:43 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: - Renaming a printer did not work
+ after having changed the PPD to a
+ CUPS-autogenerated one (bug #22935).
+
+2006-06-01 09:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/.perl_checker: URPM is still perl_checker
+ compliant, and provide many methods, keep it
+
+2006-06-01 09:16 Pixel <pixel at mandriva.com>
+
+ * ChangeLog:
+
+2006-06-01 09:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_gtk.pm: -dpms option has been dropped
+ from xorg
+
+2006-06-01 08:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: handle readonly rawhd usb keys the same
+ way as read-write rawhd usb keys
+
+2006-06-01 07:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: properly indent, simplify
+
+2006-06-01 08:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: handle readonly rawhd usb keys the same
+ way as read-write rawhd usb keys
+
+2006-06-01 07:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: properly indent, simplify
+
+2006-05-31 18:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.30-1mdv2007.0
+
+2006-05-31 17:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash,
+ perl-install/standalone/po/af.po,
+ perl-install/standalone/po/am.po,
+ perl-install/standalone/po/ar.po,
+ perl-install/standalone/po/az.po,
+ perl-install/standalone/po/be.po,
+ perl-install/standalone/po/bg.po,
+ perl-install/standalone/po/bn.po,
+ perl-install/standalone/po/br.po,
+ perl-install/standalone/po/bs.po,
+ perl-install/standalone/po/ca.po,
+ perl-install/standalone/po/cs.po,
+ perl-install/standalone/po/cy.po,
+ perl-install/standalone/po/da.po,
+ perl-install/standalone/po/de.po,
+ perl-install/standalone/po/el.po,
+ perl-install/standalone/po/eo.po,
+ perl-install/standalone/po/es.po,
+ perl-install/standalone/po/et.po,
+ perl-install/standalone/po/eu.po,
+ perl-install/standalone/po/fa.po,
+ perl-install/standalone/po/fi.po,
+ perl-install/standalone/po/fr.po,
+ perl-install/standalone/po/fur.po,
+ perl-install/standalone/po/ga.po,
+ perl-install/standalone/po/gl.po,
+ perl-install/standalone/po/he.po,
+ perl-install/standalone/po/hi.po,
+ perl-install/standalone/po/hr.po,
+ perl-install/standalone/po/hu.po,
+ perl-install/standalone/po/id.po,
+ perl-install/standalone/po/is.po,
+ perl-install/standalone/po/it.po,
+ perl-install/standalone/po/ja.po,
+ perl-install/standalone/po/ko.po,
+ perl-install/standalone/po/ky.po,
+ perl-install/standalone/po/libDrakX-standalone.pot,
+ perl-install/standalone/po/lt.po,
+ perl-install/standalone/po/ltg.po,
+ perl-install/standalone/po/lv.po,
+ perl-install/standalone/po/mk.po,
+ perl-install/standalone/po/mn.po,
+ perl-install/standalone/po/ms.po,
+ perl-install/standalone/po/mt.po,
+ perl-install/standalone/po/nb.po,
+ perl-install/standalone/po/nl.po,
+ perl-install/standalone/po/nn.po,
+ perl-install/standalone/po/pa_IN.po,
+ perl-install/standalone/po/pl.po,
+ perl-install/standalone/po/pt.po,
+ perl-install/standalone/po/pt_BR.po,
+ perl-install/standalone/po/ro.po,
+ perl-install/standalone/po/ru.po,
+ perl-install/standalone/po/sc.po,
+ perl-install/standalone/po/sk.po,
+ perl-install/standalone/po/sl.po,
+ perl-install/standalone/po/sq.po,
+ perl-install/standalone/po/sr.po,
+ perl-install/standalone/po/sr@Latn.po,
+ perl-install/standalone/po/sv.po,
+ perl-install/standalone/po/ta.po,
+ perl-install/standalone/po/tg.po,
+ perl-install/standalone/po/th.po,
+ perl-install/standalone/po/tl.po,
+ perl-install/standalone/po/tr.po,
+ perl-install/standalone/po/uk.po,
+ perl-install/standalone/po/uz.po,
+ perl-install/standalone/po/uz@Latn.po,
+ perl-install/standalone/po/vi.po,
+ perl-install/standalone/po/wa.po,
+ perl-install/standalone/po/zh_CN.po,
+ perl-install/standalone/po/zh_TW.po: fix labels' case in
+ draksplash
+
+2006-05-31 17:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksplash: move a lonely option out of
+ its big empty notebook page above the notebook (nicer GUI)
+
+2006-05-31 17:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/keyboarddrake: make interface being a
+ litle more user-friendly by adding labels^h^h^h^h^h^h titles
+
+2006-05-31 17:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: (ask_fromW) do not put titles
+ in size groups which add extra left
+ spacing to other widgets when adding new titles
+
+2006-05-31 16:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive.pm: describe "title" parameter
+
+2006-05-31 16:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (setupBootloader__general) HIG-ize the
+ layout with new title parameter
+
+2006-05-31 16:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mygtk2.pm: (_gtk) handle the padding attributes
+ (supported by all Gtk2::Misc descendants)
+
+2006-05-31 16:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: (ask_fromW) use spacing to
+ separate groups like specified in GNOME's HIG
+ * perl-install/interactive/gtk.pm: (ask_fromW) if title boolean is
+ set, use a header like specified in GNOME's HIG
+
+2006-05-31 16:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (setupBootloader__general) make APIC
+ options advanced ones
+
+2006-05-31 16:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: (ask_fromW) fix labels being
+ centered, which looks bad
+
+2006-05-31 16:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: move draknetprofile in gtk package
+
+2006-05-31 16:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Makefile.config: add draknetprofile
+
+2006-05-31 15:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draknetprofile: don't expand label
+
+2006-05-31 15:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draknetprofile: update copyright
+
+2006-05-31 15:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draknetprofile: introduce draknetprofile
+
+2006-05-31 15:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: add netprofile_clone()
+
+2006-05-30 19:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: revert debug stuff that was wrongly
+ commited in
+
+2006-05-30 19:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.29-1mdv2007.0
+
+2006-05-30 19:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (string_size) reexport it (it's still
+ used by rpmdrake)
+
+2006-05-30 18:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: really fix 10.4.28-1mdv2007.0's
+ changelog
+
+2006-05-30 18:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix 10.4.28-1mdv2007.1's changelog
+
+2006-05-30 16:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: perl_checker compliance
+
+2006-05-30 16:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: fix previous commit
+
+2006-05-30 15:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix 10.4.28-1mdv2006.1's
+ changelog: #22756 was for drakconnect, not drakroam
+
+2006-05-30 15:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: switch to Driver "kbd" instead of
+ "keyboard"
+
+2006-05-30 15:31 Pixel <pixel at mandriva.com>
+
+ * ChangeLog:
+
+2006-05-30 14:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: harddrake init service isn't a
+ config file
+
+2006-05-30 14:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_auto_install.pm: correctly handle
+ translated strings written on console in auto_installs
+
+2006-05-30 14:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.28-1mdv2006.1
+
+2006-05-30 13:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: pass real
+ network::connection object in configure_control_compat step
+ (#22756)
+
+2006-05-30 14:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_auto_install.pm: correctly handle
+ translated strings written on console in auto_installs
+
+2006-05-30 14:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.28-1mdv2006.1
+
+2006-05-30 13:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: pass real
+ network::connection object in configure_control_compat step
+ (#22756)
+
+2006-05-30 09:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: remove old unneeded workaround
+
+2006-05-30 09:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: we don't need locale & langinfo
+ stuff anymore
+
+2006-05-30 09:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: don't overwrite user-provided
+ domainname by the one we guess (#22480 fix #2)
+
+2006-05-30 09:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: make sure guessed domain names
+ really contain a name, and not just a TLD (#22480 fix #1)
+
+2006-05-30 08:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm, perl-install/Xconfig/various.pm: -
+ remove DRI_GLX_EXPERIMENTAL support (not much such cards
+ nowadays)
+ - remove xorg_version() since we only have one Xorg version (and
+ for a long time now)
+
+2006-05-29 20:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add yet another PPC sound driver
+ (snd-aoa)
+
+2006-05-29 17:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: adapt to new keyring image
+ location in usermode (#22813)
+
+2006-05-29 13:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/any.pm: revert
+
+2006-05-29 13:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/any.pm: (setPackages) we'd better first
+ initialize o->{rpmsrate_flags_was_chosen} if
+ needed *before* actually referencing it through
+ $rpmsrate_flags_was_chosen...
+
+2006-05-29 12:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/steps_list.pm: fix layout when translated
+ by using single verbs or words when possible (fix
+ some hidden steps btw in order to prepare the day when the may
+ be showed
+ again) (#8985)
+
+2006-05-29 11:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: add support for "laptop" kernels
+ (were known as multimedia or mm kernels)
+ * perl-install/bootloader.pm: minimal adaptation to mdv extension
+ (eg: 1mdv instead of 1mdk)
+
+2006-05-29 10:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: remove export for two internal functions
+
+2006-05-29 10:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/br.po: update
+ * perl-install/ugtk2.pm: (create_box_with_title) do not mess up
+ with gtk+ policy when it doesn't please
+ us (from a complaint by fcrozat)
+
+2006-05-29 10:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: kill some dead code that wasn't used for
+ quite a long time
+ * docs/HACKING: adapt to xorg7
+
+2006-05-29 10:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/services.pm: handle LSB description tags (#20998)
+
+2006-05-29 07:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: xorg version is 7.0
+
+2006-05-26 10:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_interactive.pm: only suggest entries
+ from /home which are directories
+ * perl-install/any.pm: - suggest previously existing users using a
+ combo box
+ - this will help when /home contains rubbish entries (eg:
+ /home/usr,
+ /home/bin... when /home has been used as a "/" somehow)
+ - when testing if the user exist, use getpwnam
+
+2006-05-26 10:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_interactive.pm: don't suggest bad
+ users name
+
+2006-05-24 18:32 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm,
+ perl-install/printer/printerdrake.pm: - Improved/updated the
+ instructions for faxing with HP multi-function
+ devices
+ - Let faxing instructions also appear in the help window of fax
+ queues
+
+2006-05-24 15:30 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Added welcome screen to
+ fax queue setup wizard, this way one can
+ easily abort the setup of a fax queue if one does not want to
+ have one.
+
+2006-05-24 14:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.27-1mdk
+
+2006-05-24 13:15 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/detect.pm: - Let also the model info output
+ from the "snmp" CUPS backend be
+ straightened, not only the output from "scli",
+
+2006-05-24 13:13 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Fixed bug of the network
+ printer setup dialog not distinguishing
+ correctly between an auto-detected printer chosen from the
+ menu and
+ a manually entered printer IP.
+
+2006-05-24 12:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: save info about cordless mouse MX700
+
+2006-05-24 11:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/harddrake/autoconf.pm: add missing newline
+
+2006-05-24 10:55 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - If the printer has
+ optional hardware add-ons, pop up a dialog/wizard
+ step to configure them when installing via Plug'n'Print or in
+ recommended
+ mode (in expert mode all options will be shown, as before).
+
+2006-05-23 23:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: make sure /etc/modprobe.preload.d/
+ is available for harddrake::autoconf::pcmcia()
+
+2006-05-23 22:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/harddrake/autoconf.pm: write PCMCIA controller in
+ /etc/modprobe.preload.d/pcmcia instead of /etc/sysconfig/pcmcia
+
+2006-05-23 22:29 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Option setup dialog:
+ Support for string and password options
+ - Option setup dialog: Let integer options be shown with spin
+ button
+ or as a slider
+ - Option setup dialog: Let options without group be put into the
+ "General" group
+
+2006-05-22 16:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm,
+ perl-install/network/thirdparty.pm,
+ perl-install/network/wireless.pm: move wireless thirdparty
+ settings in network::wireless
+
+2006-05-22 16:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: ident and move code
+
+2006-05-22 16:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: use subs in xDSL thirdparty
+ settings
+
+2006-05-22 16:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: add select_network step
+
+2006-05-22 16:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: add default metric for wireless
+
+2006-05-22 15:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: write BOOTPROTO in ifcfg files
+ for ethernet
+
+2006-05-22 15:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: add get_protocols and
+ guess_protocol for ethernet type
+
+2006-05-22 15:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: don't call methods that the
+ connection type can't support
+
+2006-05-22 15:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: pass $net to guess_protocol
+
+2006-05-22 15:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: adapt to new keyring image
+ location in usermode (#22495)
+
+2006-05-22 14:50 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Fixed problem of having
+ two choices with the same menu entry in a an
+ option in the PPD file (should not be, really bad usability)
+ breaks
+ setting up printers/changing options/changing printer name in
+ printerdrake
+
+2006-05-22 14:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix spacing
+
+2006-05-22 14:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: introduce is_gigabit and use
+ it to guess metric for ethernet
+
+2006-05-22 14:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection.pm: handle metric in general
+ control settings
+
+2006-05-22 13:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm,
+ perl-install/network/thirdparty.pm: return settings in
+ thirdparty module, and use it to get modem device in netconnect
+
+2006-05-22 13:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix compat for modem
+
+2006-05-22 12:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: move thirdparty setup in
+ "complete" phase
+
+2006-05-22 12:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection.pm: don't fail thirdparty step
+ if the connection type doesn't support it
+
+2006-05-22 12:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * docs/HACKING: we need libxxf86misc-devel
+
+2006-05-22 12:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: BuildRequires: libxxf86misc-devel
+
+2006-05-22 12:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.26-1mdk
+
+2006-05-22 11:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: fix firmware check for ueagle-atm
+
+2006-05-22 11:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/draksambashare,
+ perl-install/standalone/harddrake2,
+ perl-install/standalone/printerdrake: tell perl the source file
+ uses utf8 strings
+
+2006-05-22 11:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mygtk2.pm: make the comment more explanatory
+
+2006-05-22 11:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakfont: fix tititypo
+
+2006-05-22 11:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: add "use UTF-8" for people
+ names
+
+2006-05-22 10:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/.perl_checker: blacklist URPM for perl_checker
+
+2006-05-22 10:47 Pixel <pixel at mandriva.com>
+
+ * ChangeLog:
+
+2006-05-22 10:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksambashare: set window icon
+ * perl-install/standalone/drakfont,
+ perl-install/standalone/draksambashare,
+ perl-install/standalone/harddrake2,
+ perl-install/standalone/printerdrake: use standard Gtk+ about
+ widget
+
+2006-05-22 10:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: fix untranslated about dialog
+ * perl-install/standalone/harddrake2: fix untranslated license
+ * perl-install/mygtk2.pm: (_gtk__AboutDialog) introduce it
+
+2006-05-22 10:22 Pixel <pixel at mandriva.com>
+
+ * ChangeLog:
+
+2006-05-22 09:02 Pixel <pixel at mandriva.com>
+
+ * ChangeLog:
+
+2006-05-22 08:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: fix xterm appearing twice
+
+2006-05-22 10:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: fix untranslated about dialog
+ * perl-install/standalone/harddrake2: fix untranslated license
+ * perl-install/mygtk2.pm: (_gtk__AboutDialog) introduce it
+
+2006-05-22 10:22 Pixel <pixel at mandriva.com>
+
+ * ChangeLog:
+
+2006-05-22 09:02 Pixel <pixel at mandriva.com>
+
+ * ChangeLog:
+
+2006-05-22 08:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: fix xterm appearing twice
+
+2006-05-22 08:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: a few minimal X apps, at
+ least for the transition
+
+2006-05-21 23:17 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/data.pm, perl-install/printer/main.pm,
+ perl-install/printer/printerdrake.pm: - Use "CUPS + Gutenprint"
+ and not "GhostScript + gutenprint-ijs" PPDs
+ in beginners mode
+ - Show all important options of Gutenprint without needing to
+ click
+ "Advanced" button
+ - Do not let printerdrake install gutenprint-ijs and
+ gutenprint-foomatic any more
+ - Updated list of update-alternatives-controlled files for CUPS
+
+2006-05-22 08:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: fix xterm appearing twice
+
+2006-05-22 08:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: a few minimal X apps, at
+ least for the transition
+
+2006-05-21 23:17 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/data.pm, perl-install/printer/main.pm,
+ perl-install/printer/printerdrake.pm: - Use "CUPS + Gutenprint"
+ and not "GhostScript + gutenprint-ijs" PPDs
+ in beginners mode
+ - Show all important options of Gutenprint without needing to
+ click
+ "Advanced" button
+ - Do not let printerdrake install gutenprint-ijs and
+ gutenprint-foomatic any more
+ - Updated list of update-alternatives-controlled files for CUPS
+
+2006-05-22 08:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/rpmsrate: a few minimal X apps, at
+ least for the transition
+
+2006-05-21 23:17 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/data.pm, perl-install/printer/main.pm,
+ perl-install/printer/printerdrake.pm: - Use "CUPS + Gutenprint"
+ and not "GhostScript + gutenprint-ijs" PPDs
+ in beginners mode
+ - Show all important options of Gutenprint without needing to
+ click
+ "Advanced" button
+ - Do not let printerdrake install gutenprint-ijs and
+ gutenprint-foomatic any more
+ - Updated list of update-alternatives-controlled files for CUPS
+
+2006-05-21 10:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: fix https proxy check in proxy
+ dialog box
+
+2006-05-21 10:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: fix spacing
+
+2006-05-21 01:18 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Improved/fixed text on
+ protocol selector button in the network
+ printer setup dialog
+
+2006-05-19 17:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: remove ADSL specific code
+ * perl-install/network/netconnect.pm: use generic steps for xDSL
+
+2006-05-19 17:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: add generic steps in
+ netconnect
+
+2006-05-19 17:51 Pixel <pixel at mandriva.com>
+
+ * ChangeLog:
+
+2006-05-19 17:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ppp.pm: fix typo
+
+2006-05-19 17:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: write custom ppp options before
+ pty/plugin stuff
+
+2006-05-19 17:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: remove unneeded network::adsl
+ require
+
+2006-05-19 17:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: install packages before unloading
+ connection
+ * perl-install/network/connection.pm: really apply ONBOOT and
+ USERCTL settings
+
+2006-05-19 17:12 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: add and use @non_ppp_protocols and
+ uses_ppp()
+
+2006-05-19 17:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: fix ADSL type test
+
+2006-05-19 17:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: pass missing $net variable
+
+2006-05-19 16:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: simplify
+ * perl-install/network/adsl.pm, perl-install/network/xdsl.pm: move
+ last adsl bits in network::xdsl
+
+2006-05-19 16:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: allow to set protocol specific
+ settings in thirdparty device settings
+
+2006-05-19 16:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: allow to add ppp option fields in
+ thirdparty
+
+2006-05-19 16:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: move plugin options in generic
+ protocol settings
+
+2006-05-19 16:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: move protocol settings in
+ get_protocol_settings() method, so that they can depend on the
+ interface
+
+2006-05-19 16:26 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: fix typo
+
+2006-05-19 16:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/fonts.tar.bz2,
+ perl-install/install/share/locales-skeleton.tar.bz2: move things
+ from /usr/X11R6/lib/X11 into /usr/lib/X11
+
+2006-05-19 15:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile, perl-install/install/gtk.pm,
+ perl-install/install/share/list.xml,
+ perl-install/install/steps.pm,
+ perl-install/install/steps_gtk.pm, perl-install/keyboard.pm,
+ perl-install/printer/printerdrake.pm: x11 has moved, /usr/X11R6
+ is dead
+
+2006-05-19 17:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: write custom ppp options before
+ pty/plugin stuff
+
+2006-05-19 17:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: remove unneeded network::adsl
+ require
+
+2006-05-19 17:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: install packages before unloading
+ connection
+ * perl-install/network/connection.pm: really apply ONBOOT and
+ USERCTL settings
+
+2006-05-19 17:12 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: add and use @non_ppp_protocols and
+ uses_ppp()
+
+2006-05-19 17:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: fix ADSL type test
+
+2006-05-19 17:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: pass missing $net variable
+
+2006-05-19 16:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: simplify
+ * perl-install/network/adsl.pm, perl-install/network/xdsl.pm: move
+ last adsl bits in network::xdsl
+
+2006-05-19 16:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: allow to set protocol specific
+ settings in thirdparty device settings
+
+2006-05-19 16:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: allow to add ppp option fields in
+ thirdparty
+
+2006-05-19 16:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: move plugin options in generic
+ protocol settings
+
+2006-05-19 16:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: move protocol settings in
+ get_protocol_settings() method, so that they can depend on the
+ interface
+
+2006-05-19 16:26 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: fix typo
+
+2006-05-19 16:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/fonts.tar.bz2,
+ perl-install/install/share/locales-skeleton.tar.bz2: move things
+ from /usr/X11R6/lib/X11 into /usr/lib/X11
+
+2006-05-19 15:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile, perl-install/install/gtk.pm,
+ perl-install/install/share/list.xml,
+ perl-install/install/steps.pm,
+ perl-install/install/steps_gtk.pm, perl-install/keyboard.pm,
+ perl-install/printer/printerdrake.pm: x11 has moved, /usr/X11R6
+ is dead
+
+2006-05-19 15:26 Pixel <pixel at mandriva.com>
+
+ * Makefile: don't fail when using non english locale
+
+2006-05-19 13:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: add misc fonts as a fallback to
+ xfs not running (as suggested by Yves Bourhis)
+
+2006-05-19 13:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/install2.pm,
+ perl-install/install/share/rpmsrate,
+ perl-install/install/steps.pm,
+ perl-install/install/steps_interactive.pm: replace xorg-x11 with
+ task-x11
+
+2006-05-19 13:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm, perl-install/network/xdsl.pm: move
+ generic settings in %network::xdsl::protocol_settings
+
+2006-05-19 13:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: allow to define generic options
+ and pty in %protocol_settings
+
+2006-05-19 13:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/XFdrake: simplify using task-x11
+
+2006-05-19 13:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/any.pm: /usr/X11R6 is dead, look for "src"
+ to guess if the mount point is /usr
+
+2006-05-19 13:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: allow to use generic protocol
+ options from the %ppp_generic hash
+
+2006-05-19 12:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: ensuring x11-server-xorg installed
+ is done elsewhere
+
+2006-05-19 12:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm, perl-install/network/xdsl.pm: move
+ modem specific ppp options in xdsl thirdparty settings
+
+2006-05-19 12:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: allow to put ppp options in
+ thirdparty settings
+
+2006-05-19 12:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: load the correct driver if
+ reload_module is 1
+
+2006-05-19 12:17 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: don't forget $in
+
+2006-05-19 12:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm, perl-install/network/xdsl.pm: move
+ packages stuff in network::xdsl::install_packages
+
+2006-05-19 12:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/isdn.pm: simplify
+
+2006-05-19 11:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/XFdrake: add video driver v4l
+
+2006-05-19 11:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: move the "Requires: hwdb-clients"
+ where appropriate, that is in
+ harddrake-ui, not in harddrake (pixel)
+
+2006-05-19 11:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: remove unused plugin options
+
+2006-05-19 11:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps.pm: allow setting firewall_ports =>
+ undef for auto installs to disable firewall
+
+2006-05-19 11:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm, perl-install/network/xdsl.pm: move
+ ueagle-atm CMV TODO in network::xdsl
+
+2006-05-19 11:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: add missing require
+
+2006-05-19 11:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm, perl-install/network/xdsl.pm: move
+ CAPI stuff in network::xdsl
+
+2006-05-19 11:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm, perl-install/network/isdn.pm:
+ split setup_capi_conf and some prepare_connection bits in
+ unload_connection and install_packages
+
+2006-05-19 10:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/isdn.pm: split apply_config() in
+ write_settings() and prepare_connection()
+
+2006-05-19 10:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile.drakxtools, perl-install/drakxtools.spec:
+ move Xdrakres from /usr/X11R6/bin to /usr/sbin
+
+2006-05-19 10:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/isdn.pm,
+ perl-install/network/netconnect.pm,
+ perl-install/standalone/drakconnect: rename
+ network::isdn::write_config as network::isdn::apply_config
+
+2006-05-19 10:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm, perl-install/network/xdsl.pm: move
+ pppoe ifcfg stuff in network::xdsl::write_settings
+
+2006-05-19 10:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: ifcfg stuff is now written by
+ network::xdsl::write_settings
+ * perl-install/network/xdsl.pm: don't set ADSL type for static/dhcp
+
+2006-05-19 10:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: force ADSL type in ifcfg file
+
+2006-05-19 10:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: don't write ppp settings for
+ static/dhcp connections
+
+2006-05-19 10:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm, perl-install/network/xdsl.pm: move
+ CAPI related post-config stuff in
+ network::xdsl::prepare_connection
+
+2006-05-19 09:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: use real device in network::xdsl
+ for CAPI
+
+2006-05-19 09:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm, perl-install/network/xdsl.pm: move
+ module loading in network::xdsl::prepare_connection
+
+2006-05-19 09:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: add bewan tricks
+
+2006-05-19 09:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: build xdsl compat structure for
+ all connection types, not only ppp/capi
+
+2006-05-18 21:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: use network::ppp::write_settings
+
+2006-05-18 21:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: remove unused "modules" modem
+ option
+
+2006-05-18 21:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: remove unused "start" modem
+ option, all is done by network::thirdparty now
+
+2006-05-18 21:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: remove bewan start/stop hooks,
+ it's better done with thirdparty
+
+2006-05-18 21:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: remove unused ECI start script
+
+2006-05-18 19:26 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: don't die if module loading
+ fails
+
+2006-05-18 19:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: remove useless require
+
+2006-05-18 19:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: make connect() method connect
+ only, move disconnection in disconnect()
+
+2006-05-18 19:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection.pm: implement default connect
+ method
+
+2006-05-18 19:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm, perl-install/network/xdsl.pm: move
+ generic ADSL plugins in network::xdsl
+
+2006-05-18 19:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ppp.pm: support init option
+
+2006-05-18 18:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: add protocol in xdsl compat
+
+2006-05-18 18:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: remove some duplicate options
+
+2006-05-18 18:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm, perl-install/network/xdsl.pm: move
+ common ADSL ppp options to network::xdsl module
+
+2006-05-18 18:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: add network::xdsl compatibility
+ structure
+
+2006-05-18 18:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: oops, pty was still used
+
+2006-05-18 18:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/mobile_data.pm: use network::ppp as base
+ class as well
+
+2006-05-18 18:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: add xdsl connect method
+
+2006-05-18 18:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: write ppp config
+
+2006-05-18 18:12 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ppp.pm: allow to build and write peer files
+
+2006-05-18 18:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: use network::ppp as base class as
+ well
+
+2006-05-18 18:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: remove specific noipdefault code
+
+2006-05-18 18:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/XFdrake: simplify since some pkgs
+ require some others
+
+2006-05-18 18:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: drop unused pty option
+
+2006-05-18 18:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: move ppp options from monolithic
+ string to string array
+
+2006-05-18 18:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.25-1mdk
+
+2006-05-18 18:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ppp.pm, perl-install/network/tools.pm: move
+ ppp secret stuff in network::ppp module
+
+2006-05-18 17:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: merge unquotify in passwd_by_login
+
+2006-05-18 17:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ppp.pm: move secrets files list out of
+ write_secrets()
+
+2006-05-18 17:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm, perl-install/Xconfig/main.pm,
+ perl-install/Xconfig/proprietary.pm, perl-install/keyboard.pm,
+ perl-install/printer/printerdrake.pm,
+ perl-install/standalone/XFdrake: quick adaptation to x11 move
+ and splitting
+
+2006-05-18 17:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: merge read_secret_backend() in
+ passwd_by_login()
+
+2006-05-18 17:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: use correct login for secret
+ file...
+
+2006-05-18 17:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: simplify call to test_pms_all
+
+2006-05-18 15:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ppp.pm: fix typo
+
+2006-05-18 11:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/modem.pm: simplify password reading in
+ modem module
+
+2006-05-18 11:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ppp.pm, perl-install/network/tools.pm: move
+ ppp secrets writing in network::ppp::write_secrets
+
+2006-05-18 11:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/pots.pm, perl-install/network/ppp.pm,
+ perl-install/network/xdsl.pm: pass the whole connection to
+ network::ppp::get_login_password
+
+2006-05-18 11:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: don't override xDSL login by pppoe
+ login if already found in ppp peeers file
+
+2006-05-18 11:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: drop network_on_boot and
+ allow_user_ctl steps, use network::connection in
+ configure_control_compat instead
+
+2006-05-18 10:17 Warly <warly at mandriva.com>
+
+ * Makefile: add space to test svn
+
+2006-05-17 23:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: add default metric and interface
+ for xdsl
+
+2006-05-17 23:26 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection.pm: add control settings
+
+2006-05-17 23:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: add minimal bits for writing xDSL
+ settings
+
+2006-05-17 23:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: probe access settings in
+ guess_access_settings, using network::adsl::adsl_probe_info and
+ provider info
+
+2006-05-17 23:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: fix typo
+
+2006-05-17 23:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: add VPI/VCI settings for
+ PPPoA/PPPoE protocols
+
+2006-05-17 22:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/pots.pm, perl-install/network/xdsl.pm: make
+ get_access_settings return a hash suitable for ask_from_
+
+2006-05-17 22:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/pots.pm, perl-install/network/xdsl.pm:
+ rename get_authentication as get_access_settings and store
+ access settings in $self->{access}
+
+2006-05-17 22:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/mobile_data.pm: do not clutter connect()
+ with configuration writing, move it in write_settings()
+
+2006-05-17 22:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/mobile_data.pm: move PIN number code in
+ get_access_settings and add label
+
+2006-05-17 22:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/mobile_data.pm: don't warn for missing APN
+ yet
+
+2006-05-17 22:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/mobile_data.pm: move APN probe in
+ guess_access_settings
+
+2006-05-17 22:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/mobile_data.pm: move APN in
+ $self->{access}{apn}
+
+2006-05-17 22:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/mobile_data.pm: add missing parameter
+
+2006-05-17 22:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection.pm,
+ perl-install/network/mobile_data.pm: allow to write settings
+ from generic network::connection class
+
+2006-05-17 22:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/mobile_data.pm: move ifcfg function call in
+ new network::mobile_data::build_ifcfg_settings()
+
+2006-05-17 21:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: add guess_protocol() to find
+ prefered connection type for xDSL connections
+
+2006-05-17 20:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm,
+ perl-install/network/xdsl.pm: return hash ref in get_protocols,
+ not hash
+
+2006-05-17 20:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm,
+ perl-install/network/xdsl.pm: network::xdsl::get_methods is
+ better named get_protocols
+
+2006-05-17 20:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: don't give providers and protocols
+ choices for CAPI DSL modems
+
+2006-05-17 20:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: add xdsl type in devices
+
+2006-05-17 19:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm,
+ perl-install/network/thirdparty.pm,
+ perl-install/network/xdsl.pm: move xdsl thirparty settings in
+ network::xdsl
+
+2006-05-17 19:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection.pm: allow to setup thirdparty
+ settings if the connection can get_thirdparty_settings
+
+2006-05-17 19:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: allow to easily split
+ settings in other modules
+
+2006-05-17 18:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm,
+ perl-install/network/xdsl.pm: move %adsl_types in
+ network::xdsl::get_methods()
+
+2006-05-17 17:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: detect ISDN DSL devices and
+ ethernet devices as well
+
+2006-05-17 17:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm, perl-install/harddrake/data.pm,
+ perl-install/network/xdsl.pm: move xDSL USB devices detection in
+ detect_devices::get_xdsl_usb_devices()
+
+2006-05-17 17:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/isdn.pm: allow to get capi card without
+ checking for drivers
+
+2006-05-17 15:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/connection.pm,
+ perl-install/network/xdsl.pm: return translated strings in all
+ network::connection modules
+
+2006-05-17 15:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/cable.pm,
+ perl-install/network/connection.pm, perl-install/network/dvb.pm:
+ add cable and dvb connection types
+
+2006-05-17 15:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: require modules instead of use
+
+2006-05-17 14:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: simplify
+
+2006-05-17 14:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: adapt to new parameters for
+ speedtch
+
+2006-05-17 14:26 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: handle new ueagle-data
+ firmware files (and ueagle-firmware package)
+
+2006-05-17 14:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: adapt bewan detection
+
+2006-05-17 14:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: merge dnsServer2,
+ dnsServer3 and dnsServers_text in dnsServers array ref (not used
+ currently)
+
+2006-05-17 13:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: correctly quote @ in
+ login_format strings
+
+2006-05-17 13:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: space fixes
+
+2006-05-17 13:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: - merge new login_format,
+ dnsServers_text, encryption and CMVep fields (from Benoît
+ Audouard)
+ - remove methods_all field, we only want the prefered connection
+ type
+
+2006-05-17 13:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/uz.po,
+ perl-install/standalone/po/uz@Latn.po: update (Mashrab Kuvatov)
+
+2006-05-17 13:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/uz.po,
+ perl-install/install/share/po/uz@Latn.po: update (Mashrab
+ Kuvatov)
+
+2006-05-17 13:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: remove eagle-usb pppoe tricks from
+ generic pppoe method
+
+2006-05-17 13:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix typo
+
+2006-05-17 13:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fallback to pppoa for all
+ non-ethernet modems
+
+2006-05-17 13:12 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: allow to use atmarp with
+ ueagle-atm as well
+
+2006-05-17 13:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm,
+ perl-install/network/netconnect.pm: remove eagle-usb specific
+ tricks
+
+2006-05-17 13:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: fix plugin support
+
+2006-05-17 12:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: add missing requires
+
+2006-05-17 12:43 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: allow to run postInstall commands from
+ $live->{system}{postInstall}
+
+2006-05-17 11:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm,
+ perl-install/network/netconnect.pm: drop eagle-usb support,
+ switch to ueagle-atm
+
+2006-05-17 11:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm,
+ perl-install/network/netconnect.pm: simplify
+
+2006-05-17 11:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm,
+ perl-install/network/netconnect.pm: make ppp method
+ plugin/options/server more generic
+
+2006-05-17 11:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: add quotes for consistency
+
+2006-05-17 11:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm,
+ perl-install/network/netconnect.pm: simplify bewan module tricks
+ * perl-install/network/xdsl.pm: perl_checker compliance
+
+2006-05-17 11:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/xdsl.pm: fix typo
+
+2006-05-17 11:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm,
+ perl-install/network/xdsl.pm: use correct Bewan module names
+
+2006-05-17 11:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: getSpeedtouch and getSagem are
+ now unused, drop them
+
+2006-05-17 10:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/harddrake/data.pm, perl-install/network/adsl.pm,
+ perl-install/network/netconnect.pm: drop
+ network::adsl::adsl_detect() and use
+ network::xdsl::get_devices() instead
+
+2006-05-17 10:26 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: drop old eagle-usb CMV support
+
+2006-05-17 09:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: drop custom pppoa options for
+ sagem modems (upstream doesn't recommend any of them)
+
+2006-05-17 09:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: don't export adsl_conf_backend
+ * perl-install/network/adsl.pm,
+ perl-install/network/netconnect.pm,
+ perl-install/standalone/drakconnect: adsl_conf_backend doesn't
+ need modules_conf anymore
+
+2006-05-17 09:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: drop ML 10.0 specific code
+
+2006-05-17 09:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: drop obsolete module aliases code
+
+2006-05-17 09:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: drop obsolete speedtouch scripts
+
+2006-05-16 15:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Makefile: add modules.alias file for PCMCIA probe
+ (and more buses to come)
+
+2006-05-16 14:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/modalias.pm: use c::kernel_version() (for install,
+ thanks Pixel)
+
+2006-05-16 14:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: use sysfs to get PCMCIA devices
+ and the modalias module to get matching modules
+ * perl-install/.perl_checker, perl-install/modalias.pm: add
+ modalias module, providing a get_modules() function to resolve
+ modaliases the way modprobe does it
+
+2006-05-16 14:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: remove unneeded PCMCIA "type"
+ device setting, but keep crappy PCMCIA devices check for modems
+
+2006-05-16 14:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm,
+ perl-install/network/ethernet.pm,
+ perl-install/network/ndiswrapper.pm: add
+ detect_devices::get_sysfs_field_from_link() and use it
+
+2006-05-16 09:42 Pixel <pixel at mandriva.com>
+
+ * tools/drakx-in-chroot: $dir/dev must be created for
+ $dir/dev/root to be created successfully
+
+2006-05-16 09:25 Pixel <pixel at mandriva.com>
+
+ * kernel/list_modules.pm, kernel/modules.pl, kernel/update_kernel,
+ perl-install/modules.pm: don't handle kernel 2.4 anymore, so
+ simplify
+
+2006-05-16 08:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: we have way too many functions
+ detecting various stuff, at least remove unused one
+
+2006-05-16 08:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: usbMice() was used in mouse.pm
+ with kernel 2.4, removing it
+
+2006-05-16 08:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootsplash.pm: do not export functions, draksplash2
+ doesn't need it anymore
+
+2006-05-16 08:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/draksplash2: do not import bootsplash
+ functions, use them with bootsplash:: namespace (it's more clear)
+
+2006-05-16 08:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/main.pm: @options_serverflags was never
+ used, remove them
+
+2006-05-16 07:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: $::windowheight is undefined (since titi
+ killed it). Hopefully we can display the whole test mouse, so
+ don't restrict anymore on the X resolution
+
+2006-05-15 15:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/services.pm: - ask_install_simple() is unused for a
+ long time
+ - rename ask_install() into ask_() since it is used in
+ standalone non gtk
+
+2006-05-15 15:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: - vmlinuz2basename() is unused
+ - move vmlinuz2kernel_str() next to vmlinuz2version() since
+ there are doing
+ something alike
+
+2006-05-15 15:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl, perl-install/install/any.pm: drop
+ unused function unlockCdrom() (we use ejectCdrom which use
+ openCdromTray)
+ and so also remove c::CDROM_LOCKDOOR()
+
+2006-05-15 15:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: remove unused functions
+ upgrade_utf8() and is_tagged_utf8()
+
+2006-05-15 15:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/.perl_checker: printer::cups uses File::Temp
+
+2006-05-15 15:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: explain what log_message is
+
+2006-05-15 15:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: remove unused stuff (was for rpmlib
+ AFAIK)
+
+2006-05-15 15:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: remove obsolete #include
+
+2006-05-15 15:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: remove obsolete dmiDetectMemory
+ (doesn't work anymore since removing the code behind it)
+ * perl-install/c/stuff.xs.pl: remove unused stuff
+
+2006-05-15 14:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl, perl-install/install/install2.pm:
+ remove unused debug stuff
+
+2006-05-15 14:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/any.pm, perl-install/install/steps.pm,
+ perl-install/install/steps_interactive.pm: move PCMCIA
+ controller detection in install::any::configure_pcmcia() and
+ drop wait message (we don't sleep anymore here)
+
+2006-05-15 14:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Makefile, perl-install/install/any.pm,
+ perl-install/install/install2.pm,
+ perl-install/install/share/list.xml,
+ tools/patch_pcmcia_config.pl: - drop cardmgr daemon and use
+ pcmcia-socket-startup instead
+ - drop tools/patch_pcmcia_config.pl
+ - install PCMCIA tools for all architectures
+
+2006-05-15 13:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install/steps.pm: use PCMCIA even in
+ non-interactive kernels
+
+2006-05-15 13:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm,
+ perl-install/install/steps_interactive.pm: move noauto and arch
+ check to pcmcia_controller_probe()
+
+2006-05-15 13:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm,
+ perl-install/install/steps_interactive.pm: merge
+ real_pcmcia_probe() with pcmcia_controller_probe()
+
+2006-05-15 13:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules/interactive.pm: perl_checker compliance
+
+2006-05-15 13:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm,
+ perl-install/install/steps_interactive.pm,
+ perl-install/partition_table/mac.pm: don't have
+ partition_table::mac writing in bootloader namespace
+ (anyway this code would need cleaning)
+
+2006-05-15 13:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/verify_c: unused (deprecated by perl_checker for a
+ long time now)
+
+2006-05-15 13:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: allow to manually select the
+ speedtouch microcode
+
+2006-05-15 12:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/run_program.pm: fix typo and don't break common
+ usage (thanks Pixel)
+
+2006-05-15 12:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: don't warn on success
+ * perl-install/network/thirdparty.pm: handle new
+ speedtouch-firmware package and speedtch-*.bin* firmware files
+ (with speedtouch-firmware-extractor if needed)
+
+2006-05-15 12:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: allow to reload module in
+ thirdparty options
+
+2006-05-15 12:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/run_program.pm: allow to change the working
+ directory before running programs with the chdir option
+
+2006-05-15 12:04 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/po/af.po,
+ perl-install/standalone/po/am.po,
+ perl-install/standalone/po/ar.po,
+ perl-install/standalone/po/az.po,
+ perl-install/standalone/po/be.po,
+ perl-install/standalone/po/bg.po,
+ perl-install/standalone/po/bn.po,
+ perl-install/standalone/po/bs.po,
+ perl-install/standalone/po/ca.po,
+ perl-install/standalone/po/cs.po,
+ perl-install/standalone/po/cy.po,
+ perl-install/standalone/po/da.po,
+ perl-install/standalone/po/de.po,
+ perl-install/standalone/po/el.po,
+ perl-install/standalone/po/eo.po,
+ perl-install/standalone/po/es.po,
+ perl-install/standalone/po/eu.po,
+ perl-install/standalone/po/fa.po,
+ perl-install/standalone/po/fi.po,
+ perl-install/standalone/po/ga.po,
+ perl-install/standalone/po/gl.po,
+ perl-install/standalone/po/he.po,
+ perl-install/standalone/po/hi.po,
+ perl-install/standalone/po/hr.po,
+ perl-install/standalone/po/hu.po,
+ perl-install/standalone/po/id.po,
+ perl-install/standalone/po/is.po,
+ perl-install/standalone/po/it.po,
+ perl-install/standalone/po/ja.po,
+ perl-install/standalone/po/ko.po,
+ perl-install/standalone/po/lt.po,
+ perl-install/standalone/po/lv.po,
+ perl-install/standalone/po/mk.po,
+ perl-install/standalone/po/mn.po,
+ perl-install/standalone/po/ms.po,
+ perl-install/standalone/po/nb.po,
+ perl-install/standalone/po/nl.po,
+ perl-install/standalone/po/nn.po,
+ perl-install/standalone/po/pa_IN.po,
+ perl-install/standalone/po/pl.po,
+ perl-install/standalone/po/pt.po,
+ perl-install/standalone/po/pt_BR.po,
+ perl-install/standalone/po/ro.po,
+ perl-install/standalone/po/ru.po,
+ perl-install/standalone/po/sk.po,
+ perl-install/standalone/po/sl.po,
+ perl-install/standalone/po/sq.po,
+ perl-install/standalone/po/sr.po,
+ perl-install/standalone/po/sr@Latn.po,
+ perl-install/standalone/po/sv.po,
+ perl-install/standalone/po/ta.po,
+ perl-install/standalone/po/th.po,
+ perl-install/standalone/po/tr.po,
+ perl-install/standalone/po/uk.po,
+ perl-install/standalone/po/vi.po,
+ perl-install/standalone/po/wa.po,
+ perl-install/standalone/po/zh_CN.po,
+ perl-install/standalone/po/zh_TW.po: rescued some existing
+ translation strings
+
+2006-05-15 12:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: please lord perl_checker
+
+2006-05-15 11:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: fix detecting some webcams
+ (#22452)
+
+2006-05-15 11:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table/raw.pm: better "don't do nonsense
+ when we don't have any geometry"
+
+2006-05-15 11:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: remove pty server (pppoe3) for
+ speedtouch, we already use the pppoatm plugin
+
+2006-05-15 10:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table/raw.pm: don't do nonsense when we
+ don't have any geometry
+
+2006-05-15 10:08 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: allow to set custom boot entry title in
+ $live->{media}{title}
+
+2006-05-15 10:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/mobile_data.pm: merge with 2006.0-mobile
+ branch (26942:27367)
+
+2006-05-15 09:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: Workaround to avoid empty media
+ names (which urpmi dislikes) when there is no
+ media description in the hdlists file
+ (from mlcs4 branch)
+
+2006-05-15 09:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/bootloader-config: do have log prefixed
+ with "bootloader-config", not "perl"
+
+2006-05-15 08:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: fix handle a little more cleanly
+ /boot/vmlinuz being a file and not a symlink
+
+2006-05-15 02:51 mmodem
+
+ * perl-install/standalone/po/pt.po: actualizar
+
+2006-05-15 02:49 mmodem
+
+ * perl-install/standalone/po/pt.po: actualizar
+
+2006-05-15 02:10 mmodem
+
+ * perl-install/standalone/po/pt.po: actualizar
+
+2006-05-15 01:48 mmodem
+
+ * perl-install/standalone/po/pt.po: update translation
+
+2006-05-15 01:07 mmodem
+
+ * perl-install/share/po/pt.po: update translation
+
+2006-05-15 00:56 mmodem
+
+ * perl-install/share/po/pt.po: update translation
+
+2006-05-13 10:14 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po,
+ perl-install/standalone/po/af.po,
+ perl-install/standalone/po/am.po,
+ perl-install/standalone/po/ar.po,
+ perl-install/standalone/po/az.po,
+ perl-install/standalone/po/be.po,
+ perl-install/standalone/po/bg.po,
+ perl-install/standalone/po/bn.po,
+ perl-install/standalone/po/br.po,
+ perl-install/standalone/po/bs.po,
+ perl-install/standalone/po/ca.po,
+ perl-install/standalone/po/cs.po,
+ perl-install/standalone/po/cy.po,
+ perl-install/standalone/po/da.po,
+ perl-install/standalone/po/de.po,
+ perl-install/standalone/po/el.po,
+ perl-install/standalone/po/eo.po,
+ perl-install/standalone/po/es.po,
+ perl-install/standalone/po/et.po,
+ perl-install/standalone/po/eu.po,
+ perl-install/standalone/po/fa.po,
+ perl-install/standalone/po/fi.po,
+ perl-install/standalone/po/fr.po,
+ perl-install/standalone/po/fur.po,
+ perl-install/standalone/po/ga.po,
+ perl-install/standalone/po/gl.po,
+ perl-install/standalone/po/he.po,
+ perl-install/standalone/po/hi.po,
+ perl-install/standalone/po/hr.po,
+ perl-install/standalone/po/hu.po,
+ perl-install/standalone/po/id.po,
+ perl-install/standalone/po/is.po,
+ perl-install/standalone/po/it.po,
+ perl-install/standalone/po/ja.po,
+ perl-install/standalone/po/ko.po,
+ perl-install/standalone/po/ky.po,
+ perl-install/standalone/po/libDrakX-standalone.pot,
+ perl-install/standalone/po/lt.po,
+ perl-install/standalone/po/ltg.po,
+ perl-install/standalone/po/lv.po,
+ perl-install/standalone/po/mk.po,
+ perl-install/standalone/po/mn.po,
+ perl-install/standalone/po/ms.po,
+ perl-install/standalone/po/mt.po,
+ perl-install/standalone/po/nb.po,
+ perl-install/standalone/po/nl.po,
+ perl-install/standalone/po/nn.po,
+ perl-install/standalone/po/pa_IN.po,
+ perl-install/standalone/po/pl.po,
+ perl-install/standalone/po/pt.po,
+ perl-install/standalone/po/pt_BR.po,
+ perl-install/standalone/po/ro.po,
+ perl-install/standalone/po/ru.po,
+ perl-install/standalone/po/sc.po,
+ perl-install/standalone/po/sk.po,
+ perl-install/standalone/po/sl.po,
+ perl-install/standalone/po/sq.po,
+ perl-install/standalone/po/sr.po,
+ perl-install/standalone/po/sr@Latn.po,
+ perl-install/standalone/po/sv.po,
+ perl-install/standalone/po/ta.po,
+ perl-install/standalone/po/tg.po,
+ perl-install/standalone/po/th.po,
+ perl-install/standalone/po/tl.po,
+ perl-install/standalone/po/tr.po,
+ perl-install/standalone/po/uk.po,
+ perl-install/standalone/po/uz.po,
+ perl-install/standalone/po/uz@Latn.po,
+ perl-install/standalone/po/vi.po,
+ perl-install/standalone/po/wa.po,
+ perl-install/standalone/po/zh_CN.po,
+ perl-install/standalone/po/zh_TW.po: Updated POT files.
+
+2006-05-13 01:09 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/af.po, perl-install/share/po/am.po,
+ perl-install/share/po/ar.po, perl-install/share/po/az.po,
+ perl-install/share/po/be.po, perl-install/share/po/bg.po,
+ perl-install/share/po/bn.po, perl-install/share/po/br.po,
+ perl-install/share/po/bs.po, perl-install/share/po/ca.po,
+ perl-install/share/po/cs.po, perl-install/share/po/cy.po,
+ perl-install/share/po/da.po, perl-install/share/po/de.po,
+ perl-install/share/po/el.po, perl-install/share/po/eo.po,
+ perl-install/share/po/es.po, perl-install/share/po/et.po,
+ perl-install/share/po/eu.po, perl-install/share/po/fa.po,
+ perl-install/share/po/fi.po, perl-install/share/po/fr.po,
+ perl-install/share/po/fur.po, perl-install/share/po/ga.po,
+ perl-install/share/po/gl.po, perl-install/share/po/he.po,
+ perl-install/share/po/hi.po, perl-install/share/po/hr.po,
+ perl-install/share/po/hu.po, perl-install/share/po/id.po,
+ perl-install/share/po/is.po, perl-install/share/po/it.po,
+ perl-install/share/po/ja.po, perl-install/share/po/ko.po,
+ perl-install/share/po/ky.po, perl-install/share/po/libDrakX.pot,
+ perl-install/share/po/lt.po, perl-install/share/po/ltg.po,
+ perl-install/share/po/lv.po, perl-install/share/po/mk.po,
+ perl-install/share/po/mn.po, perl-install/share/po/ms.po,
+ perl-install/share/po/mt.po, perl-install/share/po/nb.po,
+ perl-install/share/po/nl.po, perl-install/share/po/nn.po,
+ perl-install/share/po/pa_IN.po, perl-install/share/po/pl.po,
+ perl-install/share/po/pt.po, perl-install/share/po/pt_BR.po,
+ perl-install/share/po/ro.po, perl-install/share/po/ru.po,
+ perl-install/share/po/sc.po, perl-install/share/po/sk.po,
+ perl-install/share/po/sl.po, perl-install/share/po/sq.po,
+ perl-install/share/po/sr.po, perl-install/share/po/sr@Latn.po,
+ perl-install/share/po/sv.po, perl-install/share/po/ta.po,
+ perl-install/share/po/tg.po, perl-install/share/po/th.po,
+ perl-install/share/po/tl.po, perl-install/share/po/tr.po,
+ perl-install/share/po/uk.po, perl-install/share/po/uz.po,
+ perl-install/share/po/uz@Latn.po, perl-install/share/po/vi.po,
+ perl-install/share/po/wa.po, perl-install/share/po/zh_CN.po,
+ perl-install/share/po/zh_TW.po: updated Galician po file;
+ updated pot file
+
+2006-05-12 15:19 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/probing.c: fix messages wording, SCSI_ADAPTERS could
+ be renamed MEDIA_ADAPTERS
+
+2006-05-12 15:12 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/cdrom.c, mdk-stage1/probing.c, mdk-stage1/probing.h:
+ handle PCMCIA bus in probing module
+
+2006-05-12 15:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/install2.pm, perl-install/log.pm: remove
+ openLog() function, only usefull during install, and simplify
+ the resulting mess
+
+2006-05-12 15:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/log.pm: drop log::F() (unused)
+
+2006-05-12 14:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm, perl-install/common.pm: move
+ salt() to authentication (it's only used there)
+
+2006-05-12 14:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: fix typo
+
+2006-05-12 14:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/mobile_data.pm,
+ perl-install/network/test.pm, perl-install/network/tools.pm,
+ perl-install/ugtk2.pm: use common::nonblock() (it exists, so
+ let's use it)
+
+2006-05-12 14:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: die on error
+
+2006-05-12 14:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/mouse.pm: drop support of kernel 2.4
+ * perl-install/modules.pm: drop support of kernel 2.4
+
+2006-05-12 14:29 Pixel <pixel at mandriva.com>
+
+ * kernel/list_modules.pm: - drop support for kernel 2.4
+ - adapt to probe_category now in detect_devices
+
+2006-05-12 14:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules/any_conf.pm: drop support for kernel 2.4
+ * perl-install/modules/interactive.pm,
+ perl-install/modules/parameters.pm: simplify a lot
+ modules::parameters::parameters() by removing the parsing of
+ kernel 2.4 modinfo output. The returned value is different, so
+ adapt callers.
+
+2006-05-12 14:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakpxe: drop commented code checking
+ kernel != 2.4
+
+2006-05-12 14:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakgw: drop check on kernel 2.4
+
+2006-05-12 14:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: don't talk about BOOT: be more
+ generic
+
+2006-05-12 14:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: drop scsi detection on kernel 2.4
+
+2006-05-12 13:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: md5file is used in userdrake and
+ mdkonline, add it as a comment
+
+2006-05-12 12:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: cleanup set_permissions (not using
+ external commands anymore)
+
+2006-05-12 12:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm, perl-install/common.pm,
+ perl-install/install/commands.pm: create common::chown_ (out of
+ commands::chown_) and use it
+
+2006-05-12 12:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm, perl-install/network/tools.pm: remove
+ duplicate code
+
+2006-05-12 12:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: drop HACK in availableRamMB() to lower
+ memory size on i810 (was needed long ago when it needed mem=xxx)
+
+2006-05-12 10:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile, perl-install/Xconfig/card.pm,
+ perl-install/detect_devices.pm, perl-install/harddrake/data.pm,
+ perl-install/install/any.pm, perl-install/install/pkgs.pm,
+ perl-install/modules.pm, perl-install/mouse.pm,
+ perl-install/network/ethernet.pm, perl-install/network/isdn.pm,
+ perl-install/network/mobile_data.pm,
+ perl-install/network/netconnect.pm,
+ perl-install/network/wireless.pm, perl-install/network/xdsl.pm,
+ perl-install/standalone/draksound,
+ perl-install/standalone/harddrake2: move probe_category() from
+ modules to detect_devices
+
+2006-05-12 10:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/.perl_checker: add some modules (used by
+ network/mobile_data.pm)
+
+2006-05-12 06:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: don't die when failing to install SCIM
+ pkgs (esp. for mini.iso) (thanks to Funda Wang)
+
+2006-05-11 21:44 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/Makefile, mdk-stage1/pcmcia-resource,
+ mdk-stage1/pcmcia-resource/Makefile,
+ mdk-stage1/pcmcia-resource/update-pcmcia-ids.pl: build a
+ modalias-based pcmcia database in pcmcia-resource/pcmcia-ids.h
+
+2006-05-11 21:41 Olivier Blin <oblin at mandriva.com>
+
+ * make_boot_img: only keep /etc/pcmcia/config.opts in stage1
+ * kernel/modules.pl: keep the modules.alias file to generate a
+ modalias-based pcmcia database
+
+2006-05-11 21:40 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/Makefile, mdk-stage1/pcmcia_/Makefile,
+ mdk-stage1/pcmcia_/lex_config.l, mdk-stage1/pcmcia_/pcmcia.h,
+ mdk-stage1/pcmcia_/startup.c, mdk-stage1/pcmcia_/startup.h,
+ mdk-stage1/pcmcia_/yacc_config.y, mdk-stage1/stage1.c: setup a
+ dynamic resource database for non statically mapped PCMCIA
+ sockets, using the startup.c code of pcmcia-socket-startup from
+ pcmciautils-013 and the minimal sysfs library (replaces resource
+ allocation made from old cardmgr)
+
+2006-05-11 21:33 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/sysfs, mdk-stage1/sysfs/Makefile,
+ mdk-stage1/sysfs/libsysfs.h, mdk-stage1/sysfs/sysfs.h,
+ mdk-stage1/sysfs/sysfs_attr.c, mdk-stage1/sysfs/sysfs_utils.c:
+ add minimal sysfs library ripped from sysfsutils-2.0.0
+
+2006-05-11 21:27 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/init.c: mount sysfs for new PCMCIA tools
+
+2006-05-11 21:26 Olivier Blin <oblin at mandriva.com>
+
+ * make_boot_img, mdk-stage1/pcmcia_/Makefile,
+ mdk-stage1/pcmcia_/cardmgr.c, mdk-stage1/pcmcia_/cardmgr.h,
+ mdk-stage1/pcmcia_/lex_config.c, mdk-stage1/pcmcia_/pcmcia.h,
+ mdk-stage1/pcmcia_/yacc_config.c,
+ mdk-stage1/pcmcia_/yacc_config.h, mdk-stage1/stage1.c: don't
+ call obsolete cardmgr tool in stage1
+
+2006-05-11 21:21 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: - Made HP printers with different
+ model names in "hp://..." and
+ "usb://..." URIs being set up correctly with HPLIP.
+
+2006-05-11 21:20 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/pcmcia_/Makefile: use a TARGET variable for
+ libpcmcia.a
+
+2006-05-11 21:16 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/stage1.c: space fix
+
+2006-05-11 21:15 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/init.c: space fix
+
+2006-05-11 21:12 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/probing.c: use discovered_device() for USB devices as
+ well
+
+2006-05-11 21:08 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/probing.c: remove PCI specific log message in
+ discovered_device()
+
+2006-05-11 14:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: handle kernel-tmb's more nicely (for
+ the new naming)
+
+2006-05-11 14:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.24-1mdk
+
+2006-05-11 10:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile.config: package network::wireless:* too
+ (#22402)
+
+2006-05-11 08:59 Marek Laane <bald at starman.ee>
+
+ * perl-install/standalone/po/et.po: Updated Estonian translation.
+
+2006-05-11 08:58 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po: Updated Estonian translation
+
+2006-05-11 07:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: handle a little more cleanly
+ /boot/vmlinuz being a file and not a symlink
+
+2006-05-11 07:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: skip makeactive when comparing
+ entries (esp. for lilo.conf, makeactive is grub only)
+
+2006-05-11 06:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/various.pm: simplify (thanks to
+ perl_checker)
+ * perl-install/Xconfig/various.pm, perl-install/bootloader.pm,
+ perl-install/standalone/bootloader-config: create
+ bootloader::update_splash() and use it after changing vga=XXX in
+ XFdrake
+
+2006-05-11 06:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/.perl_checker: skip "use base"
+
+2006-05-10 18:32 Olivier Blin <oblin at mandriva.com>
+
+ * make_boot_img: revert unexplained commit
+
+2006-05-10 18:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.23-1mdk
+
+2006-05-10 18:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: use network::wireless class
+
+2006-05-10 17:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/monitor.pm: replace 2000 with 1920
+ (1920x1440 is known whereas 2000x... doesn't exist)
+ (it doesn't change the result though)
+
+2006-05-10 17:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/monitor.pm: lower the max hsync to disallow
+ 1024x768@60hz 133.5 MHz, 95.3 kHz doublescan
+
+2006-05-10 13:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add support for hptiop
+
+2006-05-10 12:15 stewb
+
+ * perl-install/standalone/drakbackup: different approach to avoid
+ "GLib-GObject-CRITICAL **: g_object_notify: assertion
+ `G_IS_OBJECT (object)'"
+
+2006-05-09 16:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: use new detect_devices "API"
+
+2006-05-09 16:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/mobile_data.pm,
+ perl-install/network/pots.pm, perl-install/network/xdsl.pm:
+ temporarily use some categories icons for connection types
+
+2006-05-09 16:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+ * perl-install/share/po/br.po: update
+
+2006-05-09 16:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/DrakX.pot: sync with code
+
+2006-05-09 16:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/af.po, perl-install/share/po/am.po,
+ perl-install/share/po/ar.po, perl-install/share/po/az.po,
+ perl-install/share/po/be.po, perl-install/share/po/bg.po,
+ perl-install/share/po/bn.po, perl-install/share/po/br.po,
+ perl-install/share/po/bs.po, perl-install/share/po/ca.po,
+ perl-install/share/po/cs.po, perl-install/share/po/cy.po,
+ perl-install/share/po/da.po, perl-install/share/po/de.po,
+ perl-install/share/po/el.po, perl-install/share/po/eo.po,
+ perl-install/share/po/es.po, perl-install/share/po/et.po,
+ perl-install/share/po/eu.po, perl-install/share/po/fa.po,
+ perl-install/share/po/fi.po, perl-install/share/po/fr.po,
+ perl-install/share/po/fur.po, perl-install/share/po/ga.po,
+ perl-install/share/po/gl.po, perl-install/share/po/he.po,
+ perl-install/share/po/hi.po, perl-install/share/po/hr.po,
+ perl-install/share/po/hu.po, perl-install/share/po/id.po,
+ perl-install/share/po/is.po, perl-install/share/po/it.po,
+ perl-install/share/po/ja.po, perl-install/share/po/ko.po,
+ perl-install/share/po/ky.po, perl-install/share/po/libDrakX.pot,
+ perl-install/share/po/lt.po, perl-install/share/po/ltg.po,
+ perl-install/share/po/lv.po, perl-install/share/po/mk.po,
+ perl-install/share/po/mn.po, perl-install/share/po/ms.po,
+ perl-install/share/po/mt.po, perl-install/share/po/nb.po,
+ perl-install/share/po/nl.po, perl-install/share/po/nn.po,
+ perl-install/share/po/pa_IN.po, perl-install/share/po/pl.po,
+ perl-install/share/po/pt.po, perl-install/share/po/pt_BR.po,
+ perl-install/share/po/ro.po, perl-install/share/po/ru.po,
+ perl-install/share/po/sc.po, perl-install/share/po/sk.po,
+ perl-install/share/po/sl.po, perl-install/share/po/sq.po,
+ perl-install/share/po/sr.po, perl-install/share/po/sr@Latn.po,
+ perl-install/share/po/sv.po, perl-install/share/po/ta.po,
+ perl-install/share/po/tg.po, perl-install/share/po/th.po,
+ perl-install/share/po/tl.po, perl-install/share/po/tr.po,
+ perl-install/share/po/uk.po, perl-install/share/po/uz.po,
+ perl-install/share/po/uz@Latn.po, perl-install/share/po/vi.po,
+ perl-install/share/po/wa.po, perl-install/share/po/zh_CN.po,
+ perl-install/share/po/zh_TW.po: sync with code
+
+2006-05-09 16:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/fr.po: don't translate a word by a
+ sentence
+
+2006-05-09 16:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/gtk.pm: (create_steps_window) shorter
+ category names
+
+2006-05-09 16:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/fr.po: use a more understandable
+ string
+
+2006-05-09 16:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/share/po/fr.po: make a step name shorter
+
+2006-05-09 16:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/steps_list.pm: shorter step names so that
+ they fit
+
+2006-05-09 15:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/authentication.pm:
+ (ask_root_password_and_authentication) shorter banner title so
+ that it fits
+
+2006-05-09 02:58 mmodem
+
+ * perl-install/share/po/pt.po: update
+
+2006-05-08 17:41 mmodem
+
+ * perl-install/share/po/pt.po: update
+
+2006-05-08 17:32 mmodem
+
+ * perl-install/share/po/pt.po: update
+
+2006-05-08 17:12 mmodem
+
+ * perl-install/share/po/pt.po: update
+
+2006-05-08 09:41 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po: Updated Estonian translation.
+
+2006-05-07 12:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/monitor.pm: handle hidden networks when
+ wpa_supplicant isn't used as well
+
+2006-05-05 13:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mygtk2.pm: fix binding standalone messages to UTF-8
+ after catalog split
+
+2006-05-05 13:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: use $net->{monitor}
+
+2006-05-05 13:09 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/list_modules.pm, perl-install/detect_devices.pm,
+ perl-install/interactive/gtk.pm,
+ perl-install/network/connection.pm,
+ perl-install/network/ethernet.pm, perl-install/network/isdn.pm,
+ perl-install/network/mobile_data.pm,
+ perl-install/network/pots.pm, perl-install/network/ppp.pm,
+ perl-install/network/signal_strength.pm,
+ perl-install/network/wireless, perl-install/network/wireless.pm,
+ perl-install/network/xdsl.pm, perl-install/standalone/drakroam:
+ merge with 2006.0-mobile branch (26668:26942)
+
+2006-05-05 12:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: remove extra space
+
+2006-05-05 12:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/af.po, perl-install/share/po/am.po,
+ perl-install/share/po/ar.po, perl-install/share/po/az.po,
+ perl-install/share/po/be.po, perl-install/share/po/bg.po,
+ perl-install/share/po/bn.po, perl-install/share/po/br.po,
+ perl-install/share/po/bs.po, perl-install/share/po/ca.po,
+ perl-install/share/po/cs.po, perl-install/share/po/cy.po,
+ perl-install/share/po/da.po, perl-install/share/po/de.po,
+ perl-install/share/po/el.po, perl-install/share/po/eo.po,
+ perl-install/share/po/es.po, perl-install/share/po/et.po,
+ perl-install/share/po/eu.po, perl-install/share/po/fa.po,
+ perl-install/share/po/fi.po, perl-install/share/po/fr.po,
+ perl-install/share/po/fur.po, perl-install/share/po/ga.po,
+ perl-install/share/po/gl.po, perl-install/share/po/he.po,
+ perl-install/share/po/hi.po, perl-install/share/po/hr.po,
+ perl-install/share/po/hu.po, perl-install/share/po/id.po,
+ perl-install/share/po/is.po, perl-install/share/po/it.po,
+ perl-install/share/po/ja.po, perl-install/share/po/ko.po,
+ perl-install/share/po/ky.po, perl-install/share/po/libDrakX.pot,
+ perl-install/share/po/lt.po, perl-install/share/po/ltg.po,
+ perl-install/share/po/lv.po, perl-install/share/po/mk.po,
+ perl-install/share/po/mn.po, perl-install/share/po/ms.po,
+ perl-install/share/po/mt.po, perl-install/share/po/nb.po,
+ perl-install/share/po/nl.po, perl-install/share/po/nn.po,
+ perl-install/share/po/pa_IN.po, perl-install/share/po/pl.po,
+ perl-install/share/po/pt.po, perl-install/share/po/pt_BR.po,
+ perl-install/share/po/ro.po, perl-install/share/po/ru.po,
+ perl-install/share/po/sc.po, perl-install/share/po/sk.po,
+ perl-install/share/po/sl.po, perl-install/share/po/sq.po,
+ perl-install/share/po/sr.po, perl-install/share/po/sr@Latn.po,
+ perl-install/share/po/sv.po, perl-install/share/po/ta.po,
+ perl-install/share/po/tg.po, perl-install/share/po/th.po,
+ perl-install/share/po/tl.po, perl-install/share/po/tr.po,
+ perl-install/share/po/uk.po, perl-install/share/po/uz.po,
+ perl-install/share/po/uz@Latn.po, perl-install/share/po/vi.po,
+ perl-install/share/po/wa.po, perl-install/share/po/zh_CN.po,
+ perl-install/share/po/zh_TW.po: sync with code
+
+2006-05-05 11:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po, perl-install/standalone/po/br.po:
+ update
+
+2006-05-05 11:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksambashare: factorize translated
+ strings with other tools
+
+2006-05-05 11:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.22-1mdk
+
+2006-05-05 09:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: clamp the TCP MSS to 1412 for
+ PPPoE connections (useful if the connection is to be shared on a
+ LAN)
+
+2006-05-05 07:40 Pixel <pixel at mandriva.com>
+
+ * ChangeLog:
+
+2006-05-05 07:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: fix some more (ti)typo
+
+2006-05-05 06:41 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: corrections.
+
+2006-05-05 06:01 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated libDrakX zh_CN
+ translation.
+
+2006-05-05 06:41 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: corrections.
+
+2006-05-05 06:01 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated libDrakX zh_CN
+ translation.
+
+2006-05-04 19:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mygtk2.pm: (_create_Window) fix position of windows
+ at install time
+
+2006-05-04 19:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: (new) fix type of hash
+
+2006-05-04 17:23 Pixel <pixel at mandriva.com>
+
+ * ChangeLog:
+ * perl-install/lang.pm: adapt check to the move to
+ perl-install/install
+
+2006-05-04 17:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/advertising/Makefile: adapt to the
+ move from perl-install/share into perl-install/install/share
+
+2006-05-04 17:13 Pixel <pixel at mandriva.com>
+
+ * Makefile: advertising moved from perl-install/share into
+ perl-install/install/share
+
+2006-05-04 17:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/af.po, perl-install/share/po/am.po,
+ perl-install/share/po/ar.po, perl-install/share/po/az.po,
+ perl-install/share/po/bg.po, perl-install/share/po/bn.po,
+ perl-install/share/po/br.po, perl-install/share/po/bs.po,
+ perl-install/share/po/ca.po, perl-install/share/po/cs.po,
+ perl-install/share/po/cy.po, perl-install/share/po/da.po,
+ perl-install/share/po/de.po, perl-install/share/po/el.po,
+ perl-install/share/po/eo.po, perl-install/share/po/es.po,
+ perl-install/share/po/et.po, perl-install/share/po/eu.po,
+ perl-install/share/po/fa.po, perl-install/share/po/fi.po,
+ perl-install/share/po/fr.po, perl-install/share/po/ga.po,
+ perl-install/share/po/gl.po, perl-install/share/po/he.po,
+ perl-install/share/po/hi.po, perl-install/share/po/hr.po,
+ perl-install/share/po/hu.po, perl-install/share/po/id.po,
+ perl-install/share/po/is.po, perl-install/share/po/it.po,
+ perl-install/share/po/ja.po, perl-install/share/po/ko.po,
+ perl-install/share/po/ky.po, perl-install/share/po/lt.po,
+ perl-install/share/po/ltg.po, perl-install/share/po/lv.po,
+ perl-install/share/po/mk.po, perl-install/share/po/ms.po,
+ perl-install/share/po/mt.po, perl-install/share/po/nb.po,
+ perl-install/share/po/nl.po, perl-install/share/po/nn.po,
+ perl-install/share/po/pa_IN.po, perl-install/share/po/pl.po,
+ perl-install/share/po/pt.po, perl-install/share/po/pt_BR.po,
+ perl-install/share/po/ro.po, perl-install/share/po/ru.po,
+ perl-install/share/po/sc.po, perl-install/share/po/sk.po,
+ perl-install/share/po/sl.po, perl-install/share/po/sq.po,
+ perl-install/share/po/sr.po, perl-install/share/po/sr@Latn.po,
+ perl-install/share/po/sv.po, perl-install/share/po/ta.po,
+ perl-install/share/po/tg.po, perl-install/share/po/th.po,
+ perl-install/share/po/tl.po, perl-install/share/po/tr.po,
+ perl-install/share/po/uk.po, perl-install/share/po/uz.po,
+ perl-install/share/po/uz@Latn.po, perl-install/share/po/vi.po,
+ perl-install/share/po/wa.po, perl-install/share/po/zh_TW.po:
+ kill duplicated messages
+
+2006-05-04 16:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.21-1mdk
+
+2006-05-04 16:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: update 10.4.20-1mdk and
+ 10.4.19-1mdk changelogs
+
+2006-05-04 16:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/af.po, perl-install/share/po/am.po,
+ perl-install/share/po/ar.po, perl-install/share/po/az.po,
+ perl-install/share/po/be.po, perl-install/share/po/bg.po,
+ perl-install/share/po/bn.po, perl-install/share/po/br.po,
+ perl-install/share/po/bs.po, perl-install/share/po/ca.po,
+ perl-install/share/po/cs.po, perl-install/share/po/cy.po,
+ perl-install/share/po/da.po, perl-install/share/po/de.po,
+ perl-install/share/po/el.po, perl-install/share/po/eo.po,
+ perl-install/share/po/es.po, perl-install/share/po/et.po,
+ perl-install/share/po/eu.po, perl-install/share/po/fa.po,
+ perl-install/share/po/fi.po, perl-install/share/po/fr.po,
+ perl-install/share/po/fur.po, perl-install/share/po/ga.po,
+ perl-install/share/po/gl.po, perl-install/share/po/he.po,
+ perl-install/share/po/hi.po, perl-install/share/po/hr.po,
+ perl-install/share/po/hu.po, perl-install/share/po/id.po,
+ perl-install/share/po/is.po, perl-install/share/po/it.po,
+ perl-install/share/po/ja.po, perl-install/share/po/ko.po,
+ perl-install/share/po/ky.po, perl-install/share/po/libDrakX.pot,
+ perl-install/share/po/lt.po, perl-install/share/po/ltg.po,
+ perl-install/share/po/lv.po, perl-install/share/po/mk.po,
+ perl-install/share/po/mn.po, perl-install/share/po/ms.po,
+ perl-install/share/po/mt.po, perl-install/share/po/nb.po,
+ perl-install/share/po/nl.po, perl-install/share/po/nn.po,
+ perl-install/share/po/pa_IN.po, perl-install/share/po/pl.po,
+ perl-install/share/po/pt.po, perl-install/share/po/pt_BR.po,
+ perl-install/share/po/ro.po, perl-install/share/po/ru.po,
+ perl-install/share/po/sc.po, perl-install/share/po/sk.po,
+ perl-install/share/po/sl.po, perl-install/share/po/sq.po,
+ perl-install/share/po/sr.po, perl-install/share/po/sr@Latn.po,
+ perl-install/share/po/sv.po, perl-install/share/po/ta.po,
+ perl-install/share/po/tg.po, perl-install/share/po/th.po,
+ perl-install/share/po/tl.po, perl-install/share/po/tr.po,
+ perl-install/share/po/uk.po, perl-install/share/po/uz.po,
+ perl-install/share/po/uz@Latn.po, perl-install/share/po/vi.po,
+ perl-install/share/po/wa.po, perl-install/share/po/zh_CN.po,
+ perl-install/share/po/zh_TW.po: sync with SVN now that po are
+ splited
+
+2006-05-04 15:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/help/Makefile: allow removing directory
+ "CVS" in this directory
+
+2006-05-04 15:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/br.po: update
+
+2006-05-04 15:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/po/Makefile: add deps on libDrakX.pot for
+ "merge"
+
+2006-05-04 15:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/po/DrakX.pot,
+ perl-install/install/share/po/Makefile,
+ perl-install/install/share/po/af.po,
+ perl-install/install/share/po/am.po,
+ perl-install/install/share/po/ar.po,
+ perl-install/install/share/po/az.po,
+ perl-install/install/share/po/be.po,
+ perl-install/install/share/po/bg.po,
+ perl-install/install/share/po/bn.po,
+ perl-install/install/share/po/br.po,
+ perl-install/install/share/po/bs.po,
+ perl-install/install/share/po/ca.po,
+ perl-install/install/share/po/cs.po,
+ perl-install/install/share/po/cy.po,
+ perl-install/install/share/po/da.po,
+ perl-install/install/share/po/de.po,
+ perl-install/install/share/po/el.po,
+ perl-install/install/share/po/eo.po,
+ perl-install/install/share/po/es.po,
+ perl-install/install/share/po/et.po,
+ perl-install/install/share/po/eu.po,
+ perl-install/install/share/po/fa.po,
+ perl-install/install/share/po/fi.po,
+ perl-install/install/share/po/fr.po,
+ perl-install/install/share/po/fur.po,
+ perl-install/install/share/po/ga.po,
+ perl-install/install/share/po/gl.po,
+ perl-install/install/share/po/he.po,
+ perl-install/install/share/po/hi.po,
+ perl-install/install/share/po/hr.po,
+ perl-install/install/share/po/hu.po,
+ perl-install/install/share/po/id.po,
+ perl-install/install/share/po/is.po,
+ perl-install/install/share/po/it.po,
+ perl-install/install/share/po/ja.po,
+ perl-install/install/share/po/ko.po,
+ perl-install/install/share/po/ky.po,
+ perl-install/install/share/po/lt.po,
+ perl-install/install/share/po/ltg.po,
+ perl-install/install/share/po/lv.po,
+ perl-install/install/share/po/mk.po,
+ perl-install/install/share/po/mn.po,
+ perl-install/install/share/po/ms.po,
+ perl-install/install/share/po/mt.po,
+ perl-install/install/share/po/nb.po,
+ perl-install/install/share/po/nl.po,
+ perl-install/install/share/po/nn.po,
+ perl-install/install/share/po/pa_IN.po,
+ perl-install/install/share/po/pl.po,
+ perl-install/install/share/po/pt.po,
+ perl-install/install/share/po/pt_BR.po,
+ perl-install/install/share/po/ro.po,
+ perl-install/install/share/po/ru.po,
+ perl-install/install/share/po/sc.po,
+ perl-install/install/share/po/sk.po,
+ perl-install/install/share/po/sl.po,
+ perl-install/install/share/po/sq.po,
+ perl-install/install/share/po/sr.po,
+ perl-install/install/share/po/sr@Latn.po,
+ perl-install/install/share/po/sv.po,
+ perl-install/install/share/po/ta.po,
+ perl-install/install/share/po/tg.po,
+ perl-install/install/share/po/th.po,
+ perl-install/install/share/po/tl.po,
+ perl-install/install/share/po/tr.po,
+ perl-install/install/share/po/uk.po,
+ perl-install/install/share/po/uz.po,
+ perl-install/install/share/po/uz@Latn.po,
+ perl-install/install/share/po/vi.po,
+ perl-install/install/share/po/wa.po,
+ perl-install/install/share/po/zh_CN.po,
+ perl-install/install/share/po/zh_TW.po: as titi suggested,
+ remove entries from main pot instead of merging
+ translations (much simpler and more robust)
+
+2006-05-04 15:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/help/po/DrakX-help.pot,
+ perl-install/install/help/po/Makefile,
+ perl-install/install/help/po/af.po,
+ perl-install/install/help/po/am.po,
+ perl-install/install/help/po/ar.po,
+ perl-install/install/help/po/az.po,
+ perl-install/install/help/po/be.po,
+ perl-install/install/help/po/bg.po,
+ perl-install/install/help/po/bn.po,
+ perl-install/install/help/po/br.po,
+ perl-install/install/help/po/bs.po,
+ perl-install/install/help/po/ca.po,
+ perl-install/install/help/po/cs.po,
+ perl-install/install/help/po/cy.po,
+ perl-install/install/help/po/da.po,
+ perl-install/install/help/po/de.po,
+ perl-install/install/help/po/el.po,
+ perl-install/install/help/po/eo.po,
+ perl-install/install/help/po/es.po,
+ perl-install/install/help/po/et.po,
+ perl-install/install/help/po/eu.po,
+ perl-install/install/help/po/fa.po,
+ perl-install/install/help/po/fi.po,
+ perl-install/install/help/po/fr.po,
+ perl-install/install/help/po/fur.po,
+ perl-install/install/help/po/ga.po,
+ perl-install/install/help/po/gl.po,
+ perl-install/install/help/po/he.po,
+ perl-install/install/help/po/hi.po,
+ perl-install/install/help/po/hr.po,
+ perl-install/install/help/po/hu.po,
+ perl-install/install/help/po/id.po,
+ perl-install/install/help/po/is.po,
+ perl-install/install/help/po/it.po,
+ perl-install/install/help/po/ja.po,
+ perl-install/install/help/po/ko.po,
+ perl-install/install/help/po/ky.po,
+ perl-install/install/help/po/lt.po,
+ perl-install/install/help/po/ltg.po,
+ perl-install/install/help/po/lv.po,
+ perl-install/install/help/po/mk.po,
+ perl-install/install/help/po/mn.po,
+ perl-install/install/help/po/ms.po,
+ perl-install/install/help/po/mt.po,
+ perl-install/install/help/po/nb.po,
+ perl-install/install/help/po/nl.po,
+ perl-install/install/help/po/nn.po,
+ perl-install/install/help/po/pa_IN.po,
+ perl-install/install/help/po/pl.po,
+ perl-install/install/help/po/pt.po,
+ perl-install/install/help/po/pt_BR.po,
+ perl-install/install/help/po/ro.po,
+ perl-install/install/help/po/ru.po,
+ perl-install/install/help/po/sc.po,
+ perl-install/install/help/po/sk.po,
+ perl-install/install/help/po/sl.po,
+ perl-install/install/help/po/sq.po,
+ perl-install/install/help/po/sr.po,
+ perl-install/install/help/po/sr@Latn.po,
+ perl-install/install/help/po/sv.po,
+ perl-install/install/help/po/ta.po,
+ perl-install/install/help/po/tg.po,
+ perl-install/install/help/po/th.po,
+ perl-install/install/help/po/tl.po,
+ perl-install/install/help/po/tr.po,
+ perl-install/install/help/po/uk.po,
+ perl-install/install/help/po/uz.po,
+ perl-install/install/help/po/uz@Latn.po,
+ perl-install/install/help/po/vi.po,
+ perl-install/install/help/po/wa.po,
+ perl-install/install/help/po/zh_CN.po,
+ perl-install/install/help/po/zh_TW.po: as titi suggested, remove
+ entries from main pot instead of merging
+ translations (much simpler and more robust)
+
+2006-05-04 15:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/po/Makefile,
+ perl-install/standalone/po/af.po,
+ perl-install/standalone/po/am.po,
+ perl-install/standalone/po/ar.po,
+ perl-install/standalone/po/az.po,
+ perl-install/standalone/po/be.po,
+ perl-install/standalone/po/bg.po,
+ perl-install/standalone/po/bn.po,
+ perl-install/standalone/po/br.po,
+ perl-install/standalone/po/bs.po,
+ perl-install/standalone/po/ca.po,
+ perl-install/standalone/po/cs.po,
+ perl-install/standalone/po/cy.po,
+ perl-install/standalone/po/da.po,
+ perl-install/standalone/po/de.po,
+ perl-install/standalone/po/el.po,
+ perl-install/standalone/po/eo.po,
+ perl-install/standalone/po/es.po,
+ perl-install/standalone/po/et.po,
+ perl-install/standalone/po/eu.po,
+ perl-install/standalone/po/fa.po,
+ perl-install/standalone/po/fi.po,
+ perl-install/standalone/po/fr.po,
+ perl-install/standalone/po/fur.po,
+ perl-install/standalone/po/ga.po,
+ perl-install/standalone/po/gl.po,
+ perl-install/standalone/po/he.po,
+ perl-install/standalone/po/hi.po,
+ perl-install/standalone/po/hr.po,
+ perl-install/standalone/po/hu.po,
+ perl-install/standalone/po/id.po,
+ perl-install/standalone/po/is.po,
+ perl-install/standalone/po/it.po,
+ perl-install/standalone/po/ja.po,
+ perl-install/standalone/po/ko.po,
+ perl-install/standalone/po/ky.po,
+ perl-install/standalone/po/libDrakX-standalone.pot,
+ perl-install/standalone/po/lt.po,
+ perl-install/standalone/po/ltg.po,
+ perl-install/standalone/po/lv.po,
+ perl-install/standalone/po/mk.po,
+ perl-install/standalone/po/mn.po,
+ perl-install/standalone/po/ms.po,
+ perl-install/standalone/po/mt.po,
+ perl-install/standalone/po/nb.po,
+ perl-install/standalone/po/nl.po,
+ perl-install/standalone/po/nn.po,
+ perl-install/standalone/po/pa_IN.po,
+ perl-install/standalone/po/pl.po,
+ perl-install/standalone/po/pt.po,
+ perl-install/standalone/po/pt_BR.po,
+ perl-install/standalone/po/ro.po,
+ perl-install/standalone/po/ru.po,
+ perl-install/standalone/po/sc.po,
+ perl-install/standalone/po/sk.po,
+ perl-install/standalone/po/sl.po,
+ perl-install/standalone/po/sq.po,
+ perl-install/standalone/po/sr.po,
+ perl-install/standalone/po/sr@Latn.po,
+ perl-install/standalone/po/sv.po,
+ perl-install/standalone/po/ta.po,
+ perl-install/standalone/po/tg.po,
+ perl-install/standalone/po/th.po,
+ perl-install/standalone/po/tl.po,
+ perl-install/standalone/po/tr.po,
+ perl-install/standalone/po/uk.po,
+ perl-install/standalone/po/uz.po,
+ perl-install/standalone/po/uz@Latn.po,
+ perl-install/standalone/po/vi.po,
+ perl-install/standalone/po/wa.po,
+ perl-install/standalone/po/zh_CN.po,
+ perl-install/standalone/po/zh_TW.po: as titi suggested, remove
+ entries from main pot instead of merging
+ translations (much simpler and more robust)
+
+2006-05-04 17:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/advertising/Makefile: adapt to the
+ move from perl-install/share into perl-install/install/share
+
+2006-05-04 17:13 Pixel <pixel at mandriva.com>
+
+ * Makefile: advertising moved from perl-install/share into
+ perl-install/install/share
+
+2006-05-04 17:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/af.po, perl-install/share/po/am.po,
+ perl-install/share/po/ar.po, perl-install/share/po/az.po,
+ perl-install/share/po/bg.po, perl-install/share/po/bn.po,
+ perl-install/share/po/br.po, perl-install/share/po/bs.po,
+ perl-install/share/po/ca.po, perl-install/share/po/cs.po,
+ perl-install/share/po/cy.po, perl-install/share/po/da.po,
+ perl-install/share/po/de.po, perl-install/share/po/el.po,
+ perl-install/share/po/eo.po, perl-install/share/po/es.po,
+ perl-install/share/po/et.po, perl-install/share/po/eu.po,
+ perl-install/share/po/fa.po, perl-install/share/po/fi.po,
+ perl-install/share/po/fr.po, perl-install/share/po/ga.po,
+ perl-install/share/po/gl.po, perl-install/share/po/he.po,
+ perl-install/share/po/hi.po, perl-install/share/po/hr.po,
+ perl-install/share/po/hu.po, perl-install/share/po/id.po,
+ perl-install/share/po/is.po, perl-install/share/po/it.po,
+ perl-install/share/po/ja.po, perl-install/share/po/ko.po,
+ perl-install/share/po/ky.po, perl-install/share/po/lt.po,
+ perl-install/share/po/ltg.po, perl-install/share/po/lv.po,
+ perl-install/share/po/mk.po, perl-install/share/po/ms.po,
+ perl-install/share/po/mt.po, perl-install/share/po/nb.po,
+ perl-install/share/po/nl.po, perl-install/share/po/nn.po,
+ perl-install/share/po/pa_IN.po, perl-install/share/po/pl.po,
+ perl-install/share/po/pt.po, perl-install/share/po/pt_BR.po,
+ perl-install/share/po/ro.po, perl-install/share/po/ru.po,
+ perl-install/share/po/sc.po, perl-install/share/po/sk.po,
+ perl-install/share/po/sl.po, perl-install/share/po/sq.po,
+ perl-install/share/po/sr.po, perl-install/share/po/sr@Latn.po,
+ perl-install/share/po/sv.po, perl-install/share/po/ta.po,
+ perl-install/share/po/tg.po, perl-install/share/po/th.po,
+ perl-install/share/po/tl.po, perl-install/share/po/tr.po,
+ perl-install/share/po/uk.po, perl-install/share/po/uz.po,
+ perl-install/share/po/uz@Latn.po, perl-install/share/po/vi.po,
+ perl-install/share/po/wa.po, perl-install/share/po/zh_TW.po:
+ kill duplicated messages
+
+2006-05-04 16:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.21-1mdk
+
+2006-05-04 16:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: update 10.4.20-1mdk and
+ 10.4.19-1mdk changelogs
+
+2006-05-04 16:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/af.po, perl-install/share/po/am.po,
+ perl-install/share/po/ar.po, perl-install/share/po/az.po,
+ perl-install/share/po/be.po, perl-install/share/po/bg.po,
+ perl-install/share/po/bn.po, perl-install/share/po/br.po,
+ perl-install/share/po/bs.po, perl-install/share/po/ca.po,
+ perl-install/share/po/cs.po, perl-install/share/po/cy.po,
+ perl-install/share/po/da.po, perl-install/share/po/de.po,
+ perl-install/share/po/el.po, perl-install/share/po/eo.po,
+ perl-install/share/po/es.po, perl-install/share/po/et.po,
+ perl-install/share/po/eu.po, perl-install/share/po/fa.po,
+ perl-install/share/po/fi.po, perl-install/share/po/fr.po,
+ perl-install/share/po/fur.po, perl-install/share/po/ga.po,
+ perl-install/share/po/gl.po, perl-install/share/po/he.po,
+ perl-install/share/po/hi.po, perl-install/share/po/hr.po,
+ perl-install/share/po/hu.po, perl-install/share/po/id.po,
+ perl-install/share/po/is.po, perl-install/share/po/it.po,
+ perl-install/share/po/ja.po, perl-install/share/po/ko.po,
+ perl-install/share/po/ky.po, perl-install/share/po/libDrakX.pot,
+ perl-install/share/po/lt.po, perl-install/share/po/ltg.po,
+ perl-install/share/po/lv.po, perl-install/share/po/mk.po,
+ perl-install/share/po/mn.po, perl-install/share/po/ms.po,
+ perl-install/share/po/mt.po, perl-install/share/po/nb.po,
+ perl-install/share/po/nl.po, perl-install/share/po/nn.po,
+ perl-install/share/po/pa_IN.po, perl-install/share/po/pl.po,
+ perl-install/share/po/pt.po, perl-install/share/po/pt_BR.po,
+ perl-install/share/po/ro.po, perl-install/share/po/ru.po,
+ perl-install/share/po/sc.po, perl-install/share/po/sk.po,
+ perl-install/share/po/sl.po, perl-install/share/po/sq.po,
+ perl-install/share/po/sr.po, perl-install/share/po/sr@Latn.po,
+ perl-install/share/po/sv.po, perl-install/share/po/ta.po,
+ perl-install/share/po/tg.po, perl-install/share/po/th.po,
+ perl-install/share/po/tl.po, perl-install/share/po/tr.po,
+ perl-install/share/po/uk.po, perl-install/share/po/uz.po,
+ perl-install/share/po/uz@Latn.po, perl-install/share/po/vi.po,
+ perl-install/share/po/wa.po, perl-install/share/po/zh_CN.po,
+ perl-install/share/po/zh_TW.po: sync with SVN now that po are
+ splited
+
+2006-05-04 15:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/help/Makefile: allow removing directory
+ "CVS" in this directory
+
+2006-05-04 15:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/po/br.po: update
+
+2006-05-04 15:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/po/Makefile: add deps on libDrakX.pot for
+ "merge"
+
+2006-05-04 15:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/po/DrakX.pot,
+ perl-install/install/share/po/Makefile,
+ perl-install/install/share/po/af.po,
+ perl-install/install/share/po/am.po,
+ perl-install/install/share/po/ar.po,
+ perl-install/install/share/po/az.po,
+ perl-install/install/share/po/be.po,
+ perl-install/install/share/po/bg.po,
+ perl-install/install/share/po/bn.po,
+ perl-install/install/share/po/br.po,
+ perl-install/install/share/po/bs.po,
+ perl-install/install/share/po/ca.po,
+ perl-install/install/share/po/cs.po,
+ perl-install/install/share/po/cy.po,
+ perl-install/install/share/po/da.po,
+ perl-install/install/share/po/de.po,
+ perl-install/install/share/po/el.po,
+ perl-install/install/share/po/eo.po,
+ perl-install/install/share/po/es.po,
+ perl-install/install/share/po/et.po,
+ perl-install/install/share/po/eu.po,
+ perl-install/install/share/po/fa.po,
+ perl-install/install/share/po/fi.po,
+ perl-install/install/share/po/fr.po,
+ perl-install/install/share/po/fur.po,
+ perl-install/install/share/po/ga.po,
+ perl-install/install/share/po/gl.po,
+ perl-install/install/share/po/he.po,
+ perl-install/install/share/po/hi.po,
+ perl-install/install/share/po/hr.po,
+ perl-install/install/share/po/hu.po,
+ perl-install/install/share/po/id.po,
+ perl-install/install/share/po/is.po,
+ perl-install/install/share/po/it.po,
+ perl-install/install/share/po/ja.po,
+ perl-install/install/share/po/ko.po,
+ perl-install/install/share/po/ky.po,
+ perl-install/install/share/po/lt.po,
+ perl-install/install/share/po/ltg.po,
+ perl-install/install/share/po/lv.po,
+ perl-install/install/share/po/mk.po,
+ perl-install/install/share/po/mn.po,
+ perl-install/install/share/po/ms.po,
+ perl-install/install/share/po/mt.po,
+ perl-install/install/share/po/nb.po,
+ perl-install/install/share/po/nl.po,
+ perl-install/install/share/po/nn.po,
+ perl-install/install/share/po/pa_IN.po,
+ perl-install/install/share/po/pl.po,
+ perl-install/install/share/po/pt.po,
+ perl-install/install/share/po/pt_BR.po,
+ perl-install/install/share/po/ro.po,
+ perl-install/install/share/po/ru.po,
+ perl-install/install/share/po/sc.po,
+ perl-install/install/share/po/sk.po,
+ perl-install/install/share/po/sl.po,
+ perl-install/install/share/po/sq.po,
+ perl-install/install/share/po/sr.po,
+ perl-install/install/share/po/sr@Latn.po,
+ perl-install/install/share/po/sv.po,
+ perl-install/install/share/po/ta.po,
+ perl-install/install/share/po/tg.po,
+ perl-install/install/share/po/th.po,
+ perl-install/install/share/po/tl.po,
+ perl-install/install/share/po/tr.po,
+ perl-install/install/share/po/uk.po,
+ perl-install/install/share/po/uz.po,
+ perl-install/install/share/po/uz@Latn.po,
+ perl-install/install/share/po/vi.po,
+ perl-install/install/share/po/wa.po,
+ perl-install/install/share/po/zh_CN.po,
+ perl-install/install/share/po/zh_TW.po: as titi suggested,
+ remove entries from main pot instead of merging
+ translations (much simpler and more robust)
+
+2006-05-04 15:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/help/po/DrakX-help.pot,
+ perl-install/install/help/po/Makefile,
+ perl-install/install/help/po/af.po,
+ perl-install/install/help/po/am.po,
+ perl-install/install/help/po/ar.po,
+ perl-install/install/help/po/az.po,
+ perl-install/install/help/po/be.po,
+ perl-install/install/help/po/bg.po,
+ perl-install/install/help/po/bn.po,
+ perl-install/install/help/po/br.po,
+ perl-install/install/help/po/bs.po,
+ perl-install/install/help/po/ca.po,
+ perl-install/install/help/po/cs.po,
+ perl-install/install/help/po/cy.po,
+ perl-install/install/help/po/da.po,
+ perl-install/install/help/po/de.po,
+ perl-install/install/help/po/el.po,
+ perl-install/install/help/po/eo.po,
+ perl-install/install/help/po/es.po,
+ perl-install/install/help/po/et.po,
+ perl-install/install/help/po/eu.po,
+ perl-install/install/help/po/fa.po,
+ perl-install/install/help/po/fi.po,
+ perl-install/install/help/po/fr.po,
+ perl-install/install/help/po/fur.po,
+ perl-install/install/help/po/ga.po,
+ perl-install/install/help/po/gl.po,
+ perl-install/install/help/po/he.po,
+ perl-install/install/help/po/hi.po,
+ perl-install/install/help/po/hr.po,
+ perl-install/install/help/po/hu.po,
+ perl-install/install/help/po/id.po,
+ perl-install/install/help/po/is.po,
+ perl-install/install/help/po/it.po,
+ perl-install/install/help/po/ja.po,
+ perl-install/install/help/po/ko.po,
+ perl-install/install/help/po/ky.po,
+ perl-install/install/help/po/lt.po,
+ perl-install/install/help/po/ltg.po,
+ perl-install/install/help/po/lv.po,
+ perl-install/install/help/po/mk.po,
+ perl-install/install/help/po/mn.po,
+ perl-install/install/help/po/ms.po,
+ perl-install/install/help/po/mt.po,
+ perl-install/install/help/po/nb.po,
+ perl-install/install/help/po/nl.po,
+ perl-install/install/help/po/nn.po,
+ perl-install/install/help/po/pa_IN.po,
+ perl-install/install/help/po/pl.po,
+ perl-install/install/help/po/pt.po,
+ perl-install/install/help/po/pt_BR.po,
+ perl-install/install/help/po/ro.po,
+ perl-install/install/help/po/ru.po,
+ perl-install/install/help/po/sc.po,
+ perl-install/install/help/po/sk.po,
+ perl-install/install/help/po/sl.po,
+ perl-install/install/help/po/sq.po,
+ perl-install/install/help/po/sr.po,
+ perl-install/install/help/po/sr@Latn.po,
+ perl-install/install/help/po/sv.po,
+ perl-install/install/help/po/ta.po,
+ perl-install/install/help/po/tg.po,
+ perl-install/install/help/po/th.po,
+ perl-install/install/help/po/tl.po,
+ perl-install/install/help/po/tr.po,
+ perl-install/install/help/po/uk.po,
+ perl-install/install/help/po/uz.po,
+ perl-install/install/help/po/uz@Latn.po,
+ perl-install/install/help/po/vi.po,
+ perl-install/install/help/po/wa.po,
+ perl-install/install/help/po/zh_CN.po,
+ perl-install/install/help/po/zh_TW.po: as titi suggested, remove
+ entries from main pot instead of merging
+ translations (much simpler and more robust)
+
+2006-05-04 15:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/po/Makefile,
+ perl-install/standalone/po/af.po,
+ perl-install/standalone/po/am.po,
+ perl-install/standalone/po/ar.po,
+ perl-install/standalone/po/az.po,
+ perl-install/standalone/po/be.po,
+ perl-install/standalone/po/bg.po,
+ perl-install/standalone/po/bn.po,
+ perl-install/standalone/po/br.po,
+ perl-install/standalone/po/bs.po,
+ perl-install/standalone/po/ca.po,
+ perl-install/standalone/po/cs.po,
+ perl-install/standalone/po/cy.po,
+ perl-install/standalone/po/da.po,
+ perl-install/standalone/po/de.po,
+ perl-install/standalone/po/el.po,
+ perl-install/standalone/po/eo.po,
+ perl-install/standalone/po/es.po,
+ perl-install/standalone/po/et.po,
+ perl-install/standalone/po/eu.po,
+ perl-install/standalone/po/fa.po,
+ perl-install/standalone/po/fi.po,
+ perl-install/standalone/po/fr.po,
+ perl-install/standalone/po/fur.po,
+ perl-install/standalone/po/ga.po,
+ perl-install/standalone/po/gl.po,
+ perl-install/standalone/po/he.po,
+ perl-install/standalone/po/hi.po,
+ perl-install/standalone/po/hr.po,
+ perl-install/standalone/po/hu.po,
+ perl-install/standalone/po/id.po,
+ perl-install/standalone/po/is.po,
+ perl-install/standalone/po/it.po,
+ perl-install/standalone/po/ja.po,
+ perl-install/standalone/po/ko.po,
+ perl-install/standalone/po/ky.po,
+ perl-install/standalone/po/libDrakX-standalone.pot,
+ perl-install/standalone/po/lt.po,
+ perl-install/standalone/po/ltg.po,
+ perl-install/standalone/po/lv.po,
+ perl-install/standalone/po/mk.po,
+ perl-install/standalone/po/mn.po,
+ perl-install/standalone/po/ms.po,
+ perl-install/standalone/po/mt.po,
+ perl-install/standalone/po/nb.po,
+ perl-install/standalone/po/nl.po,
+ perl-install/standalone/po/nn.po,
+ perl-install/standalone/po/pa_IN.po,
+ perl-install/standalone/po/pl.po,
+ perl-install/standalone/po/pt.po,
+ perl-install/standalone/po/pt_BR.po,
+ perl-install/standalone/po/ro.po,
+ perl-install/standalone/po/ru.po,
+ perl-install/standalone/po/sc.po,
+ perl-install/standalone/po/sk.po,
+ perl-install/standalone/po/sl.po,
+ perl-install/standalone/po/sq.po,
+ perl-install/standalone/po/sr.po,
+ perl-install/standalone/po/sr@Latn.po,
+ perl-install/standalone/po/sv.po,
+ perl-install/standalone/po/ta.po,
+ perl-install/standalone/po/tg.po,
+ perl-install/standalone/po/th.po,
+ perl-install/standalone/po/tl.po,
+ perl-install/standalone/po/tr.po,
+ perl-install/standalone/po/uk.po,
+ perl-install/standalone/po/uz.po,
+ perl-install/standalone/po/uz@Latn.po,
+ perl-install/standalone/po/vi.po,
+ perl-install/standalone/po/wa.po,
+ perl-install/standalone/po/zh_CN.po,
+ perl-install/standalone/po/zh_TW.po: as titi suggested, remove
+ entries from main pot instead of merging
+ translations (much simpler and more robust)
+
+2006-05-04 14:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile, perl-install/Makefile.drakxtools,
+ perl-install/drakxtools.spec, perl-install/share/po/Makefile,
+ perl-install/standalone.pm, perl-install/standalone/po,
+ perl-install/standalone/po/Makefile,
+ perl-install/standalone/po/af.po,
+ perl-install/standalone/po/am.po,
+ perl-install/standalone/po/ar.po,
+ perl-install/standalone/po/az.po,
+ perl-install/standalone/po/be.po,
+ perl-install/standalone/po/bg.po,
+ perl-install/standalone/po/bn.po,
+ perl-install/standalone/po/br.po,
+ perl-install/standalone/po/bs.po,
+ perl-install/standalone/po/ca.po,
+ perl-install/standalone/po/cs.po,
+ perl-install/standalone/po/cy.po,
+ perl-install/standalone/po/da.po,
+ perl-install/standalone/po/de.po,
+ perl-install/standalone/po/el.po,
+ perl-install/standalone/po/eo.po,
+ perl-install/standalone/po/es.po,
+ perl-install/standalone/po/et.po,
+ perl-install/standalone/po/eu.po,
+ perl-install/standalone/po/fa.po,
+ perl-install/standalone/po/fi.po,
+ perl-install/standalone/po/fr.po,
+ perl-install/standalone/po/fur.po,
+ perl-install/standalone/po/ga.po,
+ perl-install/standalone/po/gl.po,
+ perl-install/standalone/po/he.po,
+ perl-install/standalone/po/hi.po,
+ perl-install/standalone/po/hr.po,
+ perl-install/standalone/po/hu.po,
+ perl-install/standalone/po/id.po,
+ perl-install/standalone/po/is.po,
+ perl-install/standalone/po/it.po,
+ perl-install/standalone/po/ja.po,
+ perl-install/standalone/po/ko.po,
+ perl-install/standalone/po/ky.po,
+ perl-install/standalone/po/libDrakX-standalone.pot,
+ perl-install/standalone/po/lt.po,
+ perl-install/standalone/po/ltg.po,
+ perl-install/standalone/po/lv.po,
+ perl-install/standalone/po/mk.po,
+ perl-install/standalone/po/mn.po,
+ perl-install/standalone/po/ms.po,
+ perl-install/standalone/po/mt.po,
+ perl-install/standalone/po/nb.po,
+ perl-install/standalone/po/nl.po,
+ perl-install/standalone/po/nn.po,
+ perl-install/standalone/po/pa_IN.po,
+ perl-install/standalone/po/pl.po,
+ perl-install/standalone/po/pt.po,
+ perl-install/standalone/po/pt_BR.po,
+ perl-install/standalone/po/ro.po,
+ perl-install/standalone/po/ru.po,
+ perl-install/standalone/po/sc.po,
+ perl-install/standalone/po/sk.po,
+ perl-install/standalone/po/sl.po,
+ perl-install/standalone/po/sq.po,
+ perl-install/standalone/po/sr.po,
+ perl-install/standalone/po/sr@Latn.po,
+ perl-install/standalone/po/sv.po,
+ perl-install/standalone/po/ta.po,
+ perl-install/standalone/po/tg.po,
+ perl-install/standalone/po/th.po,
+ perl-install/standalone/po/tl.po,
+ perl-install/standalone/po/tr.po,
+ perl-install/standalone/po/uk.po,
+ perl-install/standalone/po/uz.po,
+ perl-install/standalone/po/uz@Latn.po,
+ perl-install/standalone/po/vi.po,
+ perl-install/standalone/po/wa.po,
+ perl-install/standalone/po/zh_CN.po,
+ perl-install/standalone/po/zh_TW.po: create a po for standalone
+ (ie non install) strings
+
+2006-05-04 14:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile.drakxtools: we don't need to merge po's
+ with only non-install files since libDrakX.pot
+ doesn't have them anymore (and anyway should have been renamed
+ DrakX.pot ->
+ libDrakX.pot)
+
+2006-05-04 13:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/gtk.pm: (init_sizes) typo fix
+
+2006-05-04 13:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install/gtk.pm, perl-install/install/steps_gtk.pm,
+ perl-install/interactive/gtk.pm, perl-install/mygtk2.pm,
+ perl-install/ugtk2.pm: kill windowwidth and windowheight global
+ variables
+
+2006-05-04 13:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/help/po/Makefile: merge from DrakX
+ (install) po files
+
+2006-05-04 13:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile, perl-install/Makefile.drakxtools: - copy
+ tools/serial_probe and tools/rpcinfo-flushed in tools/ dir, not
+ directly with the whole mess
+ (simpler that way)
+ - for now rpmsrate is in install/share
+
+2006-05-04 13:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: tarball file name is versioned
+
+2006-05-04 13:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile.config: PMS_DIRS is used for drakxtools,
+ and only by drakxtools,
+ so remove install/* from PMS_DIRS
+
+2006-05-04 12:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/po/Makefile: don't have po files depending on
+ libDrakX.pot, merge is done explicitly
+
+2006-05-04 12:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/po/Makefile: revert debugging stuff wrongly
+ committed
+
+2006-05-04 10:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/ugtk2.pm: handle non-rectangular icons in
+ Gtk2::Banner for non-RTL languages as well
+
+2006-05-04 09:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: speed up things when building tarball by
+ excluding install/* and .svn while copying, not afterwards
+
+2006-05-04 09:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile, perl-install/install/install2.pm,
+ perl-install/install/share/po,
+ perl-install/install/share/po/DrakX.pot,
+ perl-install/install/share/po/Makefile,
+ perl-install/install/share/po/af.po,
+ perl-install/install/share/po/am.po,
+ perl-install/install/share/po/ar.po,
+ perl-install/install/share/po/az.po,
+ perl-install/install/share/po/be.po,
+ perl-install/install/share/po/bg.po,
+ perl-install/install/share/po/bn.po,
+ perl-install/install/share/po/br.po,
+ perl-install/install/share/po/bs.po,
+ perl-install/install/share/po/ca.po,
+ perl-install/install/share/po/cs.po,
+ perl-install/install/share/po/cy.po,
+ perl-install/install/share/po/da.po,
+ perl-install/install/share/po/de.po,
+ perl-install/install/share/po/el.po,
+ perl-install/install/share/po/eo.po,
+ perl-install/install/share/po/es.po,
+ perl-install/install/share/po/et.po,
+ perl-install/install/share/po/eu.po,
+ perl-install/install/share/po/fa.po,
+ perl-install/install/share/po/fi.po,
+ perl-install/install/share/po/fr.po,
+ perl-install/install/share/po/fur.po,
+ perl-install/install/share/po/ga.po,
+ perl-install/install/share/po/gl.po,
+ perl-install/install/share/po/he.po,
+ perl-install/install/share/po/hi.po,
+ perl-install/install/share/po/hr.po,
+ perl-install/install/share/po/hu.po,
+ perl-install/install/share/po/id.po,
+ perl-install/install/share/po/is.po,
+ perl-install/install/share/po/it.po,
+ perl-install/install/share/po/ja.po,
+ perl-install/install/share/po/ko.po,
+ perl-install/install/share/po/ky.po,
+ perl-install/install/share/po/lt.po,
+ perl-install/install/share/po/ltg.po,
+ perl-install/install/share/po/lv.po,
+ perl-install/install/share/po/mk.po,
+ perl-install/install/share/po/mn.po,
+ perl-install/install/share/po/ms.po,
+ perl-install/install/share/po/mt.po,
+ perl-install/install/share/po/nb.po,
+ perl-install/install/share/po/nl.po,
+ perl-install/install/share/po/nn.po,
+ perl-install/install/share/po/pa_IN.po,
+ perl-install/install/share/po/pl.po,
+ perl-install/install/share/po/pt.po,
+ perl-install/install/share/po/pt_BR.po,
+ perl-install/install/share/po/ro.po,
+ perl-install/install/share/po/ru.po,
+ perl-install/install/share/po/sc.po,
+ perl-install/install/share/po/sk.po,
+ perl-install/install/share/po/sl.po,
+ perl-install/install/share/po/sq.po,
+ perl-install/install/share/po/sr.po,
+ perl-install/install/share/po/sr@Latn.po,
+ perl-install/install/share/po/sv.po,
+ perl-install/install/share/po/ta.po,
+ perl-install/install/share/po/tg.po,
+ perl-install/install/share/po/th.po,
+ perl-install/install/share/po/tl.po,
+ perl-install/install/share/po/tr.po,
+ perl-install/install/share/po/uk.po,
+ perl-install/install/share/po/uz.po,
+ perl-install/install/share/po/uz@Latn.po,
+ perl-install/install/share/po/vi.po,
+ perl-install/install/share/po/wa.po,
+ perl-install/install/share/po/zh_CN.po,
+ perl-install/install/share/po/zh_TW.po,
+ perl-install/share/po/Makefile: - create DrakX.pot containing
+ only install i18n strings
+ - remove install i18n strings from libDrakX.pot
+
+2006-05-04 08:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/help/Makefile: moved there from
+ perl-install/share/po/Makefile
+
+2006-05-04 08:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/help/help_xml2pm.pl: - adapt to new files
+ layout
+ - write help.pm in utf8 (for things like "(R)")
+ - fix @inside_strings handling inside of dropped tags
+ - handle a few more tags
+ - remove entities icon_list.ent, tab_list.ent,
+ text_field_list.ent
+ (not useful and not available in spanish)
+
+2006-05-03 17:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/help/help_xml2pm.pl,
+ perl-install/install/help/id.xsl, perl-install/install/help/po,
+ perl-install/install/help/po/Makefile,
+ perl-install/install/help/po/help_xml2pm.pl,
+ perl-install/share/po/id.xsl: move things in install/help
+
+2006-05-03 14:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: display disk name in "Root" entry
+ (drakboot) (#21524)
+
+2006-05-03 14:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm, perl-install/bootloader.pm: fix handle
+ global vga=
+
+2006-05-03 13:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/help/help.pm,
+ perl-install/install/steps_gtk.pm: make things more cleaner
+ (install/help/help.pm is now install::help::help)
+
+2006-05-03 13:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps_gtk.pm, perl-install/interactive.pm:
+ move things using install::help in install/steps_gtk.pm
+
+2006-05-03 13:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add support for new stex driver
+
+2006-05-03 13:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile, perl-install/Makefile.config,
+ perl-install/install/help, perl-install/install/help.pm,
+ perl-install/install/help/help.pm, perl-install/install/help/po,
+ perl-install/install/help/po/DrakX-help.pot,
+ perl-install/install/help/po/Makefile,
+ perl-install/install/help/po/af.po,
+ perl-install/install/help/po/am.po,
+ perl-install/install/help/po/ar.po,
+ perl-install/install/help/po/az.po,
+ perl-install/install/help/po/be.po,
+ perl-install/install/help/po/bg.po,
+ perl-install/install/help/po/bn.po,
+ perl-install/install/help/po/br.po,
+ perl-install/install/help/po/bs.po,
+ perl-install/install/help/po/ca.po,
+ perl-install/install/help/po/cs.po,
+ perl-install/install/help/po/cy.po,
+ perl-install/install/help/po/da.po,
+ perl-install/install/help/po/de.po,
+ perl-install/install/help/po/el.po,
+ perl-install/install/help/po/eo.po,
+ perl-install/install/help/po/es.po,
+ perl-install/install/help/po/et.po,
+ perl-install/install/help/po/eu.po,
+ perl-install/install/help/po/fa.po,
+ perl-install/install/help/po/fi.po,
+ perl-install/install/help/po/fr.po,
+ perl-install/install/help/po/fur.po,
+ perl-install/install/help/po/ga.po,
+ perl-install/install/help/po/gl.po,
+ perl-install/install/help/po/he.po,
+ perl-install/install/help/po/help_xml2pm.pl,
+ perl-install/install/help/po/hi.po,
+ perl-install/install/help/po/hr.po,
+ perl-install/install/help/po/hu.po,
+ perl-install/install/help/po/id.po,
+ perl-install/install/help/po/is.po,
+ perl-install/install/help/po/it.po,
+ perl-install/install/help/po/ja.po,
+ perl-install/install/help/po/ko.po,
+ perl-install/install/help/po/ky.po,
+ perl-install/install/help/po/lt.po,
+ perl-install/install/help/po/ltg.po,
+ perl-install/install/help/po/lv.po,
+ perl-install/install/help/po/mk.po,
+ perl-install/install/help/po/mn.po,
+ perl-install/install/help/po/ms.po,
+ perl-install/install/help/po/mt.po,
+ perl-install/install/help/po/nb.po,
+ perl-install/install/help/po/nl.po,
+ perl-install/install/help/po/nn.po,
+ perl-install/install/help/po/pa_IN.po,
+ perl-install/install/help/po/pl.po,
+ perl-install/install/help/po/pt.po,
+ perl-install/install/help/po/pt_BR.po,
+ perl-install/install/help/po/ro.po,
+ perl-install/install/help/po/ru.po,
+ perl-install/install/help/po/sc.po,
+ perl-install/install/help/po/sk.po,
+ perl-install/install/help/po/sl.po,
+ perl-install/install/help/po/sq.po,
+ perl-install/install/help/po/sr.po,
+ perl-install/install/help/po/sr@Latn.po,
+ perl-install/install/help/po/sv.po,
+ perl-install/install/help/po/ta.po,
+ perl-install/install/help/po/tg.po,
+ perl-install/install/help/po/th.po,
+ perl-install/install/help/po/tl.po,
+ perl-install/install/help/po/tr.po,
+ perl-install/install/help/po/uk.po,
+ perl-install/install/help/po/uz.po,
+ perl-install/install/help/po/uz@Latn.po,
+ perl-install/install/help/po/vi.po,
+ perl-install/install/help/po/wa.po,
+ perl-install/install/help/po/zh_CN.po,
+ perl-install/install/help/po/zh_TW.po,
+ perl-install/install/steps_gtk.pm, perl-install/lang.pm,
+ perl-install/share/po/Makefile,
+ perl-install/share/po/help-de.pot,
+ perl-install/share/po/help-es.pot,
+ perl-install/share/po/help-fr.pot,
+ perl-install/share/po/help-it.pot,
+ perl-install/share/po/help-ru.pot,
+ perl-install/share/po/help-zh_CN.pot,
+ perl-install/share/po/help_xml2pm.pl,
+ perl-install/share/po/libDrakX.pot: create DrakX-help.pot
+
+2006-05-03 13:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: fix not opening advanced by
+ default in expert
+
+2006-05-03 12:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile, perl-install/Makefile.drakxtools,
+ perl-install/share/po/DrakX.pot, perl-install/share/po/Makefile,
+ perl-install/share/po/libDrakX.pot: rename DrakX.pot into
+ libDrakX.pot (this simplifies Makefile)
+
+2006-05-03 12:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile.config: adapt to the move share ->
+ install/share of advertising and compssUsers
+
+2006-05-03 12:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/po/Makefile: cleanup "mandriva move" things
+
+2006-05-03 12:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/po/b_dump_strings.pm: unused (and it has
+ always has been unused)
+
+2006-05-03 11:17 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: find grub partition from record device
+
+2006-05-03 11:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/po/Makefile: add and use $(NAME)
+
+2006-05-03 10:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/live-patches, perl-install/patch:
+ move "patch" dir in install/share, and rename it to something
+ more clear
+
+2006-05-03 10:50 Pixel <pixel at mandriva.com>
+
+ * move: move obsoleted by Mandriva One
+
+2006-05-03 10:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pixmaps/banner-adduser.png,
+ perl-install/install/pixmaps/banner-bootL.png,
+ perl-install/install/pixmaps/banner-exit.png,
+ perl-install/install/pixmaps/banner-generic-ad.png,
+ perl-install/install/pixmaps/banner-languages.png,
+ perl-install/install/pixmaps/banner-license.png,
+ perl-install/install/pixmaps/banner-part.png,
+ perl-install/install/pixmaps/banner-pw.png,
+ perl-install/install/pixmaps/banner-security.png,
+ perl-install/install/pixmaps/banner-summary.png,
+ perl-install/install/pixmaps/banner-sys.png,
+ perl-install/install/pixmaps/banner-update.png,
+ perl-install/pixmaps/banner-adduser.png,
+ perl-install/pixmaps/banner-bootL.png,
+ perl-install/pixmaps/banner-exit.png,
+ perl-install/pixmaps/banner-generic-ad.png,
+ perl-install/pixmaps/banner-languages.png,
+ perl-install/pixmaps/banner-license.png,
+ perl-install/pixmaps/banner-part.png,
+ perl-install/pixmaps/banner-pw.png,
+ perl-install/pixmaps/banner-security.png,
+ perl-install/pixmaps/banner-summary.png,
+ perl-install/pixmaps/banner-sys.png,
+ perl-install/pixmaps/banner-update.png: move install pixmaps in
+ install/pixmaps
+
+2006-05-03 10:12 Pixel <pixel at mandriva.com>
+
+ * .cvsignore, docs/.cvsignore, kernel/.cvsignore,
+ mdk-stage1/.cvsignore, mdk-stage1/insmod-busybox/.cvsignore,
+ mdk-stage1/mar/.cvsignore, mdk-stage1/pci-resource/.cvsignore,
+ mdk-stage1/ppp/.cvsignore, mdk-stage1/ppp/pppd/.cvsignore,
+ mdk-stage1/rp-pppoe/.cvsignore,
+ mdk-stage1/rp-pppoe/src/.cvsignore,
+ mdk-stage1/usb-resource/.cvsignore, move/.cvsignore,
+ move/data/.cvsignore, move/isolinux/.cvsignore,
+ perl-install/.cvsignore, perl-install/Newt/.cvsignore,
+ perl-install/c/.cvsignore, perl-install/resize_fat/.cvsignore,
+ perl-install/share/po/.cvsignore,
+ perl-install/unused/.cvsignore,
+ perl-install/xf86misc/.cvsignore, rescue/.cvsignore,
+ tools/.cvsignore, tools/serial_probe/.cvsignore: obsolete
+ * perl-install/share/.cvsignore: obsolete
+
+2006-05-03 10:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/icons/fileopen.xpm,
+ perl-install/standalone/icons/find.xpm,
+ perl-install/standalone/icons/findf.xpm,
+ perl-install/standalone/icons/ftin.xpm,
+ perl-install/standalone/icons/ftout.xpm,
+ perl-install/standalone/icons/reload.xpm: we don't use xpm's
+ anymore
+
+2006-05-03 10:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/share/list.xml: we don't display xpm's
+ anymore during install
+
+2006-05-03 09:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile, perl-install/install/pixmaps,
+ perl-install/install/pixmaps/langs,
+ perl-install/install/pixmaps/logo-mandriva.png,
+ perl-install/install/pixmaps/reload.png,
+ perl-install/install/pixmaps/selected.png,
+ perl-install/install/pixmaps/semiselected.png,
+ perl-install/install/pixmaps/unselected.png,
+ perl-install/install/share,
+ perl-install/install/share/advertising,
+ perl-install/install/share/aliases,
+ perl-install/install/share/compssUsers.pl,
+ perl-install/install/share/consolefonts,
+ perl-install/install/share/devices,
+ perl-install/install/share/fonts.tar.bz2,
+ perl-install/install/share/keyboards.tar.bz2,
+ perl-install/install/share/keymaps.tar.bz2,
+ perl-install/install/share/keymaps_generate,
+ perl-install/install/share/kmap2bkmap,
+ perl-install/install/share/list.xml,
+ perl-install/install/share/locales-skeleton.tar.bz2,
+ perl-install/install/share/rpmsrate,
+ perl-install/install/share/symlinks,
+ perl-install/install/share/symlinks.x86_64,
+ perl-install/install/share/themes-blue.rc,
+ perl-install/install/share/themes-galaxy.rc,
+ perl-install/install/share/upgrade, perl-install/pixmaps/langs,
+ perl-install/share/advertising, perl-install/share/aliases,
+ perl-install/share/compssUsers.pl,
+ perl-install/share/consolefonts, perl-install/share/devices,
+ perl-install/share/fonts.tar.bz2,
+ perl-install/share/keyboards.tar.bz2,
+ perl-install/share/keymaps.tar.bz2,
+ perl-install/share/keymaps_generate,
+ perl-install/share/kmap2bkmap, perl-install/share/list.xml,
+ perl-install/share/locales-skeleton.tar.bz2,
+ perl-install/share/logo-mandriva.png,
+ perl-install/share/reload.png, perl-install/share/rpmsrate,
+ perl-install/share/selected.png,
+ perl-install/share/semiselected.png,
+ perl-install/share/symlinks, perl-install/share/symlinks.x86_64,
+ perl-install/share/themes-blue.rc,
+ perl-install/share/themes-galaxy.rc,
+ perl-install/share/unselected.png, perl-install/share/upgrade:
+ create perl-install/install/share and
+ perl-install/install/pixmaps and use them
+
+2006-05-03 09:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/theme-editor.pl: our theme is quite simple
+ nowadays, no need for an editor
+
+2006-05-03 09:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm, perl-install/Xconfig/main.pm,
+ perl-install/Xconfig/various.pm: propose to install
+ 915resolution when we detect a pb
+
+2006-05-03 08:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile: we don't gzip pms anymore for a long time
+
+2006-05-02 16:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm,
+ perl-install/Xconfig/proprietary.pm: move back libgl_config() in
+ card.pm since it need to be called even on non
+ proprietary in case proprietary drivers are installed
+
+2006-05-02 15:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: configure
+ 915resolution when it is installed
+
+2006-05-02 13:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/monitor.pm: don't use detailed_timing when
+ it is 640x480 or 800x600, since 14" CRTs often
+ give this even when they handle 1024x768 correctly (and desktop
+ is no good in
+ poor resolutions)
+
+2006-05-02 12:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm,
+ perl-install/standalone/bootloader-config: handle global vga= in
+ lilo.conf when creating bootsplash
+
+2006-05-02 12:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: simply & ugly dialog box
+ asking for checking bad blocks when formatting (only in expert)
+ (asked by Mat Nieuwenhoven)
+
+2006-05-02 12:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/install2.pm,
+ perl-install/install/interactive.pm: during install, $::expert
+ is now unset, except in diskdrake
+
+2006-05-02 12:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm, perl-install/fs/type.pm:
+ replace use of $::expert with parameter passing
+
+2006-05-02 11:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm,
+ perl-install/interactive.pm, perl-install/interactive/gtk.pm:
+ don't use $::expert to choose between SpinButton and HScale, use
+ {SpinButton}
+
+2006-05-02 11:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm, perl-install/Xconfig/various.pm,
+ perl-install/any.pm, perl-install/diskdrake/removable.pm,
+ perl-install/install/any.pm, perl-install/install/steps_gtk.pm,
+ perl-install/install/steps_interactive.pm,
+ perl-install/interactive/gtk.pm,
+ perl-install/modules/interactive.pm: drop remaining occurences
+ of $::expert outside of diskdrake
+
+2006-05-02 10:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/pkgs.pm: drop obsolete %ignoreBadPkg
+
+2006-05-02 10:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/install/steps.pm: add {preInstallNonRooted} which
+ allows:
+
+
+ 'preInstallNonRooted' => '
+ cat > /mnt/etc/login.defs <<EOF
+ MAIL_DIR /var/spool/mail
+ PASS_MAX_DAYS 99999
+ PASS_MIN_DAYS 0
+ PASS_MIN_LEN 5
+ PASS_WARN_AGE 7
+ UID_MIN 100
+ UID_MAX 60000
+ GID_MIN 100
+ GID_MAX 60000
+ CREATE_HOME yes
+ EOF
+ '
+
+ so that users created during install (rpm, xfs, ssh) use a GID >
+ 100 instead of 500
+
+ (thanks to Philippe Libat)
+
+2006-04-28 17:44 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/gl.po: updated Galician file
+
+2006-04-28 17:43 Pablo Saratxaga <pablo at mandriva.com>
+
+ * live/draklive-install/po/gl.po, live/draklive-install/po/nl.po,
+ live/draklive-install/po/uk.po: updated Galician file
+
+2006-04-28 16:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm,
+ perl-install/install/steps_interactive.pm,
+ perl-install/partition_table/mac.pm: use
+ $bootloader::new_bootstrap instead of
+ $install_steps_interactive::new_bootstrap
+
+2006-04-28 15:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile, perl-install/Makefile.config,
+ perl-install/any.pm, perl-install/commands,
+ perl-install/commands.pm, perl-install/crypto.pm,
+ perl-install/diskdrake/interactive.pm, perl-install/do_pkgs.pm,
+ perl-install/fs/mount.pm, perl-install/ftp.pm,
+ perl-install/help.pm, perl-install/http.pm,
+ perl-install/install, perl-install/install/any.pm,
+ perl-install/install/commands, perl-install/install/commands.pm,
+ perl-install/install/crypto.pm, perl-install/install/ftp.pm,
+ perl-install/install/gtk.pm, perl-install/install/help.pm,
+ perl-install/install/http.pm, perl-install/install/install2,
+ perl-install/install/install2.pm,
+ perl-install/install/interactive.pm,
+ perl-install/install/pkgs.pm, perl-install/install/steps.pm,
+ perl-install/install/steps_auto_install.pm,
+ perl-install/install/steps_gtk.pm,
+ perl-install/install/steps_interactive.pm,
+ perl-install/install/steps_list.pm,
+ perl-install/install/steps_newt.pm,
+ perl-install/install/steps_stdio.pm, perl-install/install2,
+ perl-install/install2.pm, perl-install/install_any.pm,
+ perl-install/install_gtk.pm,
+ perl-install/install_interactive.pm,
+ perl-install/install_messages.pm, perl-install/install_steps.pm,
+ perl-install/install_steps_auto_install.pm,
+ perl-install/install_steps_gtk.pm,
+ perl-install/install_steps_interactive.pm,
+ perl-install/install_steps_newt.pm,
+ perl-install/install_steps_stdio.pm,
+ perl-install/interactive.pm, perl-install/messages.pm,
+ perl-install/modules.pm, perl-install/mygtk2.pm,
+ perl-install/pkgs.pm, perl-install/share/aliases,
+ perl-install/steps.pm: move install modules in install::
+
+ we now have any.pm & install/any.pm,
+ and also interactive.pm & install/interactive.pm &
+ diskdrake/interactive.pm,
+ hint for emacs: use (setq uniquify-buffer-name-style (quote
+ forward) nil (uniquify))
+ to not get lost with any.pm and any.pm<2>
+
+2006-04-28 14:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakautoinst: don't use commands.pm,
+ it's only for install
+
+2006-04-28 13:54 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/drakxtools.spec: Release 10.4.20-1mdk
+
+2006-04-28 10:41 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/uz@Latn.po: fixed encoding
+
+2006-04-28 09:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/uz.po, perl-install/share/po/uz@Latn.po:
+ update (Mashrab Kuvatov)
+
+2006-04-28 09:41 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/detect.pm,
+ perl-install/printer/printerdrake.pm: - Avoid one and the same
+ printer appearing twice in auto-detection
+ results (especially HP printers are detected by both "hp" and
+ "usb"
+ CUPS backends).
+
+2006-04-28 09:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: perl_checker compliance
+
+2006-04-27 21:38 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm,
+ perl-install/printer/printerdrake.pm: - Fixed Plug'n'Print for
+ HP's MF devices: The devices are detected
+ twice and this let the Plug'n'Print window pop up when the
+ device is
+ already installed.
+
+2006-04-27 16:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: allow modifying xen options (esp. dom0_mem)
+
+2006-04-27 16:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: - use the short_ext even for the
+ short label
+ - for xen kernels, use xen.gz to load the kernel as grub "module"
+ - set dom0_mem to 128M or half the memory on low memory boxes
+
+2006-04-27 16:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: separate the xen loader from its
+ arguments in AST
+
+2006-04-27 15:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: make the "module" thingie for xen
+ more standard in our data-structure
+ (eg: allowing drakboot to modify the kernel used)
+
+2006-04-27 15:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mouse.pm: (test_mouse_install) do not display
+ "cancel" button while testing the
+ mouse since it doesn't work
+
+2006-04-27 14:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mouse.pm: (test_mouse_install) display a title in
+ the banner while testing the mouse
+
+2006-04-27 14:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/list.xml, tools/install-xml-file-list: we
+ need tls on x86_64, but we don't need both tls and non tls
+
+2006-04-27 14:33 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/drakxtools.spec: Spec file for 10.4.19-1mdk
+
+2006-04-27 14:18 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/detect.pm, perl-install/printer/main.pm,
+ perl-install/printer/printerdrake.pm: - New "Network printer"
+ dialog replacing the old dialogs for
+ TCP/Socket and remote LPD printers. With fast broadcast SBNP
+ network
+ scan and auto-detection of protocol (Socket, LPD, and IPP) via
+ SNMP.
+ - New dialog used in both expert and recommended (bug #20617)
+ mode.
+
+2006-04-27 14:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * Makefile: (install_only) fix installing DrakX when /export is
+ not on the sources' fs
+
+2006-04-27 14:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/list.xml: add a comment about the need of TLS
+
+2006-04-27 14:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/list.xml: fix again cooker/x86_64; on this
+ architecture, we definitively need
+ TLS in order to have a working rpm
+
+2006-04-27 08:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/proprietary.pm: restore IgnoreEDID for
+ legacy nvidia
+
+2006-04-27 08:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/main.pm,
+ perl-install/Xconfig/proprietary.pm,
+ perl-install/Xconfig/resolution_and_depth.pm,
+ perl-install/Xconfig/xfree.pm: allow forcing Modes instead of
+ Virtual, and use it for non-legacy nvidia drivers (which do not
+ like Virtual)
+
+2006-04-27 00:23 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/list_modules.pm: remove duplicate modules
+
+2006-04-26 17:16 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/list_modules.pm: use more network modules on sparc (Per
+ Øyvind Karlsen)
+
+2006-04-26 16:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: comment why bsd_glob is
+ useful here
+
+2006-04-26 16:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/draksec: use
+ ugtk2::markup_to_TextView_format
+ * perl-install/ugtk2.pm: add ability to give more attributes (used
+ in draksec)
+
+2006-04-26 15:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive.pm, perl-install/interactive/gtk.pm,
+ perl-install/ugtk2.pm: allow giving text with <b> tags and the
+ like
+
+2006-04-26 15:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: if the markup doesn't work, set text
+ directly
+ (this allow using markup everywhere, with a fallback in case of
+ pb)
+
+2006-04-26 15:15 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: - Small fix
+
+2006-04-26 14:49 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm,
+ perl-install/printer/printerdrake.pm: - SNMP auto-detection in
+ the remote LPD printer dialog
+ - Fixed regexps for LPD and Socket URIs
+
+2006-04-26 12:23 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Use auto-detection via
+ CUPS "snmp" backend also for interactive
+ print queue setup.
+
+2006-04-26 11:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/interactive_http/interactive_http.cgi:
+ minimal fix
+
+2006-04-26 09:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: simplify
+
+2006-04-26 08:20 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Let auto queue setup
+ only be done for local printers
+
+2006-04-26 08:19 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: Fixed regexps to determine network
+ printer URIs and their host names/IPs.
+
+2006-04-25 19:41 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/detect.pm, perl-install/printer/main.pm,
+ perl-install/printer/printerdrake.pm: - Added support for local
+ and network device auto-detection via CUPS
+ backends
+ - Made auto queue setup use the CUPS backends for detecting
+ local and
+ network devices
+ - Improved recognizing the correct printer model based on the
+ auto-detection data, especially for network devices
+ - Improved recognition whether for an auto-detected device there
+ is
+ already a queue
+ - Improved device model recognition for the HPLIP setup
+
+2006-04-25 15:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: - new functions: get_Revision(),
+ set_Revision()
+ - call set_Revision() to put the revision number in our header
+
+2006-04-25 15:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: revert debug stuff wrongly
+ committed :-(
+
+2006-04-25 15:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: add revision in generated header
+ (allowing versioning config file and so proper upgrade)
+
+2006-04-25 10:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/do_pkgs.pm: - drop the handling of ext_name (was
+ only used by Xconfig/card.pm, now unused), it's much clearer now
+ - comment the function
+
+2006-04-25 10:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm,
+ perl-install/Xconfig/proprietary.pm: - move libgl_config to
+ proprietary.pm
+ - move nvidia/fglrx special code to
+ Xconfig::proprietary::pkgs_for_Driver2() and
+ Xconfig::proprietary::may_use_Driver2(
+ (and modernize the code)
+ - don't use the 3rd arg of check_kernel_module_packages (much
+ clearer, and allow its simplification)
+
+2006-04-25 09:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm, perl-install/authentication.pm: factorize
+ password checking in authentication::check_given_password()
+ (can be re-used to write a simple dialog box asking for a user
+ password)
+
+2006-04-25 07:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/.perl_checker: skip File::Glob
+
+2006-04-25 01:12 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: - Some HP printers have a trailing
+ underscore in the model name of
+ their HPLIP device URI. This mismatches the data in HPLIP's
+ models.xml. Applied workaround.
+
+2006-04-25 00:28 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Made sure that fax queue
+ is generated on a non-fax HP device
+
+2006-04-24 22:15 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Removed a "Please wait"
+ window before opening another one.
+
+2006-04-24 21:44 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/cups.pm, perl-install/printer/main.pm,
+ perl-install/printer/printerdrake.pm: - Support for on-the-fly
+ PPD generation by CUPS
+ - Get all info about supported printer models from CUPS if CUPS
+ is the
+ printing system in use. Foomatic PPDs are built by CUPS
+ on-the-fly
+ - Speed optimization for building of the list of supported models
+ - Bug fixes for building of the list of supported models
+
+2006-04-24 20:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: enable qt-immmodule with oxim
+
+2006-04-24 20:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: add a reminder for qt im-module support
+ with oxim
+ * perl-install/lang.pm: setup XIM for oxim (Funda Wang)
+
+2006-04-24 16:24 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/insmod-modutils/obj/obj_gpl_license.c: missing sparc
+ fixes bits (from Per Øyvind Karlsen)
+
+2006-04-24 16:07 Olivier Blin <oblin at mandriva.com>
+
+ * rescue/list.xml: no sfdisk on sparc neither (Per Øyvind Karlsen)
+
+2006-04-24 15:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: really add kdeaddons-akregator
+ (allow viewing RSS in konqueror)
+
+2006-04-24 12:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add bcm43xx in network/wireless
+
+2006-04-24 11:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: remove require kdeaddons-akregator
+ which is already required by kdepim-kontact
+
+2006-04-24 10:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: add missing utf_yo
+
+2006-04-24 10:51 Pixel <pixel at mandriva.com>
+
+ * Makefile: do commit ChangeLog after svn2cl
+ * ChangeLog:
+
+2006-04-24 08:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: more explainations
+
+2006-04-24 07:43 Pixel <pixel at mandriva.com>
+
+ * kernel/update_kernel: make it possible to choose alternate
+ kernel repositories (kernel/.repository) (from 2006 branch, by
+ gb)
+
+2006-04-24 07:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: add kdeaddons-akregator (requested
+ by Nicolas Lecureuil (neoclust))
+
+2006-04-24 00:23 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/cups.pm: - Added "lpinfo_lm" function which
+ uses the "lpinfo -l -m" command
+ line of CUPS 1.2 to get a list of all available PPDs including
+ on-the-fly-generated ones.
+
+2006-04-24 07:43 Pixel <pixel at mandriva.com>
+
+ * kernel/update_kernel: make it possible to choose alternate
+ kernel repositories (kernel/.repository) (from 2006 branch, by
+ gb)
+
+2006-04-24 07:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: add kdeaddons-akregator (requested
+ by Nicolas Lecureuil (neoclust))
+
+2006-04-24 00:23 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/cups.pm: - Added "lpinfo_lm" function which
+ uses the "lpinfo -l -m" command
+ line of CUPS 1.2 to get a list of all available PPDs including
+ on-the-fly-generated ones.
+
+2006-04-23 23:28 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Tell user that for his
+ HP MF device two queues will be set up, a
+ print queue and a fax queue
+ - Give the possibility to cancel the print queue setup for only
+ having
+ a fax queue also during installation
+
+2006-04-23 23:03 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Upload it really
+
+2006-04-23 23:01 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: - Let auto-queue setup of an HP MF
+ device be done also when there is
+ no print queue but a fax queue already exists
+ - Let auto-queue setup not create a second fax queue for an HP MF
+ device if a fax queue already exists
+ - Make the fax queue setup for HP MF devices also work when
+ there is
+ no print queue for the device
+ - Ask always for the fax queue name when creating a fax queue and
+ there is already one for the device
+ - When the user clicks "Cancel" during the print queue setup, the
+ wizard for the fax queue is still started. So a fax-only setup
+ is
+ also possible.
+
+2006-04-23 21:00 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Fixed cancelling of Add
+ Fax Wizard
+
+2006-04-23 20:48 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Now fax queues can also
+ be added in wizard mode
+ - Adding a fax queue to an HP MF device which is already set up
+ can be
+ done by its "Edit Printer" menu
+ - Some clean-up and minor fixes
+
+2006-04-23 03:27 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Removed some more
+ testing code
+
+2006-04-23 03:26 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Removed a modification
+ which was only for testing.
+
+2006-04-23 03:21 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm,
+ perl-install/printer/printerdrake.pm: - Implementation of
+ automatic setup of fax queues for HP
+ multi-function devices. Works for plug'n'print and should also
+ work
+ during installation. Only integration into the printer setup
+ wizard
+ and manual fax queue setup is missing yet.
+
+2006-04-22 21:13 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/detect.pm: - Reload USB printer module
+ before printer auto-detection, this way
+ also USB printers clamed by libusb-based access methods (ex.
+ HPLIP)
+ get detected.
+
+2006-04-22 18:07 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm,
+ perl-install/printer/printerdrake.pm: - Added support for new
+ CUPS 1.2 error policy functionality and use it
+ by default for backend error handling, use "beh" wrapper
+ backend
+ only for advanced configuration
+ - Added support for individually (de)activating the sharing of
+ print
+ queues to the network
+ - Display Fax queues for HP multi-function devices correctly in
+ the
+ main window and in menues
+
+2006-04-22 07:43 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/DrakX.pot, perl-install/share/po/af.po,
+ perl-install/share/po/am.po, perl-install/share/po/ar.po,
+ perl-install/share/po/az.po, perl-install/share/po/be.po,
+ perl-install/share/po/bg.po, perl-install/share/po/bn.po,
+ perl-install/share/po/br.po, perl-install/share/po/bs.po,
+ perl-install/share/po/ca.po, perl-install/share/po/cs.po,
+ perl-install/share/po/cy.po, perl-install/share/po/da.po,
+ perl-install/share/po/de.po, perl-install/share/po/el.po,
+ perl-install/share/po/eo.po, perl-install/share/po/es.po,
+ perl-install/share/po/et.po, perl-install/share/po/eu.po,
+ perl-install/share/po/fa.po, perl-install/share/po/fi.po,
+ perl-install/share/po/fr.po, perl-install/share/po/fur.po,
+ perl-install/share/po/ga.po, perl-install/share/po/gl.po,
+ perl-install/share/po/he.po, perl-install/share/po/hi.po,
+ perl-install/share/po/hr.po, perl-install/share/po/hu.po,
+ perl-install/share/po/id.po, perl-install/share/po/is.po,
+ perl-install/share/po/it.po, perl-install/share/po/ja.po,
+ perl-install/share/po/ko.po, perl-install/share/po/ky.po,
+ perl-install/share/po/lt.po, perl-install/share/po/ltg.po,
+ perl-install/share/po/lv.po, perl-install/share/po/mk.po,
+ perl-install/share/po/mn.po, perl-install/share/po/ms.po,
+ perl-install/share/po/mt.po, perl-install/share/po/nb.po,
+ perl-install/share/po/nl.po, perl-install/share/po/nn.po,
+ perl-install/share/po/pa_IN.po, perl-install/share/po/pl.po,
+ perl-install/share/po/pt.po, perl-install/share/po/pt_BR.po,
+ perl-install/share/po/ro.po, perl-install/share/po/ru.po,
+ perl-install/share/po/sc.po, perl-install/share/po/sk.po,
+ perl-install/share/po/sl.po, perl-install/share/po/sq.po,
+ perl-install/share/po/sr.po, perl-install/share/po/sr@Latn.po,
+ perl-install/share/po/sv.po, perl-install/share/po/ta.po,
+ perl-install/share/po/tg.po, perl-install/share/po/th.po,
+ perl-install/share/po/tl.po, perl-install/share/po/tr.po,
+ perl-install/share/po/uk.po, perl-install/share/po/uz.po,
+ perl-install/share/po/uz@Latn.po, perl-install/share/po/vi.po,
+ perl-install/share/po/wa.po, perl-install/share/po/zh_CN.po,
+ perl-install/share/po/zh_TW.po: Updated POT file.
+
+2006-04-22 01:09 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: - Let printerdrake read
+ /etc/cups/cupsd.conf of CUPS 1.2 correctly
+
+2006-04-21 23:03 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm,
+ perl-install/printer/printerdrake.pm: - Added support for remote
+ LPD URIs without queue name (uses default
+ queue on server, makes setup of ethernet printers very easy as
+ only
+ IP address is needed, one needs queue field in remote LPD setup
+ screen siumply blank)
+ - Added support for TCP/Socket URIs without port number
+ (defaults to
+ port 9100)
+ - Added support for IPP URIs.
+ - Let free URI input interface be pre-selected if user changes
+ connection type of printer with unknown or unsupported URI type
+
+2006-04-21 17:48 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm,
+ perl-install/printer/printerdrake.pm: - Let CUPS not be
+ restarted for new PPD files or new devices/URIS,
+ this is not needed any more by CUPS 1.2.
+
+2006-04-21 14:40 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Moved re-enabling of
+ disabled queues when plugging printers from
+ /etc/dynamic/scripts/lp.script to printerdrake
+
+2006-04-19 17:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: force install of the
+ ieee80211-kernel package matching the current kernel
+
+2006-04-19 17:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: allow to install multiple
+ kernel packages
+
+2006-04-19 16:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: install ipw3945 kernel
+ package
+
+2006-04-19 14:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: add support for OXIM input method
+
+2006-04-19 14:11 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: apply patches and install files after the
+ configuration is cleaned to allow special configuration files
+ (especially modprobe.preload)
+
+2006-04-18 16:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: the ipw3945d daemon doesn't
+ create the interface immediately, give it some time (2 seconds
+ should be enough)
+
+2006-04-18 16:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: allow to sleep if the
+ installed tools aren't as fast and responsive as drakconnect
+
+2006-04-18 16:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: ipw3945 support (install
+ firmware and ipw3945 daemon)
+
+2006-04-18 15:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: use bsd_glob without flags
+ so that it works for both patterns and raw filenames
+
+2006-04-18 14:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/monitor.pm: fix signal quality detection
+
+2006-04-18 09:52 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/thirdparty.c: fix yet another buffer overflow...
+ (frontport of 2006.0, from Gwenole Beauchesne)
+
+2006-04-18 09:50 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/thirdparty.c: Get full descriptions (including blanks
+ in there) -- cosmetic bug fix (frontport of 2006.0, from Gwenole
+ Beauchesne)
+
+2006-04-18 09:48 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/tools.c: fix long standing bug that could cause some
+ weird crashes and, as I am cursed
+ I hit those cases... (frontport, from Gwenole Beauchesne)
+
+2006-04-14 19:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: update ADSL provider DB
+ (Benoit Audouard)
+
+2006-04-12 12:53 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/probing.c: Workaround probing_detect_devices() with
+ longish /proc/bus/pci/devices lines.
+
+ The proper fix would be to use fgets() and sscanf() when buf[]
+ is readjusted
+ if '\n' was got, so that to insure that buf[] always contains
+ the start of a
+ new line.
+
+ (from Gwenole Beauchesne, front-ported from 2006.0)
+
+2006-04-12 12:51 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/probing.c, mdk-stage1/probing.h,
+ mdk-stage1/thirdparty.c: Handle subvendor & subdevice in
+ thirdparty pcitable loader. Also fix possible buffer overflow.
+ (from Gwenole Beauchesne)
+
+2006-04-12 10:36 mmodem
+
+ * perl-install/share/po/fr.po: Add full copyright years
+
+2006-04-10 13:09 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: don't copy boot files at media root when using
+ grub
+
+2006-04-07 14:24 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: don't force acpi=ht, defaulting to kernel default
+ (ie acpi=on)
+
+2006-04-07 13:58 Pixel <pixel at mandriva.com>
+
+ * kernel/modules.pl, kernel/update_kernel: use kernel-BOOT from
+ 2006.0 (2006.0 is still supported, more recent than 10.1, and
+ still provide an interesting (?) alt1 kernel)
+
+2006-04-07 13:39 Pixel <pixel at mandriva.com>
+
+ * tools/install-xml-file-list: don't die at each error, but report
+ all the errors before dying
+
+2006-04-07 12:44 Pixel <pixel at mandriva.com>
+
+ * Makefile: missing cvs -kb not needed on svn
+
+2006-04-07 12:43 Pixel <pixel at mandriva.com>
+
+ * Makefile, make_boot_img, perl-install/Makefile,
+ perl-install/install_any.pm, perl-install/share/list.xml: switch
+ VERSION generation to SVN
+
+2006-04-07 12:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: disable "wen" until we have a
+ perl-install/pixmaps/langs/lang-wen.png for it
+
+2006-04-07 12:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/list.xml: vol_id is a symlink, we don't want
+ it to be a symlink (!! need a modification in
+ install-xml-file-list)
+
+2006-04-07 12:29 Pixel <pixel at mandriva.com>
+
+ * rescue/list.xml: vol_id is a symlink, we don't want it to be a
+ symlink (!! need a modification in install-xml-file-list)
+
+2006-04-07 12:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: a pkg must appear only once
+ (fonts-ttf-free did not)
+
+2006-04-07 13:58 Pixel <pixel at mandriva.com>
+
+ * kernel/modules.pl, kernel/update_kernel: use kernel-BOOT from
+ 2006.0 (2006.0 is still supported, more recent than 10.1, and
+ still provide an interesting (?) alt1 kernel)
+
+2006-04-07 13:39 Pixel <pixel at mandriva.com>
+
+ * tools/install-xml-file-list: don't die at each error, but report
+ all the errors before dying
+
+2006-04-07 12:44 Pixel <pixel at mandriva.com>
+
+ * Makefile: missing cvs -kb not needed on svn
+
+2006-04-07 12:43 Pixel <pixel at mandriva.com>
+
+ * Makefile, make_boot_img, perl-install/Makefile,
+ perl-install/install_any.pm, perl-install/share/list.xml: switch
+ VERSION generation to SVN
+
+2006-04-07 12:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: disable "wen" until we have a
+ perl-install/pixmaps/langs/lang-wen.png for it
+
+2006-04-07 12:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/list.xml: vol_id is a symlink, we don't want
+ it to be a symlink (!! need a modification in
+ install-xml-file-list)
+
+2006-04-07 12:29 Pixel <pixel at mandriva.com>
+
+ * rescue/list.xml: vol_id is a symlink, we don't want it to be a
+ symlink (!! need a modification in install-xml-file-list)
+
+2006-04-07 12:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: a pkg must appear only once
+ (fonts-ttf-free did not)
+
+2006-04-07 11:01 Pixel <pixel at mandriva.com>
+
+ * tools/install-xml-file-list: allow setting copy mode to
+ dereference in expand="binary"
+
+2006-04-07 09:58 Pixel <pixel at mandriva.com>
+
+ * kernel/update_kernel: since the BOOT kernel in cooker can't be
+ used (too big) for some time, handle
+ in the code the getting of 10.1 BOOT kernel (i was replacing by
+ hand the
+ cooker kernel-BOOT with the one from 10.1, hoping one day the
+ cooker
+ kernel-BOOT could be used again, but nowadays kernel-BOOT is
+ seldom used to
+ let it die)
+
+2006-04-06 18:32 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: run busybox from chroot to get busybox functions
+ list, since it may not be present on build host
+
+2006-04-06 18:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/zh_TW.po: typo fix
+
+2006-04-06 17:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: minor update
+
+2006-04-06 17:27 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: use grub for USB devices
+
+2006-04-06 14:31 Pixel <pixel at mandriva.com>
+
+ * rescue/make_partimage_save_rest_all: cleanup
+
+2006-04-06 12:34 Pixel <pixel at mandriva.com>
+
+ * rescue/list.xml: add vol_id (needed by libDrakX)
+
+2006-04-06 10:06 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg: preselect guest user in kdm
+
+2006-04-06 10:05 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg, live/One/config/local_cfg: add
+ required settings to build live on usb media
+
+2006-04-06 10:04 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: install busybox in live system
+
+2006-04-06 09:57 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: allow to use ext3 as well as ext2 for master
+ images
+
+2006-04-06 09:53 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: preselect user in kdm only if specified
+
+2006-04-05 16:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.18-1mdk
+
+2006-04-05 15:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: enhance net zone selection
+ message
+
+2006-04-05 15:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm,
+ perl-install/standalone/drakgw: allow to have multiple
+ interfaces in net zone (#16917)
+ * perl-install/network/tools.pm: add get_interface_description
+
+2006-04-05 13:36 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/modules.pl: don't try to find unused modules on sparc
+ (occured when flatten_and_check()ing list of modules to be
+ skipped)
+
+2006-04-05 13:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table/dos.pm: fix debug info
+
+2006-04-05 07:46 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/Makefile.common, mdk-stage1/insmod-modutils/insmod.c,
+ mdk-stage1/insmod-modutils/obj/Makefile: sparc fixes (from Per
+ Øyvind Karlsen)
+
+2006-04-03 17:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: write shorewall rules in
+ rules.drakx and allow user modifications to be kept in
+ /etc/shorewall/rules (ask for confirmation if needed)
+
+2006-04-03 17:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/drakfirewall.pm: allow to use interactive
+ when shorewall config is written
+
+2006-04-03 16:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.17-1mdk
+
+2006-04-03 15:59 Pixel <pixel at mandriva.com>
+
+ * ChangeLog, Makefile, perl-install/ChangeLog,
+ tools/addchangelog.pl, tools/cvslog2changelog.pl,
+ tools/mailchangelog.pl: - use svn2cl to generate changelog
+ - don't mail added part anymore, rely on mail sent on commit of
+ Changelog
+ - add Changelog built mostly using cvs2cl, but keeping things
+ historically added by hand in perl-install/ChangeLog
+
+2006-04-03 15:56 Pixel <pixel at mandriva.com>
+
+ * rescue/make_partimage_save_rest_all: fix typo
+
+2006-04-03 14:56 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: check for kdmrc in chroot
+
+2006-04-03 13:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/mount_options.pm: adapt the description of
+ "users" to its use (thanks to fabrice)
+
+2006-04-03 12:43 Pixel <pixel at mandriva.com>
+
+ * perl-install:
+
+2006-04-03 13:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/mount_options.pm: adapt the description of
+ "users" to its use (thanks to fabrice)
+
+2006-04-03 12:43 Pixel <pixel at mandriva.com>
+
+ * perl-install:
+
+2006-04-03 12:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile, perl-install/list_modules.pm: svn handles
+ symlinks :-)
+
+2006-04-03 12:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile, perl-install/perl2etags: etags from
+ emacs-snapshot handles perl nicely, no need for post-processing
+
+2006-04-03 12:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: in case of /dev/root, the
+ matching with the real device name will be done on major/minor
+
+2006-04-03 12:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/mount_options.pm: as noticed in bug #21828, the
+ "user" option has no help anymore. fixing by
+ having help on both users and user.
+
+2006-04-03 11:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draknfs,
+ perl-install/standalone/draksambashare: display banners while
+ embedded since mcc doesn't care of it because these apps
+ provide their own menu bar
+
+2006-04-03 11:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/patch/9.1,
+ perl-install/patch/patch-2006-auto_install_LDAP_auth.pl,
+ perl-install/patch/patch-2006-new-dmraid.pl,
+ perl-install/patch/patch-9.0-auto-inst-network-config.pl,
+ perl-install/patch/patch-IMPS2.pl,
+ perl-install/patch/patch-da.pl,
+ perl-install/patch/patch-nforce.pl,
+ perl-install/patch/patch-oem-9.0.pl,
+ perl-install/patch/patch-oem-hp.pl,
+ perl-install/patch/patch-raidtab.pl,
+ perl-install/patch/patch-rh9-mdk10.pl,
+ perl-install/patch/patch-stage2-updatemodules.pl,
+ perl-install/patch/rpmsrate.oem-9.0-openoffice,
+ perl-install/patch/rpmsrate.oem-9.0-staroffice: patches must be
+ in their branches, not trunk
+
+2006-04-03 11:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: gasp, fixing previous commit:
+ function suggest_mount_points() already existed :-(
+
+2006-04-03 11:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/c:
+
+2006-04-03 07:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: automatically install acpi and acpid when
+ needed (bug introduced in 03/2006) (#21809)
+
+2006-03-31 16:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: create function
+ suggest_mount_points from getHds, and don't call it on
+ local_install (otherwise the windows partition gets mounted in
+ drakx-in-chroot, and then ugly things can happen...)
+
+2006-03-31 16:03 Pixel <pixel at mandriva.com>
+
+ * tools/drakx-in-chroot: in the chroot, we have no way to know
+ which device corresponds to the "/" partition.
+ so helping it by giving the device which provide major/minor
+ information
+
+2006-03-31 14:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/keyboard.pm: don't set keyboard on local_install
+
+2006-03-31 14:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: nomouseprobe on local_install
+
+2006-03-31 14:15 Pixel <pixel at mandriva.com>
+
+ * tools/drakx-in-chroot: if the DISPLAY is remote, we may need to
+ resolve the name
+
+2006-03-31 10:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: /usr/bin/rpm doesn't exist,
+ /bin/rpm does
+
+2006-03-30 17:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/adsl_consts.pm: add "Germany|Alice DSL"
+ provider (Gotz Waschk, #21786)
+
+2006-03-28 19:05 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: wait some minutes for the sync to be done when
+ umounting USB devices (avoid corrupted transfers)
+
+2006-03-28 15:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.16-1mdk
+
+2006-03-28 11:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.15-1mdk
+
+2006-03-27 16:21 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: fix typo
+
+2006-03-27 16:01 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: try to get size in bytes from human-readable size
+
+2006-03-27 15:57 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: mkdosfs wants block count, not size
+
+2006-03-27 15:44 Pixel <pixel at mandriva.com>
+
+ * rescue/make_partimage_save_rest_all: fix typo in previous commit
+
+2006-03-27 13:44 Pixel <pixel at mandriva.com>
+
+ * rescue/make_rescue_img: blacklist .svn instead of CVS
+
+2006-03-27 12:44 Pixel <pixel at mandriva.com>
+
+ * rescue/list.xml: update (bdflush) is deprecated
+
+2006-03-27 10:13 Pixel <pixel at mandriva.com>
+
+ * rescue/make_partimage_save_rest_all: use BOX= on command line
+
+2006-03-24 16:04 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: allow to create usb master (live.img)
+
+2006-03-24 16:03 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: allow to record usb master to an optionnal
+ file/device, and mount it as loopback if needed
+
+2006-03-24 16:00 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: move label code in set_device_label and allow to
+ label ext2
+
+2006-03-24 15:58 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: ext2 is built-in, don't try to find a kernel
+ module for it (useful if boot partition is ext2)
+
+2006-03-24 15:57 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: factorize fs creation in device_mkfs, and allow
+ to specify fs size for vfat
+
+2006-03-24 15:54 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: use real file size when specifying loopback size
+
+2006-03-24 12:30 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: * corrected locale for Berber (ber_MA),
+ Filipino (fil_PH), Swati (ss_ZA),
+ Venda (ve_ZA), Uyghur (ug_CN)
+ * added install choice for new languages: Ndebele (nr), Tswana
+ (tn),
+ Tsonga (ts), Northern Sotho (nso), Dzongkha (dz), Hausa (ha),
+ Igbo (ig),
+ Yoruba (yo), Kazakh (kk), Birman (my), Kinyarwanda (rw),
+ Somali (so)
+ * synchronized locales and kde-i18n lists;
+ * use encoding="UTF-8" in locale-policy.fdi
+ * perl-install/pixmaps/langs/lang-dz.png,
+ perl-install/pixmaps/langs/lang-fil.png,
+ perl-install/pixmaps/langs/lang-ha.png,
+ perl-install/pixmaps/langs/lang-ig.png,
+ perl-install/pixmaps/langs/lang-my.png,
+ perl-install/pixmaps/langs/lang-nr.png,
+ perl-install/pixmaps/langs/lang-nso.png,
+ perl-install/pixmaps/langs/lang-ph.png,
+ perl-install/pixmaps/langs/lang-rw.png,
+ perl-install/pixmaps/langs/lang-so.png,
+ perl-install/pixmaps/langs/lang-tn.png,
+ perl-install/pixmaps/langs/lang-ts.png,
+ perl-install/pixmaps/langs/lang-yo.png: Images of new language
+ names (for language selection menu)
+
+2006-03-23 12:58 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/rpmsrate: fonts-ttf-{gb2312,big5} no longer
+ exist (superceded with new fonts-ttf-chinese)
+
+2006-03-23 12:14 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm, perl-install/share/rpmsrate: changed
+ default sans serif font for Armenian;
+ made various locales request fonts-ttf-free
+
+2006-03-23 11:28 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/lang.pm: changed default KDE fonts for Greek, Azeri
+ and Hebrew (to FreeSans/FreeMono)
+ and for cyrillic mono (to Nimbus Mono L)
+
+2006-03-23 02:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/DrakX.pot, perl-install/share/po/af.po,
+ perl-install/share/po/am.po, perl-install/share/po/ar.po,
+ perl-install/share/po/az.po, perl-install/share/po/be.po,
+ perl-install/share/po/bg.po, perl-install/share/po/bn.po,
+ perl-install/share/po/br.po, perl-install/share/po/bs.po,
+ perl-install/share/po/ca.po, perl-install/share/po/cs.po,
+ perl-install/share/po/cy.po, perl-install/share/po/da.po,
+ perl-install/share/po/de.po, perl-install/share/po/el.po,
+ perl-install/share/po/eo.po, perl-install/share/po/es.po,
+ perl-install/share/po/et.po, perl-install/share/po/eu.po,
+ perl-install/share/po/fa.po, perl-install/share/po/fi.po,
+ perl-install/share/po/fr.po, perl-install/share/po/fur.po,
+ perl-install/share/po/ga.po, perl-install/share/po/gl.po,
+ perl-install/share/po/he.po, perl-install/share/po/hi.po,
+ perl-install/share/po/hr.po, perl-install/share/po/hu.po,
+ perl-install/share/po/id.po, perl-install/share/po/is.po,
+ perl-install/share/po/it.po, perl-install/share/po/ja.po,
+ perl-install/share/po/ko.po, perl-install/share/po/ky.po,
+ perl-install/share/po/lt.po, perl-install/share/po/ltg.po,
+ perl-install/share/po/lv.po, perl-install/share/po/mk.po,
+ perl-install/share/po/mn.po, perl-install/share/po/ms.po,
+ perl-install/share/po/mt.po, perl-install/share/po/nb.po,
+ perl-install/share/po/nl.po, perl-install/share/po/nn.po,
+ perl-install/share/po/pa_IN.po, perl-install/share/po/pl.po,
+ perl-install/share/po/pt.po, perl-install/share/po/pt_BR.po,
+ perl-install/share/po/ro.po, perl-install/share/po/ru.po,
+ perl-install/share/po/sc.po, perl-install/share/po/sk.po,
+ perl-install/share/po/sl.po, perl-install/share/po/sq.po,
+ perl-install/share/po/sr.po, perl-install/share/po/sr@Latn.po,
+ perl-install/share/po/sv.po, perl-install/share/po/ta.po,
+ perl-install/share/po/tg.po, perl-install/share/po/th.po,
+ perl-install/share/po/tl.po, perl-install/share/po/tr.po,
+ perl-install/share/po/uk.po, perl-install/share/po/uz.po,
+ perl-install/share/po/uz@Latn.po, perl-install/share/po/vi.po,
+ perl-install/share/po/wa.po, perl-install/share/po/zh_CN.po,
+ perl-install/share/po/zh_TW.po: sync with code
+
+2006-03-23 01:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po, perl-install/share/po/fr.po: update
+
+2006-03-23 01:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksambashare: (get_items) resuse an
+ existing string
+
+2006-03-23 00:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/DrakX.pot, perl-install/share/po/af.po,
+ perl-install/share/po/am.po, perl-install/share/po/ar.po,
+ perl-install/share/po/az.po, perl-install/share/po/be.po,
+ perl-install/share/po/bg.po, perl-install/share/po/bn.po,
+ perl-install/share/po/br.po, perl-install/share/po/bs.po,
+ perl-install/share/po/ca.po, perl-install/share/po/cs.po,
+ perl-install/share/po/cy.po, perl-install/share/po/da.po,
+ perl-install/share/po/de.po, perl-install/share/po/el.po,
+ perl-install/share/po/eo.po, perl-install/share/po/es.po,
+ perl-install/share/po/et.po, perl-install/share/po/eu.po,
+ perl-install/share/po/fa.po, perl-install/share/po/fi.po,
+ perl-install/share/po/fr.po, perl-install/share/po/fur.po,
+ perl-install/share/po/ga.po, perl-install/share/po/gl.po,
+ perl-install/share/po/he.po, perl-install/share/po/hi.po,
+ perl-install/share/po/hr.po, perl-install/share/po/hu.po,
+ perl-install/share/po/id.po, perl-install/share/po/is.po,
+ perl-install/share/po/it.po, perl-install/share/po/ja.po,
+ perl-install/share/po/ko.po, perl-install/share/po/ky.po,
+ perl-install/share/po/lt.po, perl-install/share/po/ltg.po,
+ perl-install/share/po/lv.po, perl-install/share/po/mk.po,
+ perl-install/share/po/mn.po, perl-install/share/po/ms.po,
+ perl-install/share/po/mt.po, perl-install/share/po/nb.po,
+ perl-install/share/po/nl.po, perl-install/share/po/nn.po,
+ perl-install/share/po/pa_IN.po, perl-install/share/po/pl.po,
+ perl-install/share/po/pt.po, perl-install/share/po/pt_BR.po,
+ perl-install/share/po/ro.po, perl-install/share/po/ru.po,
+ perl-install/share/po/sc.po, perl-install/share/po/sk.po,
+ perl-install/share/po/sl.po, perl-install/share/po/sq.po,
+ perl-install/share/po/sr.po, perl-install/share/po/sr@Latn.po,
+ perl-install/share/po/sv.po, perl-install/share/po/ta.po,
+ perl-install/share/po/tg.po, perl-install/share/po/th.po,
+ perl-install/share/po/tl.po, perl-install/share/po/tr.po,
+ perl-install/share/po/uk.po, perl-install/share/po/uz.po,
+ perl-install/share/po/uz@Latn.po, perl-install/share/po/vi.po,
+ perl-install/share/po/wa.po, perl-install/share/po/zh_CN.po,
+ perl-install/share/po/zh_TW.po: sync with code
+
+2006-03-23 00:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/help.pm: (doPartitionDisks) typo fix
+
+2006-03-23 00:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/help.pm: (doPartitionDisks) fix encoding
+
+2006-03-23 00:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draknfs,
+ perl-install/standalone/draksambashare: add shortcuts for exit
+
+2006-03-23 00:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draknfs,
+ perl-install/standalone/draksambashare: fix untranslatable
+ strings in menus (reuse some existing strings btw)
+
+2006-03-23 00:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: (remove_fonts) replace a not
+ easy to translate string by another one
+
+2006-03-23 00:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksambashare: always use the same
+ standard verbs on buttons on all three tabs of the
+ notebook (what's more, these buttons could have been quite large
+ when
+ translated)
+
+2006-03-23 00:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksambashare: (add_entry) fix an
+ untranslatable string
+ * perl-install/standalone/draksambashare: always display buttons
+ in the same oder (add/alter/remove) on all
+ three tabs of the notebook
+
+2006-03-23 00:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksambashare: show the same "remove"
+ button on all three tabs of the notebook
+
+2006-03-23 00:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/help.pm: share an existing string
+
+2006-03-23 00:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksambashare: add a comment about
+ strange GUI
+
+2006-03-23 00:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draknfs: perl_checker cleanups (removing
+ unused not translated strings, a model
+ isn't a widget, ...)
+
+2006-03-23 00:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakedm,
+ perl-install/standalone/draknfs,
+ perl-install/standalone/draksambashare: enforce mandriva policy
+ (aka no stock icons)
+
+2006-03-23 00:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draknfs: use standard titles for error
+ messages
+
+2006-03-23 00:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draknfs: fix one more untranslatable
+ entry
+
+2006-03-23 00:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draknfs: use _create_dialog() the proper
+ way
+
+2006-03-23 00:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draknfs: (add_modify_entry)
+ set_resizable(1) is the default
+ * perl-install/standalone/draknfs: fix untranslatable string
+
+2006-03-23 00:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draknfs: (get_user_or_group) simplify
+
+2006-03-22 18:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksambashare: (add_printers_entry)
+ enable to get exit that wizard: by default all
+ printers are already availlable in samba and thus one could
+ neither
+ cancel the wizard nor going forward :-(
+
+2006-03-22 18:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksambashare: fix hiding main window
+ when adding a printer while embedded in MCC
+
+2006-03-22 16:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.14-1mdk
+ * perl-install/share/po/br.po: update
+
+2006-03-22 16:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2006-03-22 16:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/DrakX.pot, perl-install/share/po/af.po,
+ perl-install/share/po/am.po, perl-install/share/po/ar.po,
+ perl-install/share/po/az.po, perl-install/share/po/be.po,
+ perl-install/share/po/bg.po, perl-install/share/po/bn.po,
+ perl-install/share/po/br.po, perl-install/share/po/bs.po,
+ perl-install/share/po/ca.po, perl-install/share/po/cs.po,
+ perl-install/share/po/cy.po, perl-install/share/po/da.po,
+ perl-install/share/po/de.po, perl-install/share/po/el.po,
+ perl-install/share/po/eo.po, perl-install/share/po/es.po,
+ perl-install/share/po/et.po, perl-install/share/po/eu.po,
+ perl-install/share/po/fa.po, perl-install/share/po/fi.po,
+ perl-install/share/po/fr.po, perl-install/share/po/fur.po,
+ perl-install/share/po/ga.po, perl-install/share/po/gl.po,
+ perl-install/share/po/he.po, perl-install/share/po/hi.po,
+ perl-install/share/po/hr.po, perl-install/share/po/hu.po,
+ perl-install/share/po/id.po, perl-install/share/po/is.po,
+ perl-install/share/po/it.po, perl-install/share/po/ja.po,
+ perl-install/share/po/ko.po, perl-install/share/po/ky.po,
+ perl-install/share/po/lt.po, perl-install/share/po/ltg.po,
+ perl-install/share/po/lv.po, perl-install/share/po/mk.po,
+ perl-install/share/po/mn.po, perl-install/share/po/ms.po,
+ perl-install/share/po/mt.po, perl-install/share/po/nb.po,
+ perl-install/share/po/nl.po, perl-install/share/po/nn.po,
+ perl-install/share/po/pa_IN.po, perl-install/share/po/pl.po,
+ perl-install/share/po/pt.po, perl-install/share/po/pt_BR.po,
+ perl-install/share/po/ro.po, perl-install/share/po/ru.po,
+ perl-install/share/po/sc.po, perl-install/share/po/sk.po,
+ perl-install/share/po/sl.po, perl-install/share/po/sq.po,
+ perl-install/share/po/sr.po, perl-install/share/po/sr@Latn.po,
+ perl-install/share/po/sv.po, perl-install/share/po/ta.po,
+ perl-install/share/po/tg.po, perl-install/share/po/th.po,
+ perl-install/share/po/tl.po, perl-install/share/po/tr.po,
+ perl-install/share/po/uk.po, perl-install/share/po/uz.po,
+ perl-install/share/po/uz@Latn.po, perl-install/share/po/vi.po,
+ perl-install/share/po/wa.po, perl-install/share/po/zh_CN.po,
+ perl-install/share/po/zh_TW.po: sync with code
+
+2006-03-22 16:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/scannerdrake: (manual) let's be smarter
+ with translators...
+
+2006-03-22 15:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksambashare: perl_checker cleanups
+
+2006-03-22 15:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksambashare: (get_user) simplify and
+ make it readable
+
+2006-03-22 15:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksambashare: (modify_printers_entry)
+ set_resizable(1) is the default
+ * perl-install/standalone/draksambashare: use _create_dialog() the
+ proper way
+
+2006-03-22 15:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksambashare: fix untranslatable string
+
+2006-03-22 13:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksambashare: fix obvious bug #20295
+
+2006-03-22 12:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: as reported by John Keller, install
+ emacs-nox instead of emacs-X11 when no X
+
+2006-03-21 14:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile: (tar) fix build now that we switched from
+ CVS to SVN
+
+2006-03-21 14:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: fix comment
+ * kernel/list_modules.pm: add new PATA drivers
+
+2006-03-21 13:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: s/10.4.13-1mdk/10.4.12-1mdk/ :
+ 10.4.12-1mdk never was released so
+ let's merge their changelogs
+
+2006-03-21 13:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.14-1mdk
+
+2006-03-21 11:41 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: remove incongruous test
+
+2006-03-21 11:40 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: use lib64 when needed and take binaries from
+ system chroot
+
+2006-03-21 11:02 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: copy libc if needed only
+
+2006-03-21 11:01 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: use nash from system chroot
+
+2006-03-21 10:59 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: always create symlinks for busybox functions
+
+2006-03-21 10:56 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: use busybox to mount NFS with nolock
+
+2006-03-21 10:48 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: use losetup from busybox (it handles read-only
+ fine)
+
+2006-03-21 09:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: don't loop when dmidecode
+ returns only "# No SMBBIOS nor DMI entry point found, sorry."
+ (thanks to pterjan)
+
+2006-03-20 12:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: (appli_choice) properly
+ display the warning (no more spurious carriage return)
+
+2006-03-20 12:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: (license_msg) alter it: return
+ the string, don't print it (let callers do it),
+ thus fixing a layout bug in appli_choice()
+
+2006-03-20 12:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install LyX under KDE and lyx-gtk
+ under other desktops
+ * perl-install/standalone/drakfont: merge 2 strings by reusing
+ common one from standalone.pm
+
+2006-03-20 10:29 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: don't use tls libraries (#21683)
+
+2006-03-20 10:28 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/wa.po: spell checking
+
+2006-03-17 07:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: comment krb5_conf_file and its
+ link with update_gnomekderc
+
+2006-03-16 16:00 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm, perl-install/share/keyboards.tar.bz2:
+ Added two keyboards ("ng" and "mao");
+ renamed various xmodmap files so that they match, when possible,
+ the xkb names used by X11
+
+2006-03-16 12:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: do not install emacs-X11 under KDE
+ and GNOME
+
+2006-03-16 00:06 stewb
+
+ * perl-install/standalone/drakTermServ: Enable TS2/unionfs mode -
+ kernel support is present
+
+2006-03-15 11:58 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: get unionfs-tools from install
+ media
+
+2006-03-15 11:57 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg: don't use local unionfs packages
+ (available in cooker kernel now),
+ urpmi/rpmdrake/mdkonline/drakxtools packages (should be updated
+ in cooker)
+
+2006-03-15 11:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: use engine xine for amarok, no more
+ arts (engine arts removed upstream)
+
+2006-03-15 10:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/security/help.pm, perl-install/share/po/DrakX.pot,
+ perl-install/share/po/af.po, perl-install/share/po/am.po,
+ perl-install/share/po/ar.po, perl-install/share/po/az.po,
+ perl-install/share/po/be.po, perl-install/share/po/bg.po,
+ perl-install/share/po/bn.po, perl-install/share/po/br.po,
+ perl-install/share/po/bs.po, perl-install/share/po/ca.po,
+ perl-install/share/po/cs.po, perl-install/share/po/cy.po,
+ perl-install/share/po/da.po, perl-install/share/po/de.po,
+ perl-install/share/po/el.po, perl-install/share/po/eo.po,
+ perl-install/share/po/es.po, perl-install/share/po/et.po,
+ perl-install/share/po/eu.po, perl-install/share/po/fa.po,
+ perl-install/share/po/fi.po, perl-install/share/po/fr.po,
+ perl-install/share/po/fur.po, perl-install/share/po/ga.po,
+ perl-install/share/po/gl.po, perl-install/share/po/he.po,
+ perl-install/share/po/hi.po, perl-install/share/po/hr.po,
+ perl-install/share/po/hu.po, perl-install/share/po/id.po,
+ perl-install/share/po/is.po, perl-install/share/po/it.po,
+ perl-install/share/po/ja.po, perl-install/share/po/ko.po,
+ perl-install/share/po/ky.po, perl-install/share/po/lt.po,
+ perl-install/share/po/ltg.po, perl-install/share/po/lv.po,
+ perl-install/share/po/mk.po, perl-install/share/po/mn.po,
+ perl-install/share/po/ms.po, perl-install/share/po/mt.po,
+ perl-install/share/po/nb.po, perl-install/share/po/nl.po,
+ perl-install/share/po/nn.po, perl-install/share/po/pa_IN.po,
+ perl-install/share/po/pl.po, perl-install/share/po/pt.po,
+ perl-install/share/po/pt_BR.po, perl-install/share/po/ro.po,
+ perl-install/share/po/ru.po, perl-install/share/po/sc.po,
+ perl-install/share/po/sk.po, perl-install/share/po/sl.po,
+ perl-install/share/po/sq.po, perl-install/share/po/sr.po,
+ perl-install/share/po/sr@Latn.po, perl-install/share/po/sv.po,
+ perl-install/share/po/ta.po, perl-install/share/po/tg.po,
+ perl-install/share/po/th.po, perl-install/share/po/tl.po,
+ perl-install/share/po/tr.po, perl-install/share/po/uk.po,
+ perl-install/share/po/uz.po, perl-install/share/po/uz@Latn.po,
+ perl-install/share/po/vi.po, perl-install/share/po/wa.po,
+ perl-install/share/po/zh_CN.po, perl-install/share/po/zh_TW.po:
+ typo fixes (extra trailling spaces)
+
+2006-03-15 10:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+ * perl-install/share/po/br.po, perl-install/share/po/cy.po,
+ perl-install/share/po/ga.po: typo fixes
+
+2006-03-14 19:01 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg: fix spaces
+
+2006-03-14 18:55 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg: don't set default kernel, it's
+ automatic now
+
+2006-03-14 18:54 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: log kernel version
+
+2006-03-14 18:53 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: automatically find a default kernel if not
+ specified
+
+2006-03-14 18:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.13-1mdk
+
+2006-03-14 18:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: insteall modern pcmciautils instead
+ of deprecated pcmcia-cs since we
+ now have a 2.6.13+ kernel
+
+2006-03-14 18:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: try harder to have kate installed
+ under KDE (rather than eg emacs...)
+
+2006-03-14 17:46 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install: add comment
+
+2006-03-14 17:45 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install: hack to show the window
+ centered (useful if run in xsetup.d script)
+
+2006-03-14 16:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: handle new shasta driver
+
+2006-03-14 16:20 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/local_cfg: remove 2006.0 references, use cooker
+ as example
+
+2006-03-14 16:13 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/cy.po: updated Welsh po file
+
+2006-03-14 15:56 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: hardware categories should now
+ be automatically selected if build_live_system is set
+
+2006-03-14 15:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_any.pm: automatically install multimedia
+ categories for live systems
+
+2006-03-14 15:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_any.pm: automatically select
+ BURNER/DVD/PCMCIA/3D for live systems
+
+2006-03-14 15:39 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/live.cfg, live/One/config/patch-2006-live.pl:
+ remove install patch, should be in cooker installer now
+
+2006-03-14 15:38 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/config/auto_inst.cfg.pl: add useful auto_install
+ settings
+
+2006-03-14 15:17 Olivier Blin <oblin at mandriva.com>
+
+ * live/One, live/One_2006.0: move all One stuff to the One
+ top-directory
+
+2006-03-14 15:16 Olivier Blin <oblin at mandriva.com>
+
+ * live/One: remove duplicate files (my move became a copy)
+
+2006-03-14 15:15 Olivier Blin <oblin at mandriva.com>
+
+ * live/One_2006.0: prepare restructuration for branching
+
+2006-03-14 14:53 Pixel <pixel at mandriva.com>
+
+ * docs/README: switch to SVN
+
+2006-03-14 14:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: simplify, these types are
+ already filtered out by is_useful_interface()
+
+2006-03-14 14:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: move comments to a more
+ appropriate place
+
+2006-03-14 14:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm,
+ perl-install/network/ethernet.pm: rename getNet as
+ get_lan_interfaces
+
+2006-03-14 14:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: use passive form
+
+2006-03-14 14:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: s/StarOffice/OpenOffice.org/
+ (the former has died long ago)
+
+2006-03-14 14:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: map unconfigured interfaces
+ to their shorewall name as well
+
+2006-03-14 14:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: typo fixes (missing/extra ending
+ spaces, ":", "...", "!", ...).
+ if the translator does need to fix a string (eg ":" in VF
+ instead of "." in VO,
+ then the english should be fixed instead)
+
+2006-03-14 14:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: try to use all undetected net
+ interfaces, not only LAN
+
+2006-03-14 14:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm,
+ perl-install/share/po/DrakX.pot, perl-install/share/po/af.po,
+ perl-install/share/po/am.po, perl-install/share/po/ar.po,
+ perl-install/share/po/az.po, perl-install/share/po/be.po,
+ perl-install/share/po/bg.po, perl-install/share/po/bn.po,
+ perl-install/share/po/br.po, perl-install/share/po/bs.po,
+ perl-install/share/po/ca.po, perl-install/share/po/cs.po,
+ perl-install/share/po/cy.po, perl-install/share/po/da.po,
+ perl-install/share/po/de.po, perl-install/share/po/el.po,
+ perl-install/share/po/eo.po, perl-install/share/po/es.po,
+ perl-install/share/po/et.po, perl-install/share/po/eu.po,
+ perl-install/share/po/fa.po, perl-install/share/po/fi.po,
+ perl-install/share/po/fr.po, perl-install/share/po/fur.po,
+ perl-install/share/po/ga.po, perl-install/share/po/gl.po,
+ perl-install/share/po/he.po, perl-install/share/po/hi.po,
+ perl-install/share/po/hr.po, perl-install/share/po/hu.po,
+ perl-install/share/po/id.po, perl-install/share/po/is.po,
+ perl-install/share/po/it.po, perl-install/share/po/ko.po,
+ perl-install/share/po/ky.po, perl-install/share/po/lt.po,
+ perl-install/share/po/ltg.po, perl-install/share/po/lv.po,
+ perl-install/share/po/mk.po, perl-install/share/po/mn.po,
+ perl-install/share/po/ms.po, perl-install/share/po/mt.po,
+ perl-install/share/po/nb.po, perl-install/share/po/nl.po,
+ perl-install/share/po/nn.po, perl-install/share/po/pa_IN.po,
+ perl-install/share/po/pl.po, perl-install/share/po/pt.po,
+ perl-install/share/po/pt_BR.po, perl-install/share/po/ro.po,
+ perl-install/share/po/ru.po, perl-install/share/po/sc.po,
+ perl-install/share/po/sk.po, perl-install/share/po/sl.po,
+ perl-install/share/po/sq.po, perl-install/share/po/sr.po,
+ perl-install/share/po/sr@Latn.po, perl-install/share/po/sv.po,
+ perl-install/share/po/ta.po, perl-install/share/po/tg.po,
+ perl-install/share/po/th.po, perl-install/share/po/tl.po,
+ perl-install/share/po/tr.po, perl-install/share/po/uk.po,
+ perl-install/share/po/uz.po, perl-install/share/po/uz@Latn.po,
+ perl-install/share/po/vi.po, perl-install/share/po/wa.po: make a
+ string looks more consistent, thus making the GUI more sensible
+ (anyway
+ half the translators already "fixed" that bug in their
+ translation by adding
+ the missing ending point.
+
+ we might prefer a ":" here though.
+
+2006-03-14 14:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: show the firewall
+ step in summary for dsl/ppp/isdn connections as well
+
+2006-03-14 14:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/modules.pm: remove unsynchronized network modules
+ hacks, we already set aliases when needed
+
+2006-03-14 14:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_any.pm: force USB category selection for
+ live systems
+
+2006-03-14 13:56 Pixel <pixel at mandriva.com>
+
+ * mdv/soft, soft: well, mdv contains packages, so use /soft
+
+2006-03-14 13:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: simplify
+ using modules::probe_category
+
+2006-03-14 13:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install2.pm: allow to pass
+ langs to the installer
+ * perl-install/install2.pm,
+ perl-install/install_steps.pm: notify
+ deploy server before the real exitInstall step is call, in case
+ autoExitInstall is defined
+
+2006-03-13 18:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/ga.po: update
+
+2006-03-13 16:37 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: don't vivify regions array
+
+2006-03-13 15:25 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/: config/live.cfg, files/finish-install,
+ files/firstboot, files/kbluetoothdrc: move One specific stuff in
+ additional files
+
+2006-03-13 15:24 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: remove One specific stuff
+
+2006-03-13 15:17 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/: config/live.cfg, files/halt.local: eject cd
+ media before halt/reboot
+
+2006-03-13 15:16 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: force perms
+
+2006-03-13 15:16 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: change system files option semantics (copy one
+ file only, but allow to set its permissions)
+
+2006-03-13 15:07 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: fix indentation
+
+2006-03-13 15:05 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: add shebang
+
+2006-03-13 14:34 Warly <warly at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: new urpmi and gurpmi
+
+2006-03-13 13:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: AGP devices must be detected
+ prior to video cards because some DRM drivers doesn't like be
+ loaded after agpgart thus order in /etc/modprobe.preload is
+ important (modules.pm should enforce such sorting)
+
+2006-03-13 13:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: add a hint for translators
+
+2006-03-13 13:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: try being smarter for
+ translators...
+
+2006-03-13 13:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2006-03-13 12:23 Pixel <pixel at mandriva.com>
+
+ * Makefile: .dia files should be -kb
+
+2006-03-13 11:04 Sergey Ribalchenko <fisher at obu.ck.ua>
+
+ * live/draklive-install/po/uk.po: uk tr-tion update
+
+2006-03-13 10:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: call expand_entry_symlinks() before
+ comparing with same_entries() (bugzilla #21566)
+
+2006-03-11 04:47 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2006-03-10 20:12 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/c/smp-dmi.c: Better (and fix) SMP detection, aka.
+ also check for populated & enabled CPU socket.
+
+2006-03-10 19:17 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/list_modules.pm: add sata_nv
+
+2006-03-10 16:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/harddrake/autoconf.pm: enable/start pcmcia service
+ if needed
+
+2006-03-10 16:13 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: disable pcmcia service at live
+ boot
+
+2006-03-10 16:12 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/harddrake/autoconf.pm: enable/start pcmcia service
+ if needed
+
+2006-03-10 12:37 Pixel <pixel at mandriva.com>
+
+ * tools/ppc/README: document how mkcd must be patched
+
+2006-03-10 12:36 Pixel <pixel at mandriva.com>
+
+ * tools/ppc/mapping: modif needed to build ppc isos (10.1 and 10.2,
+ though this is only committed now)
+
+ anyway, should be moved to mkcd
+
+2006-03-10 12:32 Pixel <pixel at mandriva.com>
+
+ * tools/ppc/yaboot: now taken from /usr/lib/yaboot/yaboot (from pkg
+ yaboot)
+
+2006-03-10 12:31 Pixel <pixel at mandriva.com>
+
+ * tools/ppc/mkINSTALLCD: mkcd should be used instead
+
+2006-03-10 12:30 Pixel <pixel at mandriva.com>
+
+ * tools/ppc/: mkhybrid-1.12b5.4, mkhybrid-1.12b5.4-x86: mkisofs can
+ do the job now
+
+2006-03-09 23:35 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * live/draklive-install/po/nl.po: * March 09 2006 Reinout van
+ Schouwen <reinout@cs.vu.nl>
+
+ nl.po: Updated Dutch translation of draklive-install
+
+2006-03-09 21:07 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: old XKB layouts no longer used
+
+2006-03-09 19:53 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: wait some seconds for the usb-stor-scan process
+ to be run
+
+2006-03-09 19:37 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: don't override programs we copy in initrd by
+ their busybox implementation
+
+2006-03-09 19:07 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: allow to run syslinux without the "slow, safe,
+ stupid" workaround (using the "fast_syslinux" key in media hash)
+
+2006-03-09 18:47 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po file
+
+2006-03-09 18:10 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/auto_inst.cfg.pl: add ppp-pppoatm (for
+ speedtouch modems)
+
+2006-03-09 16:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: use "Active interfaces" menu
+ label for network interfaces list, and use checkboxes instead of
+ radio buttons (#18636)
+
+2006-03-09 16:30 Pixel <pixel at mandriva.com>
+
+ * tools/ppc/Xpmac: Xpmac is no more used
+
+2006-03-09 16:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: one more change in drakboot
+
+2006-03-09 16:21 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/list_modules.pm: add mptsas (ldetect-lst >= 0.1.114.2)
+
+2006-03-09 16:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.12-1mdk
+
+2006-03-09 16:02 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * docs/HACKING: add missing packages
+
+2006-03-09 15:31 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install: fix typo
+
+2006-03-09 15:01 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: adapt to grub files in /lib/grub/*/
+
+2006-03-09 14:26 Pixel <pixel at mandriva.com>
+
+ * live/draklive-install/theme/: IC-installone-128.png,
+ IC-installone-16.png, IC-installone-24.png, IC-installone-32.png,
+ IC-installone-48.png, IC-installone-64.png: re-adding with -kb
+
+2006-03-09 14:26 Pixel <pixel at mandriva.com>
+
+ * live/draklive-install/theme/: IC-installone-128.png,
+ IC-installone-16.png, IC-installone-24.png, IC-installone-32.png,
+ IC-installone-48.png, IC-installone-64.png, IM-INSTALLCDONE.png:
+ removing for re-adding with -kb
+
+2006-03-09 14:24 Warly <warly at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: now use mdkonline-2.0-2mdk
+
+2006-03-09 10:59 Pixel <pixel at mandriva.com>
+
+ * globetrotter/make_live: adapt to DOCS -> CAT_MINIMAL_DOCS switch
+
+2006-03-09 09:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: as suggested in bug #21524, display the info
+ on hard drives in the "boot device" choice
+
+2006-03-08 20:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: automatically put ppp/ippp
+ interfaces in local zone if needed (backport from HEAD)
+
+2006-03-08 20:19 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: fix typo, slmodem service is
+ named slmodemd
+
+2006-03-08 20:02 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: don't uselessly sleep for 15 seconds waiting for
+ usb-storage scan in initrd
+
+2006-03-08 18:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: automatically put ppp/ippp
+ interfaces in local zone if needed
+
+2006-03-08 17:26 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/harddrake/: autoconf.pm: fix typo
+
+2006-03-08 17:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: timezone.pm, standalone/finish-install: reload sys
+ clock from hc once we know the real timezone (#21511)
+
+2006-03-08 17:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/harddrake/autoconf.pm: enable kbluetoothd if
+ bluetooth is detected
+
+2006-03-08 16:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/harddrake/autoconf.pm: enable kbluetoothd if
+ bluetooth is detected
+
+2006-03-08 16:37 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: add fixme
+
+2006-03-08 16:35 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: don't start kbluetooth by default
+
+2006-03-08 16:03 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: don't include a320raid module
+
+2006-03-08 15:59 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install: enable first boot wizard
+ at system boot
+
+2006-03-08 15:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/list.xml: no more xpms in pixmaps/
+
+2006-03-08 14:55 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: adjust comments
+
+2006-03-08 13:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: this is redundant with: grep {
+ modules::probe_category("multimedia/$_") }
+ modules::sub_categories('multimedia')
+
+2006-03-08 13:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps_interactive.pm,
+ share/rpmsrate: - rename DOCS to CAT_MINIMAL_DOCS - cuz
+ otherwise DOCS is a "always" flag and modifying it afterwise is
+ useless - CAT_DOCS would be not precise enough - simplify the
+ "changed" callback
+
+2006-03-08 12:32 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install: enable back dkms service
+
+2006-03-08 12:28 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: disable dkms during live boot
+
+2006-03-08 12:26 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: disable bluetooth and laptop
+ specific services, they'll be enabled by harddrake if needed
+
+2006-03-08 12:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: properly handle switch between
+ nvidia & nvidia_legacy (backport from HEAD)
+
+2006-03-07 20:55 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po file
+
+2006-03-07 20:16 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: fix comment
+
+2006-03-07 20:16 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: don't check signatures when installing additional
+ packages, it's tricky because of media mix
+
+2006-03-07 20:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/devices.pm: add some useful devices for live systems
+ build (backport from HEAD, useful to build One right from 2006.0)
+
+2006-03-07 19:45 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/share/po/is.po: Small changes
+
+2006-03-07 19:26 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: add all additional media first, there may be some
+ interaction between them, and allow additional rpms to pull
+ dependencies from additional media
+
+2006-03-07 19:25 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: don't explicitely require
+ libstdc++5
+
+2006-03-07 19:24 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: add xmoto
+
+2006-03-07 19:24 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: name additionnal media
+
+2006-03-07 18:45 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/: config/live.cfg, patches/Cards+.legacy.patch:
+ use nvidia legacy driver for GeForce3/4 (forget about
+ acceleration for FX/6800 series)
+
+2006-03-07 18:37 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: add RealPlayer and its plugins
+
+2006-03-07 18:20 Warly <warly at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: last mdkonline is now 1mdk
+
+2006-03-07 16:31 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: libstdc++5 is required for ati
+ drivers
+
+2006-03-07 16:27 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/patch-2006-live.pl: don't create
+ (potentially broken) ld.so.conf.d files for X drivers
+
+2006-03-07 16:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: backport libgl_config fixes (a bit
+ late since already in drakxtools changelog since november...): -
+ handle nvidia_legacy - don't create broken ld.so.conf.d files
+ (and thus don't run ldconfig when not needed)
+
+2006-03-07 14:39 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: cy.po, wa.po: updated Welsh and Walloon
+ files
+
+2006-03-07 14:19 berthy
+
+ * perl-install/share/po/fr.po: Update french translation
+
+2006-03-07 12:40 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: add hack to use supplementary media
+
+2006-03-07 12:39 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: die if additionnal system rpms can't be installed
+
+2006-03-07 12:38 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: allow to add langs whatever the region
+
+2006-03-07 12:36 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: always add en_US lang
+
+2006-03-07 12:35 Pablo Saratxaga <pablo at mandriva.com>
+
+ * live/draklive-install/po/cy.po: updated po file
+
+2006-03-07 12:32 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/local_cfg: list BUILD_CDCOM setting
+
+2006-03-07 12:25 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: use commercial packages if
+ BUILD_CDCOM is true
+
+2006-03-07 12:20 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: space fixes
+
+2006-03-07 12:16 Warly <warly at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: add new rpms for bundles and
+ rename occident in americas_western_europe
+
+2006-03-07 11:33 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po:
+ Fixed errors due to not checking files on previous commit...
+
+2006-03-07 11:06 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/share/po/is.po: Latest sync
+
+2006-03-07 10:18 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * live/draklive-install/po/is.po, perl-install/share/po/is.po:
+ Latest sync
+
+2006-03-06 21:35 Wanderlei Antonio Cavassin <cavassin at mandriva.com>
+
+ * perl-install/share/po/pt_BR.po: Small fixes for pt_BR.
+
+2006-03-06 18:42 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/rpmsrate: do not pull gftp for non-X
+ installs to please Pixel (even if One is not likely to run
+ without X)
+
+2006-03-06 18:09 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/rpmsrate: use gftp for KDE as well (kbear
+ crashes, #17297)
+
+2006-03-06 15:42 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install: fix broken newline
+
+2006-03-06 11:40 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/autosetupprintqueues: - Fixed
+ Plug'n'Print: Name of user logged in on the desktop is in
+ /var/run/console/console.lock now.
+
+2006-03-05 20:56 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: add md5sum to ISO header using mkdcd
+
+2006-03-05 20:55 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: simplify
+
+2006-03-05 20:37 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: bump draklive-install version
+
+2006-03-05 20:35 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install.spec: 0.1-6mdk
+
+2006-03-05 20:34 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install: allow to use grub as a
+ bootloader (#21318, fix typo)
+
+2006-03-05 19:45 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates soft/control-center/po/da.po
+ soft/initscripts/po/da.po soft/mdkonline/po/da.po
+ soft/urpmi/po/da.po gi/perl-install/share/po/da.po
+
+2006-03-05 15:41 Marek Laane <bald at starman.ee>
+
+ * live/draklive-install/po/et.po, perl-install/share/po/et.po:
+ Updated Estonian translations.
+
+2006-03-05 12:29 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/: DrakX.pot, af.po, am.po, ar.po, az.po,
+ be.po, bg.po, bn.po, br.po, bs.po, ca.po, cs.po, cy.po, da.po,
+ de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po,
+ fur.po, ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po, is.po,
+ it.po, ja.po, ko.po, ky.po, lt.po, ltg.po, lv.po, mk.po, mn.po,
+ ms.po, mt.po, nb.po, nl.po, nn.po, pa_IN.po, pl.po, pt.po,
+ pt_BR.po, ro.po, ru.po, sc.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tl.po, tr.po, uk.po,
+ uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: Updated POT
+ file.
+
+2006-03-05 08:35 Warly <warly at mandriva.com>
+
+ * live/One/2006.0/config/auto_inst.cfg.pl: patch to release name
+ must be applied to /etc/mandriva-release
+
+2006-03-04 19:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: any.pm: enable acpi/acpid services when needed,
+ disable them otherwise (#21316)
+
+2006-03-04 18:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/diskdrake/: resize_ntfs.pm: check for ntfsresize in
+ real root first
+
+2006-03-04 17:36 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/: auto_inst.cfg.pl, live.cfg: install acpi
+ and acpid, but don't enable them by default, drakboot will take
+ care of that
+
+2006-03-04 03:53 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po file
+
+2006-03-03 23:14 Wanderlei Antonio Cavassin <cavassin at mandriva.com>
+
+ * perl-install/share/po/pt_BR.po: pt_BR 100% translated again ;)
+
+2006-03-03 21:03 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: make mount know about / in rc.sysinit
+
+2006-03-03 20:48 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: clean /etc/mdadm.conf as well
+
+2006-03-03 19:36 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/list_modules.pm: add megaide & a320raid
+
+2006-03-03 18:52 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/: rpmsrate, rpmsrate.corpo-desktop,
+ rpmsrate.corpo-server: - add a320raid & megaide entries - install
+ icewm to handle the background image (-light version doesn't
+ handle png)
+
+2006-03-03 18:51 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/patches/lp.script.start.patch: check for cups
+ status before running it
+
+2006-03-03 18:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: harddrake/autoconf.pm, harddrake/data.pm,
+ standalone/service_harddrake: backport laptop/bluetooth/firewire
+ autoconf fixes/features from HEAD
+
+2006-03-03 18:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/harddrake/autoconf.pm: disable numlock on laptops
+
+2006-03-03 18:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: harddrake/autoconf.pm,
+ standalone/service_harddrake: autoconf laptop services when
+ switching between laptop and desktop
+
+2006-03-03 18:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: keep
+ $hw_sysconfdir/kernel settings in a hash
+
+2006-03-03 18:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: harddrake/autoconf.pm,
+ standalone/service_harddrake, harddrake/data.pm: autoconf
+ bluetooth controllers (enable bluetooth service)
+
+2006-03-03 18:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: write modules_conf
+ when a firewire controller is detected
+
+2006-03-03 18:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: really detect firewire
+ controllers (fix typo)
+
+2006-03-03 17:07 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/patches/lp.script.start.patch: space fixes
+
+2006-03-03 16:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/pxe.pm: simplify (and please perl_checker)
+
+2006-03-03 16:20 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/: config/live.cfg, patches/lp.script.start.patch:
+ automatically enable CUPS when a printer is detected
+
+2006-03-03 16:19 Pixel <pixel at mandriva.com>
+
+ * docs/: 9.0_errata.txt, 9.1_errata.txt, BUGS, TODO,
+ diskdrake.TODO, draknet_advanced_doc.txt, mdk-9.2, porting-ugtk,
+ spec-DrakX-8.0.html: remove obsolete docs
+
+2006-03-03 16:01 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/auto_inst.cfg.pl: install rp-pppoe
+ (required for Ethernet modems)
+
+2006-03-03 16:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/: Makefile.config, Makefile.drakxtools,
+ detect_devices.pm, c/Makefile.PL, c/sbus.c, c/silo.c,
+ c/stuff.xs.pl: remove unused silo&sbus&prom stuff (was for sparc,
+ but untouched for more than 5 years and must be broken
+
+2006-03-03 15:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/po/pt_BR.po: remove "Teclado" prefix in pt_BR
+ translation (Till, #21265)
+
+2006-03-03 15:46 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/auto_inst.cfg.pl: add ethtool (so that
+ sagem ethernet interfaces are not ifuped)
+
+2006-03-03 15:32 Wanderlei Antonio Cavassin <cavassin at mandriva.com>
+
+ * live/draklive-install/po/pt_BR.po: Better translation for reboot
+ msg.
+
+2006-03-03 14:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/pixmaps/ic82-systemeplus-40.png: many ic82-* are
+ still used (mostly by drakbackup), but this one is unused
+
+2006-03-03 14:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/pixmaps/: stock_cancel.xpm, stock_exit.xpm,
+ stock_left.xpm, stock_ok.xpm, stock_right.xpm: remove obsolete
+ unused
+
+2006-03-03 14:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/pixmaps/slpash-drakeprint-2.png: remove unused (and
+ mispelled)
+
+2006-03-03 14:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/: makedev.sh, verify_modules.pl: remove
+ obsolete unused stuff
+
+2006-03-03 14:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: buildrequire rpm-devel no more
+ needed (since stuff.xs doesn't use rpmlib directly)
+
+2006-03-03 14:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: no need to open something special since
+ log is done on stderr when testing
+
+2006-03-03 14:15 Pixel <pixel at mandriva.com>
+
+ * tools/: 2adsldb.pm, 2isdndb.pm, closurepkgs, gencompss,
+ genmodparm, syncrpms, i386/e2fsck.shared, i386/mkreiserfs,
+ i386/sh, ia64/e2fsck.shared, ppc/e2fsck.shared: remove obsolete
+ unused stuff
+
+2006-03-03 14:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/Makefile.config: remove unused var VERSION
+
+2006-03-03 13:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/commands.pm: use lchown instead of chown (otherwise
+ pbs on broken symlinks)
+
+2006-03-03 12:34 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install.desktop: use shorter
+ desktop name
+
+2006-03-03 10:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * live/draklive-install/po/ja.po: update (Yukiko BANDO)
+
+2006-03-03 01:16 Funda Wang <fundawang at linux.net.cn>
+
+ * live/draklive-install/po/zh_CN.po: Updated Simplified Chinese
+ translation.
+
+2006-03-02 19:01 Pixel <pixel at mandriva.com>
+
+ * docs/README: update auto_install doc url
+
+2006-03-02 18:14 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/patches/rpmdrake.base.patch: remove rpmdrake
+ patch, included in rpmdrake package (2006.0 community)
+
+2006-03-02 18:10 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: remove rpmdrake patch, included
+ in rpmdrake package
+
+2006-03-02 17:51 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/rpmsrate: don't install kat by default
+
+2006-03-02 17:43 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/rpmsrate: add kdegraphics-kpdf
+
+2006-03-02 16:40 Warly <warly at mandriva.com>
+
+ * live/One/2006.0/config/auto_inst.cfg.pl: doble backquote ( for
+ perl -pi -e
+
+2006-03-02 14:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: typo fixes
+
+2006-03-02 12:34 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: try to preserve mode when copying files
+
+2006-03-02 12:00 Warly <warly at mandriva.com>
+
+ * live/One/2006.0/config/auto_inst.cfg.pl: rename release to
+ Official
+
+2006-03-02 08:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: adapt to lsb split
+
+2006-03-02 08:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: don't have nscd twice with different
+ rate
+
+2006-03-02 08:08 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po file
+
+2006-03-01 22:52 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: create index files for
+ direct-to-tape too clean up some issues with direct-to-tape that
+ came with the star additions compress the index files
+
+2006-03-01 18:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: handle cpia2 camera driver
+
+2006-03-01 18:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/v4l.pm: update model & tuner lists
+
+2006-03-01 18:44 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: really fix permissions for kbluetooth conf files
+
+2006-03-01 16:49 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: load usb-storage and sleep a "small" bit to be
+ able to boot from USB CD-Rom drives
+
+2006-03-01 16:38 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/patches/rpmdrake.base.patch: fix typo
+
+2006-03-01 16:33 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install: allow to install doc in
+ disk install
+
+2006-03-01 16:10 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: move ide-generic to end of loaded modules
+
+2006-03-01 16:04 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install: don't ask timezone
+ settings
+
+2006-03-01 14:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: update shorewall
+ interfaces list when a new interface is detected (#21252)
+
+2006-03-01 14:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: use
+ network::shorewall::update_interfaces_list()
+
+2006-03-01 14:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: add update_interfaces_list
+
+2006-03-01 12:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: update shorewall
+ interfaces list when a new interface is detected (#21252)
+
+2006-03-01 12:40 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: clean /etc/iftab and /etc/shorewall/interfaces
+
+2006-03-01 12:03 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/patch-2006-live.pl: don't start/stop the
+ tmdns service during install
+
+2006-03-01 11:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: network.pm: don't start/stop the tmdns
+ service during install
+
+2006-02-28 18:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/: finish-install: ask license after
+ language (#21266)
+
+2006-02-28 18:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/: finish-install: ask for timezone
+ (#21271)
+
+2006-02-28 17:58 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: unblacklist mozilla-firefox-br
+
+2006-02-28 17:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/any.pm: symlink old home directory to new one when
+ renaming user (backport from HEAD, #21384)
+
+2006-02-28 17:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/any.pm: fix indentation
+
+2006-02-28 17:50 Pixel <pixel at mandriva.com>
+
+ * rescue/make_rescue_img: remove debug code
+
+2006-02-28 17:49 Pixel <pixel at mandriva.com>
+
+ * rescue/make_rescue_img: handle BOX=... on cmdline
+
+2006-02-28 17:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/any.pm: symlink old home directory to new one when
+ renaming user (#21384)
+
+2006-02-28 17:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/any.pm: remove spurious comma
+
+2006-02-28 17:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: (load_category) load ide-generic for
+ disk/ide (this is a working fallback for quite a lot of machines)
+
+2006-02-28 17:17 Pixel <pixel at mandriva.com>
+
+ * rescue/make_rescue_img: simplify (since partimage_whole_disk
+ rest_all doesn't handle multi dirs anymore)
+
+2006-02-28 17:12 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install: don't remove mdk-folders
+ anymore, we'll try to fix the /home/guest files issue
+
+2006-02-28 17:11 Pixel <pixel at mandriva.com>
+
+ * rescue/partimage_whole_disk: multiple dirs is not handled
+ anymore, correct the usage
+
+2006-02-28 17:03 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/install_interactive.pm: remove
+ diagnostics/strict warnings
+
+2006-02-28 15:20 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/: config/live.cfg, patches/rpmdrake.base.patch:
+ patch rpmdrake to be able to add base distro media (#21307)
+
+2006-02-28 15:10 Antoine Ginies <aginies at mandriva.com>
+
+ * mdk-stage1/ka.c: fix path to ka-d-client and typo in tar
+ parameter
+
+2006-02-28 14:58 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install: don't ask whether to
+ Move/Hide old files (#21366)
+
+2006-02-28 14:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/diskdrake/: interactive.pm: (need_migration) fix
+ untranslated messages (#21326)
+
+2006-02-28 13:56 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/list_modules.pm: ide-generic is necessary for some CD
+ drives
+
+2006-02-27 21:18 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/auto_inst.cfg.pl: remove useless ISDN
+ network configuration file
+
+2006-02-27 21:15 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: don't remove mandriva-theme
+
+2006-02-27 20:13 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: disable services that slow down
+ boot
+
+2006-02-27 20:13 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: allow to disable services
+
+2006-02-27 19:18 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: bump requirements
+
+2006-02-27 17:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/printer/data.pm: use versionned binary to check for
+ gutenprint-ijs (useful if docs are excluded, like in Mandriva
+ One, #21269)
+
+2006-02-27 17:05 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/auto_inst.cfg.pl: try not to run kat a
+ second time when running kde apps as root (#21308)
+
+2006-02-27 17:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/bootsplash.pm: don't prepend $::prefix on module
+ load, but when the path is actually used (backport from HEAD)
+
+2006-02-27 16:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: try ide-generic at end
+
+2006-02-27 16:33 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: fix typo
+
+2006-02-27 16:12 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: remove mozilla-br, it makes
+ breton become the fallback language (#21291)
+
+2006-02-27 15:28 Pixel <pixel at mandriva.com>
+
+ * docs/README: adapt to new cvs web url
+
+2006-02-27 15:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: backported from TRUNK
+ for Mandriva One - fix adding storage controllers: set
+ scsi_hostadapter like DrakX does instead of trying preloading
+ the driver - manage hardware_raid class too
+
+2006-02-27 14:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: fix matching some devices (we really
+ are looking at drivers here, not devices' description)
+
+2006-02-27 13:24 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: simplify
+
+2006-02-27 13:21 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: run harddrake because a crappy snd-usb-audio
+ workaround may do something at shutdown (#21329)
+
+2006-02-27 12:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * live/draklive-install/po/br.po, perl-install/share/po/br.po:
+ update
+
+2006-02-27 11:16 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * live/draklive-install/po/id.po: Updated
+
+2006-02-26 09:02 Shiva Huang <blueshiva at giga.net.tw>
+
+ * live/draklive-install/po/zh_TW.po: updated po file
+
+2006-02-25 16:08 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po file
+
+2006-02-25 13:13 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/auto_inst.cfg.pl: include zcip and tmdns
+ (#21305)
+
+2006-02-24 23:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: handle new ipw3945 intel wireless driver
+
+2006-02-24 23:29 Till Kamppeter <till at mandriva.com>
+
+ * live/draklive-install/po/de.po: Small improvement.
+
+2006-02-24 23:22 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/po/de.po: update de translation (from
+ Wolfgang Bornath)
+
+2006-02-24 19:22 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: remove /etc/modprobe.conf and
+ /etc/modprobe.preload build-machine specific stuff
+
+2006-02-24 19:15 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: load disk/ide as well (Titi)
+
+2006-02-24 18:01 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/: ChangeLog, draklive-install.spec:
+ 0.1-4mdk
+
+2006-02-24 18:00 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/: draklive-install.spec,
+ theme/IM-INSTALLCDONE.png, theme/IM-INSTALLCDONE2.png: use a
+ smaller welcome image
+
+2006-02-24 17:50 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install: make sure the cancel
+ button is available in this pseudo-drakboot-boot
+
+2006-02-24 17:11 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install: set prefix at beginning,
+ since fs::format::check_package_is_installed() is now fixed
+
+2006-02-24 16:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/fs/format.pm: ensure_binary_is_installed checks
+ binary chrooted, whereas we run the binary non-chrooted (backport
+ from HEAD)
+
+2006-02-24 16:28 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/: draklive-install, install_interactive.pm:
+ split partitionWizard_ask out of partitionWizard and use it (i.e.
+ make the wizard really die when it is cancelled)
+
+2006-02-24 16:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/format.pm: ensure_binary_is_installed checks
+ binary chrooted, whereas we run the binary non-chrooted (pb for
+ Mandriva One)
+
+2006-02-24 16:09 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/: config/live.cfg, files/defaultspooler: use cups
+ as defaultspooler (and don't prompt user with an annoying
+ message)
+
+2006-02-24 13:22 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: copy kside image
+
+2006-02-24 13:22 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: allow to copy files in system chroot
+
+2006-02-24 13:21 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/files/kside238-ONE.png: add kside image
+
+2006-02-24 13:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: timezone.pm: oops, fix timezone listing (thanks
+ Pixel)
+
+2006-02-24 12:41 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install.spec: 0.1-3mdk
+
+2006-02-24 12:41 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install.spec: use correct size for
+ small icon
+
+2006-02-24 12:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/timezone.pm: use -noleaf option when finding
+ timezones (useful over unionfs, backport for #21272)
+
+2006-02-24 12:36 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/auto_inst.cfg.pl: install ntp (#21287)
+
+2006-02-24 12:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/timezone.pm: use -noleaf option when finding
+ timezones (useful over unionfs, #21272)
+
+2006-02-24 01:45 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/auto_inst.cfg.pl: really change META_CLASS
+ in postInstall
+
+2006-02-23 19:50 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install.spec: complete changelog
+
+2006-02-23 19:50 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install: set prefix after
+ partitionWizard, so that partition tools don't fail to find fs
+ tools (#21260)
+
+2006-02-23 19:33 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: use draklive-install-0.1-2mdk
+
+2006-02-23 19:33 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install.spec: 0.1-2mdk
+
+2006-02-23 19:19 Till Kamppeter <till at mandriva.com>
+
+ * live/draklive-install/po/pt_BR.po: Added missing translations.
+
+2006-02-23 17:10 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/auto_inst.cfg.pl: comment this brilliant
+ fix
+
+2006-02-23 17:08 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/auto_inst.cfg.pl: add
+ printerdrake/scannerdrake related packages
+
+2006-02-23 17:05 Pablo Saratxaga <pablo at mandriva.com>
+
+ * live/draklive-install/po/: es.po, fr.po, lt.po, wa.po: small
+ fixes and updates
+
+2006-02-23 16:52 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/local_cfg: initial import
+
+2006-02-23 16:52 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: use local config file
+
+2006-02-23 16:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/bootsplash.pm: check for correct themes path
+
+2006-02-23 16:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/bootsplash.pm: don't prepend $::prefix on module
+ load, but when the path is actually used
+
+2006-02-23 16:19 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: look for bootsplash config in live chroot, and
+ try to find a '800x600' resolution
+
+2006-02-23 16:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/bootsplash.pm: fix typo
+
+2006-02-23 16:03 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: add information message about splash image
+
+2006-02-23 15:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/any.pm: remove untested patch
+
+2006-02-23 15:25 Warly <warly at mandriva.com>
+
+ * live/One/2006.0/config/auto_inst.cfg.pl: replace meta_class by
+ one
+
+2006-02-23 15:24 Warly <warly at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: remove post initrd stupid
+ meta_class change
+
+2006-02-23 15:21 Warly <warly at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: replace meta_class by one
+
+2006-02-23 15:07 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: live-install is now named
+ draklive-install
+
+2006-02-23 15:07 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/live.cfg: space fix
+
+2006-02-23 14:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/any.pm: use groupmod to change group when renaming a
+ user
+
+2006-02-23 14:51 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install: remove .mdk-folders since
+ the path may be broken
+
+2006-02-23 14:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/any.pm: use groupmod to change group when renaming a
+ user
+
+2006-02-23 14:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/any.pm: don't show release notes after install (not
+ handled yet)
+
+2006-02-23 13:59 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/po/Makefile: don't erase the pot file in
+ clean
+
+2006-02-23 13:58 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install: use translated strings
+
+2006-02-23 13:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * live/draklive-install/draklive-install: (doPartitionDisksAfter)
+ perl_checker beautify
+
+2006-02-23 13:51 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/Makefile: clean po subdir as well
+
+2006-02-23 13:50 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install.spec: build and include po
+ files
+
+2006-02-23 13:48 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/po/Makefile: use
+ ../../../perl-install/share/po/ for merge only (not for
+ build/install)
+
+2006-02-23 13:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * live/draklive-install/ChangeLog: first generation
+
+2006-02-23 13:35 Olivier Blin <oblin at mandriva.com>
+
+ * live/One/2006.0/config/: live.cfg: clean config file
+
+2006-02-23 13:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * live/draklive-install/po/: af.po, ar.po, az.po, bg.po, bn.po,
+ bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po, eo.po, es.po,
+ et.po, eu.po, fa.po, fi.po, fr.po, gl.po, he.po, hi.po, hu.po,
+ id.po, is.po, it.po, ja.po, ky.po, ltg.po, lv.po, mk.po, ms.po,
+ mt.po, nb.po, nl.po, nn.po, pa_IN.po, pl.po, pt.po, pt_BR.po,
+ ru.po, sc.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po,
+ ta.po, tg.po, tl.po, tr.po, uk.po, uz.po, uz@Latn.po, vi.po,
+ wa.po, zh_CN.po, zh_TW.po: fill in from DrakX (cooker)
+
+2006-02-23 13:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * live/draklive-install/po/: af.po, am.po, ar.po, az.po, be.po,
+ bg.po, bn.po, br.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po,
+ el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, fur.po,
+ ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po,
+ ja.po, ko.po, ky.po, lt.po, ltg.po, lv.po, mk.po, mn.po, ms.po,
+ mt.po, nb.po, nl.po, nn.po, pa_IN.po, pl.po, pt.po, pt_BR.po,
+ ro.po, ru.po, sc.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po,
+ sv.po, ta.po, tg.po, th.po, tl.po, tr.po, uk.po, uz.po,
+ uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: merge with sources
+ (s/xgettext/perl_checker/)
+
+2006-02-23 13:28 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/po/draklive-install.pot: regenerate using
+ perl_checker
+
+2006-02-23 13:28 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/po/Makefile: better use perl_checker to
+ generate the pot file, xgettext finds invalid strings
+
+2006-02-23 13:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * live/draklive-install/po/br.po: update
+
+2006-02-23 13:22 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install: remove weird newlines
+
+2006-02-23 13:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * live/draklive-install/po/fr.po: update
+
+2006-02-23 13:15 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install: really use new install
+ image
+
+2006-02-23 13:14 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install.desktop: adapt to new name
+
+2006-02-23 13:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * live/draklive-install/po/: af.po, am.po, ar.po, az.po, be.po,
+ bg.po, bn.po, br.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po,
+ el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, fur.po,
+ ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po,
+ ja.po, ko.po, ky.po, lt.po, ltg.po, lv.po, mk.po, mn.po, ms.po,
+ mt.po, nb.po, nl.po, nn.po, pa_IN.po, pl.po, pt.po, pt_BR.po,
+ ro.po, ru.po, sc.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po,
+ sv.po, ta.po, tg.po, th.po, tl.po, tr.po, uk.po, uz.po,
+ uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: fill in from DrakX
+ (MDV2006)
+
+2006-02-23 13:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * live/draklive-install/po/: af.po, am.po, ar.po, az.po, be.po,
+ bg.po, bn.po, br.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po,
+ el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, fur.po,
+ ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po,
+ ja.po, ko.po, ky.po, lt.po, ltg.po, lv.po, mk.po, mn.po, ms.po,
+ mt.po, nb.po, nl.po, nn.po, pa_IN.po, pl.po, pt.po, pt_BR.po,
+ ro.po, ru.po, sc.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po,
+ sv.po, ta.po, tg.po, th.po, tl.po, tr.po, uk.po, uz.po,
+ uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: fill in from DrakX
+ (cooker)
+
+2006-02-23 12:47 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/po/: Makefile, af.po, am.po, ar.po, az.po,
+ be.po, bg.po, bn.po, br.po, bs.po, ca.po, cs.po, cy.po, da.po,
+ de.po, draklive-install.pot, el.po, eo.po, es.po, et.po, eu.po,
+ fa.po, fi.po, fr.po, fur.po, ga.po, gl.po, he.po, hi.po, hr.po,
+ hu.po, id.po, is.po, it.po, ja.po, ko.po, ky.po, lt.po, ltg.po,
+ lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, nn.po, pa_IN.po,
+ pl.po, pt.po, pt_BR.po, ro.po, ru.po, sc.po, sk.po, sl.po, sq.po,
+ sr.po, sr@Latn.po, sv.po, ta.po, tg.po, th.po, tl.po, tr.po,
+ uk.po, uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: add
+ po files
+
+2006-02-23 12:22 Olivier Blin <oblin at mandriva.com>
+
+ * live/draklive-install/draklive-install: perl_checker fixes
+
+2006-02-23 12:15 Olivier Blin <oblin at mandriva.com>
+
+ * live/: One/2006.0/config/auto_inst.cfg.pl,
+ One/2006.0/config/live.cfg, One/2006.0/config/patch-2006-live.pl,
+ One/2006.0/config/rpmsrate, One/2006.0/patches/halt.loopfs.patch,
+ One/2006.0/patches/netfs.loopfs.patch, draklive-install/Makefile,
+ draklive-install/draklive-install,
+ draklive-install/draklive-install.desktop,
+ draklive-install/draklive-install.spec,
+ draklive-install/install_interactive.pm,
+ draklive-install/theme/IC-installone-128.png,
+ draklive-install/theme/IC-installone-16.png,
+ draklive-install/theme/IC-installone-24.png,
+ draklive-install/theme/IC-installone-32.png,
+ draklive-install/theme/IC-installone-48.png,
+ draklive-install/theme/IC-installone-64.png,
+ draklive-install/theme/IM-INSTALLCDONE.png,
+ draklive-install/theme/IM-INSTALLCDONE2.png: initial import of
+ Mandriva One configuration files and draklive-install tool
+
+2006-02-23 11:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, install_steps.pm, lang.pm: create
+ lang::lang_changed() to ensure {country} is set according to the
+ lang (useful for finish-install where choosing fr gives fr_US)
+
+2006-02-23 11:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: any.pm: perl_checker compliance
+
+2006-02-23 10:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: any.pm, standalone/finish-install: allow to rename
+ an old user (possibly "guest" from a live distribution) instead
+ of creating a new one, using info from first added user in
+ finish-install (backport from HEAD)
+
+2006-02-23 10:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: any.pm, standalone/finish-install: allow to rename
+ an old user (possibly "guest" from a live distribution) instead
+ of creating a new one, using info from first added user in
+ finish-install
+
+2006-02-23 10:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/: finish-install: rename config hash as
+ it will contain more settings
+
+2006-02-23 10:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/finish-install: don't try to destroy
+ potentially non-existent wizard window (backport from HEAD)
+
+2006-02-23 10:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/finish-install: don't try to destroy
+ potentially non-existent wizard window (if some steps are skipped
+ for example)
+
+2006-02-23 09:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/help.pm: enforce utf8 (since we use the (R) char)
+
+2006-02-22 20:46 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: remove spurious space
+
+2006-02-22 20:46 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: make sure mtab and fstab don't contain
+ build-machine specific configuration
+
+2006-02-22 20:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/draklive: perl_checker cleanups
+
+2006-02-22 20:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/draklive: make generating the previous HW config file
+ somewhat more readable
+
+2006-02-22 20:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/.perl_checker: blacklist a few modules in order to let
+ perl_checker parse draklive
+
+2006-02-22 19:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/list.xml: add monitor-get-edid-using-vbe
+ (introduced in monitor-edid 1.9)
+
+2006-02-22 18:03 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: make sure kbluetoothdrc is readable (useful when
+ building with a paranoid secure level)
+
+2006-02-22 16:23 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/c/smp-dmi.c: Check the socket is populated during
+ dmi smp detection. I know, the code is no longer used, but let's
+ make it as "don't get gb depressed for reading SMBIOS spec for
+ nothing"
+
+2006-02-22 16:12 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/diskdrake/: interactive.pm: Allow user to modify
+ xbox partitions on non-xbox (thx Pixel)
+
+2006-02-22 14:24 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: use syslinux splash from theme
+
+2006-02-22 13:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/format.pm: it seems -y is needed for mkfs.reiser4
+ to work without prompting
+
+2006-02-22 12:02 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: use run_program::raw({ root => ... }, ...)
+ instead of various chroot commands
+
+2006-02-21 18:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: since 1.0.0.rc10 dmraid supports
+ JMicron JMB36x and Adaptec HostRAID
+
+2006-02-21 17:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/: detect_devices.pm: fix typo
+
+2006-02-21 11:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: only accept users using "Accept user"
+ button, and disable "Next" when the login name is filled
+ (bugzilla #20712)
+
+2006-02-20 14:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/draklive: (post_install_system) explain
+
+2006-02-20 14:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/draklive: (post_install_system) fix auto configuration on
+ live boot (aka fix creating a dummy previous HW configuration)
+
+2006-02-20 10:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/raid.pm: use --force when creating a md with only
+ one device (bugzilla #21214)
+
+2006-02-20 05:35 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po file
+
+2006-02-19 07:20 Sharuzzaman Ahmat Raslan <sharuzzaman at myrealbox.com>
+
+ * perl-install/share/po/ms.po: Updated Malay translation
+
+2006-02-18 23:30 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates soft/initscripts/po/da.po
+ soft/rpmdrake/po/da.po gi/perl-install/share/po/da.po
+
+2006-02-18 09:26 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po file
+
+2006-02-17 20:34 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: allow to use a local rpmsrate
+
+2006-02-17 20:30 Olivier Blin <oblin at mandriva.com>
+
+ * tools/drakx-in-chroot: allow to use a local rpmsrate
+
+2006-02-17 20:20 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: fix yet another typo
+
+2006-02-17 20:15 Olivier Blin <oblin at mandriva.com>
+
+ * tools/drakx-in-chroot: cat_ didn't handle multiple args in 2006.0
+ (thanks to Warly for reminding me to fix that)
+
+2006-02-17 20:09 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: fix region suffix
+
+2006-02-17 19:59 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: don't use 'noregion' subdir if $live->{regions}
+ doesn't exist
+
+2006-02-17 18:41 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: remove useless parentheses
+
+2006-02-17 17:33 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: add missing quote
+
+2006-02-17 17:29 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: add the all-regions option to proceed with all
+ regions
+
+2006-02-17 17:21 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: remove unused variable
+
+2006-02-17 17:21 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: move mountpoint in regional workdir
+
+2006-02-17 17:20 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: fix errors from previous commit
+
+2006-02-17 17:17 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: move code in complete_config
+
+2006-02-17 17:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/commands.pm: enhance "bug" command to allow saving
+ report.bug on usb key
+
+2006-02-17 17:08 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: use regional chroots and workdirs
+
+2006-02-17 16:14 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: pass a set of langs to drakx-in-chroot according
+ to region settings
+
+2006-02-17 16:02 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: allow to erase rpms after install (aka the lazy
+ rpmsrate patch)
+
+2006-02-17 15:43 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: don't make kbluetoothdrc display an annoying and
+ useless popup window
+
+2006-02-17 15:33 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: use /etc path to kdm config file
+
+2006-02-17 15:30 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: run drakx-in-chroot with enough timeout slack
+
+2006-02-17 15:28 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: allow to pass run_program options to run_
+
+2006-02-17 15:22 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: try to display an error message when the config
+ file can't be opened
+
+2006-02-17 02:10 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/share/po/is.po: Latest additions
+
+2006-02-16 20:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: handle new et61x251 webcam driver
+
+2006-02-16 15:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: very titypo
+
+2006-02-16 14:59 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/fonts.tar.bz2: updated version of Nimbus Sans
+ (with proper gyphs for extended cyrillic; and the font properly
+ identifies itself as suitable for Vietnamese)
+
+2006-02-16 14:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: - fix adding storage
+ controllers: set scsi_hostadapter like DrakX does instead
+ of trying preloading the driver
+ - manage hardware_raid class too
+
+2006-02-16 14:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules.pm: (when_load_category) do not bother
+ preloading sd_mod for ide drivers
+
+2006-02-15 17:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: move new PATA drivers into the disk/sata
+ category since they behave like scsi as they are using libata and
+ add a comment (explaining these are the old ide drivers ported
+ over the new libata layer)
+
+2006-02-15 15:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.11-1mdk
+
+2006-02-15 15:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: uploading the hw status to
+ hcl.mandriva.com is now done in mcc
+
+2006-02-15 12:30 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/thirdparty.c: fix potential buffer overflows (thanks
+ to Rafael for the advice)
+
+2006-02-15 11:50 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: fix problem "atom 0 is
+ not a section"
+
+2006-02-15 11:48 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * mdk-stage1/network.c: Fix minor memory leak
+
+2006-02-15 11:45 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * mdk-stage1/: tools.c, url.c: Fix another couple of potential
+ buffer overflows
+
+2006-02-14 09:35 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * mdk-stage1/cdrom.c: Remove another potential buffer overflow
+
+2006-02-13 21:18 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/cdrom.c: fallback on ide-generic if needed (requested
+ by support team for the Equilinux project)
+
+2006-02-13 17:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/diskdrake/resize_ext2.pm: (resize) run_program's
+ 10mn timeout is catching resize2fs in real word, let's bump it to
+ 60mn
+
+2006-02-13 16:25 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/thirdparty.c: try to find modules in a sub-directory
+ named by the kernel release
+
+2006-02-13 16:17 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/thirdparty.c: try to find modules in a sub-directory
+ named by the kernel release
+
+2006-02-13 16:00 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/thirdparty.h: use /Mandrake/thirdparty in 10.0 branch
+
+2006-02-13 12:08 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/install_steps.pm: fix acpi initializer (pixel)
+
+2006-02-10 19:11 Wanderlei Antonio Cavassin <cavassin at mandriva.com>
+
+ * perl-install/share/po/pt_BR.po: More pt_BR translations.
+
+2006-02-10 15:10 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/Newt/Newt.xs: fix varargs
+
+2006-02-10 12:04 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * make_boot_img, kernel/update_kernel: use normal kernel up as
+ isolinux boot kernel (has acpi interpreter)
+
+2006-02-09 19:29 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: copy rpms in chroot and use rpm from the chroot
+ (to avoid rpm version mismatch)
+
+2006-02-09 17:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: (uninstall) "Uninstall List" is
+ both confusing and wrong since the button really offer to select
+ font directories to uninstall (it doesn't offer to uninstall the
+ whole list or the list of selected fonts)
+
+2006-02-09 17:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: (show_list_to_remove) nicer
+ GUI: - use standard verbs on button - use a standard &
+ meaningfull title - add a sentence explaining the purpose of the
+ dialog
+
+2006-02-09 17:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: bump copyright
+
+2006-02-09 17:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/ja.po: update (Yukiko Bando)
+
+2006-02-09 12:12 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/: Makefile, disk.c, partition.c, partition.h,
+ probing.c, probing.h, stage1.c, stage1.h, thirdparty.c,
+ thirdparty.h, tools.c, tools.h: backport thirdparty support
+
+2006-02-08 21:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: (font_choice) enable to select
+ fonts with upcase letters in file extensions (#16948)
+
+2006-02-08 19:18 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/rpmsrate: remove duplicates
+
+2006-02-08 17:04 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * rescue/make_rescue_img: fix operator
+
+2006-02-08 15:33 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/rpmsrate.corpo-desktop: Poor man's way (old
+ style) to install additionnal packages for laptops. Here, that's
+ cpufreq (older HP laptop program)
+
+2006-02-08 15:31 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/install_steps.pm: handle cases where with booted
+ with a full acpi capable kernel
+
+2006-02-08 15:29 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * kernel/list_modules.pm: forcedeth_ng, tg3_ng
+
+2006-02-08 15:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: handle rt2570 (new wireless driver)
+
+2006-02-08 14:31 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * make_boot_img, rescue/make_rescue_img: add possibility to use non
+ -BOOT kernels for isolinux boot
+
+2006-02-08 14:24 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/pkgs.pm: Fix CD0 support (warly)
+
+2006-02-07 14:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: fix detecting some ATA devices
+ (#21034)
+
+2006-02-06 15:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: handle *.ttc fonts too
+
+2006-02-05 10:47 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/it.po: Updated Italian translations from
+ Andrea Celli <andrea.celli@libero.it>.
+
+2006-02-03 18:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: oops, perl_checker compliance
+
+2006-02-03 17:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: - fix dmidecode_category()
+ (returning a list) - c::dmiDetectMemory() was in smp-dmi.c which
+ is dropped, creating dmi_detect_memory instead
+
+2006-02-02 10:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: log test_for_bad_drives errors
+
+2006-01-30 16:06 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po file
+
+2006-01-30 10:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add support for jsm serial driver
+
+2006-01-30 09:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: force creation of a non-root user on
+ standard security level (esp. since kdm doesn't permit root login
+ anymore by default) (thanks to Neoclust)
+
+2006-01-29 21:55 berthy
+
+ * perl-install/share/po/fr.po: Update french translation
+
+2006-01-28 05:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/v4l.pm: perl_checko cleanup
+
+2006-01-28 04:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: install msec if needed
+
+2006-01-28 04:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: drop msec requires so that python
+ is not part of basesystem (anyway it's installed by rpmsrate at a
+ higher priority than drakxtools is (through drakconf))
+
+2006-01-28 01:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2006-01-28 00:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2006-01-28 00:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.10-1mdk
+
+2006-01-27 21:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm, perl-install/harddrake/sound.pm: add
+ support for new snd-als300 sound driver
+
+2006-01-27 21:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/v4l.pm: sync bttv, cx88 and saa7134 driver
+ model lists with kernel-2.6.16-rc1-mm2
+
+2006-01-27 21:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: prevent some "unlisted driver"
+ errors in harddrake
+
+2006-01-27 21:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add support for gigabit sky2 driver
+ (appeared in 2.6.16-rc1)
+
+2006-01-27 20:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: fix titi sucks :)
+ (backport from cooker, fixed by Pixel)
+
+2006-01-27 01:06 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2006-01-26 16:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_gtk.pm: for auto_installs which never go
+ through the Gtk2 main loop
+
+2006-01-26 16:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_gtk.pm: display & update steps during
+ graphical auto_installs (which never go through the Gtk2 main
+ loop)
+
+2006-01-26 12:37 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, am.po, ar.po, az.po,
+ be.po, bg.po, bn.po, br.po, bs.po, ca.po, cs.po, cy.po, da.po,
+ de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po,
+ fur.po, ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po, is.po,
+ it.po, ja.po, ko.po, ky.po, lt.po, ltg.po, lv.po, mk.po, mn.po,
+ ms.po, mt.po, nb.po, nl.po, nn.po, pa_IN.po, pl.po, pt.po,
+ pt_BR.po, ro.po, ru.po, sc.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tl.po, tr.po, uk.po,
+ uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot
+ file
+
+2006-01-25 01:08 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: More support for TS2
+
+2006-01-24 16:11 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/insmod-modutils/: obj/obj_kallsyms.c, util/config.c,
+ util/modstat.c: be compliant with recent gcc (from peroyvind)
+
+2006-01-24 12:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: fix selected_leaves(): it was dropping all
+ packages in a circular reference (including short circular
+ references like amarok-engine-arts -> libamarokarts.so ->
+ amarok-engine-arts)
+
+2006-01-24 12:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: fix selected_leaves() dropping all packages
+ in a circular reference (including short circular references like
+ amarok-engine-arts -> libamarokarts.so -> amarok-engine-arts)
+
+2006-01-24 12:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/do_pkgs.pm: protect against no $do->in
+
+2006-01-22 00:50 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: - Improvements and fixes on printer
+ model/driver listing in printerdrake o Corrected handling of
+ PPD links in Foomatic printer XML files, no the prinyer list
+ entries have the correct model names of the Foomatic printer
+ XML files and so PPDs linked to multiple printers appear
+ with each linked printer in printerdrake. This also avoids
+ duplicate "(Recommended)" tags for one printer (problem
+ occured with HP LaserJet 1200). o Avoid duplicate PPD entries
+ for Foomatic-generated PPDs and identical pre-generated
+ Foomatic PPDs in /usr/share/cups/model. This problem
+ occured when the hplip-hpijs-ppds package is installed.
+ o Some polishing of list entries. o Reduced Perl warnings.
+
+2006-01-20 21:39 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: - Give priority to custom PPD file
+ if printer queue record in printerdrake is broken, use
+ "Postscript" if Foomatic driver is wrongly set to "PPD", should
+ fix bug #20028.
+
+2006-01-20 19:55 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Fixed HPLIP setup when
+ setting up a printer without auto-detection (bug #20231).
+
+2006-01-20 17:47 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: scanner.pm, standalone/scannerdrake: - Moved
+ loading of kernel modules before the port checking step, the
+ device file is usually generated when the module is loaded -
+ Support for loading kernel modules only in case of a certain
+ connection type (SCSI, USB, Parport). - Let kernel module only
+ be added to /etc/modules and /etc/modprobe.preload if loading
+ of the module with "modprobe" succeeded. - Do not die when
+ loading of a kernel module does not succeed. - s/Hewlett
+ Packard/Hewlett-Packard/ when generating ScannerDB.
+
+2006-01-20 13:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/: detect_devices.pm: handle new dmidecode output
+
+2006-01-19 13:26 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: updated list of console keyboards
+
+2006-01-19 09:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/patch/patch-rh9-mdk10.pl: fix typo
+
+2006-01-18 18:12 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po file
+
+2006-01-18 12:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: - read all per entry entries (esp.
+ makeactive) - write makeactive - have makeactive for windows
+ entries (bugzilla #20081)
+
+2006-01-18 11:25 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2006-01-17 20:54 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/: keymaps.tar.bz2, kmap2bkmap: updated console
+ map files (also, using utf-8 maps for non-ascii chars)
+
+2006-01-17 18:45 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/: af.po, am.po, ar.po, az.po, be.po, bg.po,
+ bn.po, br.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po,
+ eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, fur.po, ga.po,
+ gl.po, he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po,
+ ko.po, ky.po, lt.po, ltg.po, lv.po, mk.po, mn.po, ms.po, mt.po,
+ nb.po, nl.po, nn.po, pa_IN.po, pl.po, pt_BR.po, pt.po, ro.po,
+ ru.po, sc.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po,
+ ta.po, tg.po, th.po, tl.po, tr.po, uk.po, uz.po, uz@Latn.po,
+ vi.po, wa.po, DrakX.pot, zh_CN.po, zh_TW.po: Updated POT file
+
+2006-01-17 18:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: drop scim-m17n from list of
+ alternatives since it's selected for "vi"
+
+2006-01-13 19:49 Karl Ove Hufthammer <karl at huftis.org>
+
+ * perl-install/share/po/nn.po: Updated translation.
+
+2006-01-13 17:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/fileshareset: put kde's enhancements
+ (backward compatible) - multi distro - new variables in
+ fileshare.conf
+
+2006-01-13 16:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/monitor.pm: 1024x768@70Hz monitor is too
+ high (cf #20304)
+
+2006-01-13 11:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: be more explicit in the log about
+ defaulting to newt
+
+2006-01-13 10:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_newt.pm: unset DISPLAY so that code
+ testing wether DISPLAY is set can know we don't have or use X
+ (thanks to gégé)
+
+2006-01-13 10:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/list.xml: monitor-edid now needs File::Find
+
+2006-01-12 15:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2006-01-12 14:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: defaulting to
+ 1024x768 instead of 800x600 when the monitor size is unknown
+ (since a lot of people expect this, and that's what fedora is
+ doing, cf #20304)
+
+2006-01-12 11:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: replacing double with NV as suggested
+ by rafael:
+
+ NV is the portable typedef perl's Configure figures out for
+ floating point values. And since it's an internal type the
+ typemap is easier. See: $ perl -V:nvtype nvtype='double';
+
+2006-01-12 11:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/patch/patch-2006-above-2TB.pl: use BLKGETSIZE64 to
+ allow detecting partitions bigger than 2TB, and use "double"
+ instead of "unsigned int" (nb: it means we will use doubles
+ instead of ints for computing things, this works quite nicely up
+ to 100_000TB
+
+ doing this in perl so that there is no need to recompile stuff.so
+
+2006-01-12 11:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/c.pm: less verbose
+
+2006-01-12 11:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/c.pm: use BLKGETSIZE64 to allow detecting partitions
+ bigger than 2TB, and use "double" instead of "unsigned int" (nb:
+ it means we will use doubles instead of ints for computing
+ things, this works quite nicely up to 100_000TB
+
+ doing this in perl so that there is no need to recompile stuff.so
+
+2006-01-12 11:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: use BLKGETSIZE64 to allow detecting
+ partitions bigger than 2TB, and use "double" instead of "unsigned
+ int" (nb: it means we will use doubles instead of ints for
+ computing things, this works quite nicely up to 100_000TB
+
+2006-01-11 22:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: add a comment
+
+2006-01-10 19:51 Karl Ove Hufthammer <karl at huftis.org>
+
+ * perl-install/share/po/nn.po: Updated Norwegian Nynorsk
+ translation.
+
+2006-01-10 15:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/: detect_devices.pm, c/Makefile.PL, c/README,
+ c/smp-dmi.c, c/smp-test.c, c/smp.c, c/smp.h, c/stuff.xs.pl: look
+ for "NR_CPUS limit of 1 reached" instead of looking MP tables by
+ hand, or using DMI info (often broken)
+
+2006-01-10 14:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake.sh: this service is
+ *NOT* interactive
+
+2006-01-10 08:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: don't set KBCHARSET in
+ /etc/sysconfig/keyboard, this is not useful (and we don't modify
+ it in keyboarddrake)
+
+2006-01-09 20:14 Karl Ove Hufthammer <karl at huftis.org>
+
+ * perl-install/share/po/nn.po: Updated nn translation.
+
+2006-01-09 19:26 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: - Make sure that when a user
+ supplies an updated PPD file, the new file and not the old one
+ from the system gets used.
+
+2006-01-09 17:25 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Moved button for
+ daemon-less CUPS client mode to the top of the CUPS
+ configuration dialog, to make it more visible, so that the user
+ sees more easily when he has activated this mode accidentally.
+
+2006-01-09 16:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: allow giving {percent_size} instead of
+ {size}
+
+2006-01-09 10:52 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po file
+
+2006-01-09 01:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/service_harddrake.sh: convert parallel
+ init to LSB
+
+2006-01-06 17:19 Wanderlei Antonio Cavassin <cavassin at mandriva.com>
+
+ * perl-install/share/po/pt_BR.po: More pt_BR fixes.
+
+2006-01-06 16:12 Pixel <pixel at mandriva.com>
+
+ * tools/mailchangelog.pl: update to new mailing list name
+
+2006-01-06 14:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: option IgnoreEDID is no more needed
+ with nvidia driver
+
+2006-01-05 18:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add ioc3_serial driver
+
+2006-01-04 23:16 Karl Ove Hufthammer <karl at huftis.org>
+
+ * perl-install/share/po/nn.po: Updated nn translation.
+
+2006-01-04 16:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: ugly hack to make things work when
+ /proc/mounts says /dev/root is mounted in /mnt
+
+2006-01-03 18:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/wizards.pm: fix typo
+
+2006-01-03 16:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/wizards.pm, perl-install/network/netconnect.pm,
+ perl-install/standalone/drakconnect,
+ perl-install/standalone/drakgw,
+ perl-install/standalone/draksambashare,
+ perl-install/standalone/drakups,
+ perl-install/standalone/logdrake, tools/draklive: don't have a
+ useless empty hash in wizards objects, use the wizards hash
+
+2006-01-03 16:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/wizards.pm: fix typo
+
+2006-01-03 15:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/wizards.pm: fix documentation typo
+
+2006-01-03 15:14 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po file
+
+2006-01-03 14:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (get_eth_cards) simplify
+
+2006-01-02 18:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_any.pm: typo fix (#13292)
+
+2006-01-02 17:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/service_harddrake.sh: require dkms
+
+2006-01-02 17:07 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: check/sanitize user input
+ MAC addresses, add tooltips (#20384)
+
+2006-01-02 16:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: refer to DrakXTools on the wiki
+
+2006-01-02 15:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix URL
+
+2006-01-02 13:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.9-1mdk
+
+2006-01-02 13:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: better not dying (#20340) it
+ looks like there do be some devices out for which we failed to
+ get proper data
+
+2006-01-02 13:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: handle new orinoco_nortel driver
+
+2006-01-02 13:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.8-1mdk
+
+2006-01-02 12:18 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: use -boot prefix in syslinux file only if a
+ specific boot type is specified
+
+2006-01-02 11:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/service_harddrake.sh: add parallel init
+ support (Couriousous)
+
+2005-12-31 14:05 Inigo Salvador Azurmendi <xalba at euskalnet.net>
+
+ * perl-install/share/po/eu.po: osatu gabe
+
+2005-12-30 16:26 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Add support for custom
+ kernel args in initrd Add support for future unionfs/TS2
+ Perl_checker fixes
+
+2005-12-29 20:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/diskdrake/resize_ext2.pm: remove incorrect and
+ unused check (anyway, e2fsprogs is required by basesystem)
+
+2005-12-29 19:13 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: use --inplace option in rsync, to avoid missing
+ space when overwriting an existing live system
+
+2005-12-29 19:12 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: don't record loopbacks on boot master
+
+2005-12-29 19:12 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: name the boot cdrom master as boot.iso (and
+ factorize)
+
+2005-12-29 19:10 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: allow to use --boot-only for master/format/record
+ steps
+
+2005-12-29 19:08 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: add optionnal boot storage type in $media->{boot}
+ and build a custom syslinux-boot.cfg for it
+
+2005-12-29 19:01 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: rename refresh_boot_only as boot_only
+
+2005-12-29 18:59 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: remove --record-boot option, this can be achieved
+ using --boot-only --record now
+
+2005-12-29 18:58 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: fix spacing
+
+2005-12-29 18:57 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: add --boot-only option to prepare for special
+ boot images
+
+2005-12-29 18:51 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: use dashes instead of underscores in command line
+ options
+
+2005-12-29 14:52 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: require root capabilities
+
+2005-12-29 14:13 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: sort storage types
+
+2005-12-29 03:27 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/share/po/is.po: Fix missing, spelling, better
+ translations
+
+2005-12-28 15:56 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: install packages using urpmi --auto
+
+2005-12-28 15:55 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: add some minimal help in syslinux
+
+2005-12-28 15:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: let packages using common.pm to use
+ Locale::gettext without requiring it
+
+2005-12-28 14:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: (backport) restore behaviour broken in
+ commit 1.371 (nb: {lang} is not always set in {langs} at that
+ time)
+
+2005-12-28 14:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: fix titi sucks :)
+
+2005-12-28 12:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/drakfirewall.pm: remove unused variable
+
+2005-12-28 12:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/drakfirewall.pm: don't install and configure
+ mandi-ifw if ifw is disabled
+
+2005-12-28 11:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: keyboard.pm, standalone/keyboarddrake: create new
+ function and use it (backport for finish-install)
+
+2005-12-27 21:30 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: check that abs_path doesn't fail to find
+ (rpm/patch) files
+
+2005-12-27 20:53 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: add missing newline characters
+
+2005-12-27 20:50 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: add patches config option to apply patches on the
+ installed system
+
+2005-12-27 20:31 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: remove urpmi media added by drakx-in-chroot,
+ they're unusable
+
+2005-12-27 19:38 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: perl_checker fix
+
+2005-12-27 19:37 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: add --post_install option to run post install
+ only (rpms and patches installation)
+
+2005-12-27 17:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/: card.pm: check for nvidia_drv.so (as well
+ as nvidia_drv.o)
+
+2005-12-27 17:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/finish-install: allow to blacklist steps
+ in /etc/sysconfig/finish-install (backport)
+
+2005-12-27 17:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/finish-install: locale is now set by
+ any::selectLanguage_standalone
+
+2005-12-27 17:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/finish-install: add ask_keyboard step
+ (backport)
+
+2005-12-27 17:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Makefile: keep install_messages.pm for
+ finish-install (i.e. don't break finish-install in 2006.0)
+
+2005-12-27 17:26 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/any.pm: fix for localedrake in text mode (backport
+ of patch from Pixel)
+
+2005-12-27 15:26 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: rename patch option as patch_install
+
+2005-12-27 14:54 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: fix stupid mistake
+
+2005-12-27 13:55 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: don't allow to go on if no device is selected
+ (thanks to Sylvie \o/)
+
+2005-12-26 21:09 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: add a copy wizard
+
+2005-12-26 20:14 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: umount eventually mounted usb devices before
+ formatting or running syslinux
+
+2005-12-26 19:42 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: move default prefix in a dedicated hash
+
+2005-12-26 19:38 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: make options sourced from --config overwrite
+ previous settings
+
+2005-12-22 14:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: typo fix
+
+2005-12-22 13:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.7-1mdk
+
+2005-12-22 13:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: (load_dependencies) handle Mandriva
+ kernel packages' modules.dep (these kernels have compressed
+ modules, unlike vanilla kernels)
+
+2005-12-22 13:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/raid.pm: we shouldn't rely on callers to load
+ missing modules...
+
+2005-12-22 13:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone.pm: add support for
+ $::no_global_argv_parsing, enabling to NOT using common option
+ managemnt (eg: when using Getopt)
+
+2005-12-21 13:57 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: big rework to be able to record live system on
+ multiple media: - make bootloader/master/record steps
+ media-specific - build bootloader files for each media (create
+ bootloader files in boot/<storage_type> directory, to ease live
+ duplication) - merge initrd step in bootloader step - add
+ extra_media configuration key, to specify alternate media/storage
+ - create loopbacks files in a loopbacks sub-directory - duplicate
+ usb bootloader files at root of the usb media (for syslinux to
+ find them) - create initrd mountpoints in /live and move them in
+ the new root using "mount --move" (requires /bin/mount) - merge
+ most media defaults in storage settings
+
+2005-12-20 14:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/patch/patch-2006-bad-fonts.pl: some fonts are not
+ seen by fontconfig because of a packaging pb, force a rebuild of
+ fc cache
+
+2005-12-20 14:17 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/rpmsrate: added kdegraphics-kpdf
+
+2005-12-19 17:34 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: use rsync to copy files on usb media
+
+2005-12-19 16:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: from Yukiko Bando: - kasumi is now required
+ by scim-anthy - uim-anthy is obsolete
+
+2005-12-19 16:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install uim-qtimmodule too for KDE
+ (Yukiko Bando)
+
+2005-12-19 16:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: kasumi is now required by scim-anthy
+ (Yukiko Bando)
+
+2005-12-19 15:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: commit 10.4.6-1mdk's changes that
+ pixel forgot to commit
+
+2005-12-19 14:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getSCSI_26) add a comment
+
+2005-12-19 14:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getSCSI_26) be more robust (aka
+ do not silently not detect hard disks when kernel sysfs exports
+ got changed)
+
+2005-12-19 14:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: handle more PATA drivers
+
+2005-12-19 14:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getSCSI_26) handle
+ kernel-2.6.14+
+
+2005-12-19 14:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: (load_dependencies) handle kernel
+ packages' modules.dep, not only DrakX' ones (this is usefull for
+ mkinitrd in perl)
+
+2005-12-19 13:51 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: disable network, authentication and users step in
+ finish-install
+
+2005-12-19 13:20 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: fix mkisofs options ordering
+
+2005-12-18 15:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: don't overwrite ONBOOT setting when
+ writing adsl configuration (#20089)
+
+2005-12-18 13:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: allow auto allocating partitions without
+ giving a {mntpoint}
+
+2005-12-18 13:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/: common.pm, standalone.pm: allow common.pm and
+ standalone.pm to be used in drakxtools-backend without
+ perl-Locale-gettext
+
+2005-12-18 13:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/run_program.pm: fix bad typo
+
+2005-12-18 12:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/net_applet: replace sprintf_fixutf8 with
+ simple sprintf
+
+2005-12-17 12:46 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation.
+
+2005-12-16 23:52 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: record on the fly, by piping creation step to
+ recording step (piping subs is probably not the way to do that,
+ committing it just for the record)
+
+2005-12-16 20:13 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: format usb device when asked only, use "mlabel -i
+ <dev> ::" to set label instead
+
+2005-12-16 20:03 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: allow to format the recorded media
+
+2005-12-16 19:56 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: remove undeclared and useless variable
+
+2005-12-16 17:42 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/autosetupprintqueues: - Removed
+ "localhost" from the DISPLAY veriable, it broke the
+ authorization to pop up the printerdrake window on the user's
+ desktop when a new USB printer was plugged.
+
+2005-12-16 17:38 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/autosetupprintqueues: - Removed
+ "localhost" from the DISPLAY veriable, it broke the
+ authorization to pop up the printerdrake window on the user's
+ desktop when a new USB printer was plugged.
+
+2005-12-16 13:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, install_steps.pm: when upgrading,
+ merge existing modprobe.conf (and do it when /mnt is mounted, not
+ before!)
+
+2005-12-15 19:40 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: record live cdroms using cdrecord
+
+2005-12-15 19:34 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: create cdrom master using mkisofs
+
+2005-12-15 19:30 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: it's useless to pre-create sdX devices, nash will
+ do it
+
+2005-12-15 19:29 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: avoid storage specific stuff in bootloader
+ preparation
+
+2005-12-15 19:24 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: always use system's losetup instead of nash's,
+ required for loopbacks on read-only systems
+
+2005-12-15 19:22 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: cdrom must be mounted read-only
+
+2005-12-15 19:21 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: /sys is required for cdrom labels
+
+2005-12-15 19:19 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: use correct module and mount type for cdrom
+ storage
+
+2005-12-15 19:16 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: make storage description more configurable
+
+2005-12-15 19:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.5-1mdk
+
+2005-12-15 19:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile: keep install_messages.pm for
+ finish-install
+
+2005-12-15 17:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: install_steps_interactive.pm: (acceptLicense)
+ introduce a wrapper around any::acceptLicense()
+
+2005-12-15 17:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: any.pm: (acceptLicense) load the needed modules
+
+2005-12-15 17:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: any.pm: (acceptLicense) only show release notes at
+ install time
+
+2005-12-15 17:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: finish-install: ask for license
+ agreement before doing anything else
+
+2005-12-15 17:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: any.pm: (acceptLicense) in standalone mode, when
+ license is rejected, just reboot
+
+2005-12-15 17:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: any.pm, install_steps_interactive.pm:
+ (acceptLicense) move it from install_steps_interactive.pm into
+ any.pm so that it is availlable from within finish-install
+
+2005-12-15 17:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/ja.po: update (Yukiko Bando)
+
+2005-12-15 14:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/ja.po: update (Yukiko Bando)
+
+2005-12-15 13:47 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: pa_IN.po, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.po, sc.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po,
+ ta.po, tg.po, th.po, tl.po, tr.po, uk.po, uz.po, uz@Latn.po,
+ vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot file
+
+2005-12-15 12:53 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, am.po, ar.po, az.po,
+ be.po, bg.po, bn.po, br.po, bs.po, ca.po, cs.po, cy.po, da.po,
+ de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po,
+ fur.po, ga.po, gl.po, id.po, is.po, it.po, ja.po, ltg.po, lt.po,
+ lv.po, mk.po, mn.po, ms.po, mt.po, nb.po, nl.po, nn.po, he.po,
+ hi.po, hr.po, hu.po, ko.po, ky.po: updated pot file
+
+2005-12-15 12:30 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: help.pm, install_interactive.pm,
+ diskdrake/interactive.pm: reuse translation of "Next" button;
+ merged duplicate strings
+
+2005-12-15 11:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_interactive.pm: since we use utf8 in source
+ code, say it explicitly
+
+2005-12-15 11:05 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: ChangeLog, drakxtools.spec,
+ install_interactive.pm, harddrake/TODO, share/net_applet.desktop,
+ share/po/DrakX.pot: fixed encoding to UTF-8
+
+2005-12-15 10:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: fix dropping sprintf_fixutf8 (i committed
+ the wrong version...)
+
+2005-12-15 10:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/: common.pm, install_steps_gtk.pm, lang.pm,
+ wizards.pm, c/stuff.pm, c/stuff.xs.pl, network/modem.pm: - i had
+ foolishly removed c::iconv whereas it was used still used by
+ c::from_utf8 and c::to_utf8 - anyway, moving c::from_utf8 and
+ c::to_utf8 to common::from_utf8 and common::to_utf8 - making them
+ use Locale::gettext::iconv - Locale::gettext::iconv transform
+ undef into standard charset (1.05-2mdk) - drop
+ c::standard_charset (now unused)
+
+2005-12-15 09:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: get rid of sprintf_fixutf8 which is no
+ more needed with current perl (it has been fixed long ago: before
+ perl 5.8.3 (MDK10.0))
+
+2005-12-15 09:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/.perl_checker: Locale::gettext is not parsed
+ correctly
+
+2005-12-15 09:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/: common.pm, drakxtools.spec, lang.pm, mygtk2.pm,
+ standalone.pm, c/stuff.xs.pl, share/list.xml: use Locale::gettext
+ for dgettext, bindtextdomain and bind_textdomain_codeset instead
+ of module c (that way we can also use dngettext, and it's more
+ modular)
+
+2005-12-15 08:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: c::iconv() is not used anymore (and
+ if needed, there is Locale::gettext::iconv())
+
+2005-12-14 19:01 David Baudens <baudens at mandriva.com>
+
+ * perl-install/install_interactive.pm: - s/Windows.*/Microsoft
+ WindowsR/ - don't say "press OK" when only a Previous or Next
+ button is shown
+
+2005-12-14 18:43 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/advertising/26.pl: s/maintain/keep/
+
+2005-12-14 18:36 David Baudens <baudens at mandriva.com>
+
+ * perl-install/install_messages.pm: Keyboards have an Enter key and
+ not a Return key
+
+2005-12-14 15:44 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/list_modules.pm: move jfs and xfs in fs/local, so that
+ they get included in stage1
+
+2005-12-14 13:47 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/gl.po: updated Galician file
+
+2005-12-14 11:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/run_program.pm: fix handling absolute binary in
+ chroot (and add some comment about the usefulness of catching
+ program not found early)
+
+2005-12-13 16:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: package lsb is requiring many locales
+ though we don't want it to be installed only if those many
+ locales are chosen. So discarding those locales requires
+ (bugzilla #20183)
+
+2005-12-13 16:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/: pkgs.pm: package lsb is requiring many locales
+ though we don't want it to be installed only if those many
+ locales are chosen. So discarding those locales requires
+ (bugzilla #20183)
+
+2005-12-13 13:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: restore behaviour broken in commit 1.371
+ (nb: {lang} is not always set in {langs} at that time)
+
+2005-12-12 16:03 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/: drakbackup, man/C/man5/drakbackup.5,
+ man/C/man5/drakbackup.conf.5: Fix some instances of 100% cpu on
+ combo-box 'changed' in "Advanced When". Update drakbackup.conf
+ man page with new options. Add drakbackup man page.
+
+2005-12-09 05:21 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-12-08 15:35 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/: af.po, am.po, ar.po, az.po, be.po, bg.po,
+ bn.po, br.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po,
+ eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, fur.po, ga.po,
+ gl.po, he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po,
+ ko.po, ky.po, lt.po, ltg.po, lv.po, mk.po, mn.po, ms.po, mt.po,
+ nb.po, nl.po, nn.po, pa_IN.po, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.po, sc.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po,
+ ta.po, tg.po, th.po, tl.po, tr.po, uk.po, uz.po, uz@Latn.po,
+ vi.po, wa.po, zh_CN.po, zh_TW.po, DrakX.pot: Updatd POT file.
+
+2005-12-08 13:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: netconnect.pm, tools.pm: fix default
+ metric setting for wifi interfaces (thanks to Mickaël Le Baillif
+ for pointing this out)
+
+2005-12-08 13:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: netconnect.pm, tools.pm: fix default
+ metric setting for wifi interfaces (thanks to Mickaël Le Baillif
+ for pointing this out)
+
+2005-12-07 19:42 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: rename sparsefs mount as loopfs, make it take
+ loopback file size as option (pre_allocate), and add new
+ predefined squash mounts
+
+2005-12-07 17:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/rpmsrate: add ndiswrapper in INSTALL section,
+ commonly used for wireless cards
+
+2005-12-07 17:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/rpmsrate: don't try to install an old library
+ (that is anyway pulled by other packages)
+
+2005-12-07 15:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: remove duplicated code
+
+2005-12-07 15:39 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: use syslinux -s, "safe, slow and stupid" version
+ of SYSLINUX
+
+2005-12-07 15:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/pkgs.pm: (bestKernelPackage) install i586 kernel
+ flavor for live systems
+
+2005-12-06 23:44 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/rpmsrate: install nscd on laptops
+
+2005-12-06 19:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: don't overwrite ONBOOT setting when
+ writing adsl configuration
+
+2005-12-05 20:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: https proxy support (#19666)
+
+2005-12-05 16:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: make unicorn and madwifi
+ tools package optionnal
+
+2005-12-05 16:47 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: NVU is the new defaut Web editor in
+ Mandriva Linux
+
+2005-12-05 15:18 Antoine Ginies <aginies at mandriva.com>
+
+ * docs/HACKING: add missgin requires to build GI
+
+2005-12-05 13:27 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: revert to cp_f
+
+2005-12-05 13:21 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: add support for writable sparse loopbacks
+
+2005-12-05 01:51 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-12-04 06:37 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/: DrakX.pot, af.po, am.po, ar.po, az.po,
+ be.po, bg.po, bn.po, br.po, bs.po, ca.po, cs.po, cy.po, da.po,
+ de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po,
+ fur.po, ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po, is.po,
+ it.po, ja.po, ko.po, ky.po, lt.po, ltg.po, lv.po, mk.po, mn.po,
+ ms.po, mt.po, nb.po, nl.po, nn.po, pa_IN.po, pl.po, pt.po,
+ pt_BR.po, ro.po, ru.po, sc.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tl.po, tr.po, uk.po,
+ uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: Updated POT
+ file.
+
+2005-12-02 19:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: (do_switch) make it more
+ readable
+
+2005-12-02 19:01 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/: mount.c, tools.c: support jfs and xfs
+
+2005-12-02 15:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: install2.pm, install_steps_auto_install.pm,
+ install_steps_interactive.pm: load all ethernet modules in all
+ installation modes (fixes the problem of firewire not being
+ loaded in automatic mode)
+
+2005-12-02 15:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/mount_options.pm: add user_xattr (useful for
+ beagle, cf bugzilla #15068)
+
+2005-12-02 11:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: lilo handles / on RAID1, so don't warn in
+ that case (#20021)
+
+2005-12-01 17:35 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: add cdrdao-gcdmaster to burn audio
+ on gnome
+
+2005-11-30 16:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: typo fix
+
+2005-11-30 16:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-11-30 16:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: install_interactive.pm,
+ install_steps_interactive.pm, diskdrake/hd_gtk.pm,
+ diskdrake/interactive.pm, diskdrake/smbnfs_gtk.pm: typo fix
+
+2005-11-30 15:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.4-1mdk
+
+2005-11-30 12:54 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-11-30 11:34 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/: af.po, am.po, ar.po, az.po, be.po, bg.po,
+ bn.po, br.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po,
+ eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, fur.po, ga.po,
+ gl.po, he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po,
+ ko.po, ky.po, lt.po, ltg.po, lv.po, mk.po, mn.po, ms.po, mt.po,
+ nb.po, nl.po, nn.po, pa_IN.po, pl.po, pt_BR.po, pt.po, ro.po,
+ ru.po, sc.po, sk.po, sl.po, sq.po, sr@Latn.po, sr.po, sv.po,
+ ta.po, tg.po, th.po, tl.po, tr.po, uk.po, uz@Latn.po, uz.po,
+ vi.po, wa.po, zh_CN.po, DrakX.pot, zh_TW.po: Updated POT file.
+
+2005-11-29 20:02 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: documentation fix
+
+2005-11-29 18:27 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: don't die if non-mandatory modules are missing,
+ warn and skip them
+
+2005-11-29 17:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: update zones file for
+ shorewall 3.0
+
+2005-11-29 17:09 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: add reference to the wiki page
+
+2005-11-29 12:48 Olivier Blin <oblin at mandriva.com>
+
+ * tools/draklive: initial import
+
+2005-11-29 12:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: (do_switch) automatically
+ install packages
+
+2005-11-29 12:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: install_interactive.pm,
+ install_steps_interactive.pm, diskdrake/hd_gtk.pm,
+ diskdrake/interactive.pm, diskdrake/smbnfs_gtk.pm: set title &
+ icon of banner for most partitionning steps
+
+2005-11-29 12:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive.pm: (ask_okcancel,ask_warn) enable to
+ set an icon (eg for banners at install time)
+
+2005-11-29 12:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile: remove old outdated cleanup rule (it's no
+ more needed for years)
+
+2005-11-29 12:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * docs/HACKING: clean build requires: - glib2-devel and gtk+2-devel
+ are *NOT* needed - ext2fs2-devel is no more needed (we use vol_id
+ now) - rpm-devel is no more needed too (we only use it through
+ perl-URPM now)
+
+2005-11-28 19:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: (switch) be more robust
+
+2005-11-28 19:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: (do_switch) make package
+ installation actually work
+
+2005-11-28 19:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: simplify
+
+2005-11-28 16:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/modules.pl: qlogicisp is dead
+
+2005-11-28 15:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/: bootloader.pm: fix getting raid-extra-boot
+ (bugzilla #19965)
+
+2005-11-28 13:19 Pixel <pixel at mandriva.com>
+
+ * rescue/partimage_whole_disk: fix restoring many primary
+ partitions
+
+2005-11-28 12:06 Pixel <pixel at mandriva.com>
+
+ * rescue/: list.xml, tree/etc/rc.sysinit: disable the weird echoprt
+ in cooked mode for user interaction
+
+2005-11-26 08:32 Sharuzzaman Ahmat Raslan <sharuzzaman at myrealbox.com>
+
+ * perl-install/share/po/ms.po: Updated Malay translation
+
+2005-11-25 20:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.3-1mdk
+
+2005-11-25 20:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-11-25 20:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: (real_main) once ISP DB is
+ loaded, do not bother reload it
+
+2005-11-25 20:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/netconnect.pm: (real_main) usuability:
+ preselect first ISP of user's country
+
+2005-11-24 14:44 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated zh_CN translation
+
+2005-11-23 18:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: fix for localedrake in text mode
+
+2005-11-23 18:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/finish-install: allow to blacklist steps
+ in /etc/sysconfig/finish-install
+
+2005-11-23 18:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/finish-install: locale is now set by
+ any::selectLanguage_standalone
+
+2005-11-23 17:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: any.pm: apply locale settings immediately
+
+2005-11-23 17:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/list.xml, rescue/list.xml: adapt to
+ MDV::Packdrakeng
+
+2005-11-23 17:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/run_program.pm: don't use /root/tmp if /root doesn't
+ exist (fixes using it in rescue)
+
+2005-11-23 17:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/finish-install: add ask_keyboard step
+
+2005-11-23 17:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/: keyboard.pm, standalone/keyboarddrake: create new
+ function and use it
+
+2005-11-23 15:26 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakfont: make dialog variable local, to
+ avoid crappy workarounds that don't even work
+
+2005-11-22 15:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/devices.pm: add some useful devices for live systems
+ build
+
+2005-11-22 15:40 Olivier Blin <oblin at mandriva.com>
+
+ * tools/drakx-in-chroot: don't run Xnest if an auto_install file is
+ used
+
+2005-11-22 15:38 Olivier Blin <oblin at mandriva.com>
+
+ * tools/drakx-in-chroot: contatenate auto_install and defcfg files
+ into a new auto_install file in install root
+
+2005-11-22 15:31 Olivier Blin <oblin at mandriva.com>
+
+ * tools/drakx-in-chroot: do not commit suicide if Xnest isn't used
+
+2005-11-22 15:30 Olivier Blin <oblin at mandriva.com>
+
+ * tools/drakx-in-chroot: remove destination dir as root, and create
+ it if not existent
+
+2005-11-22 14:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: qlogicisp was removed from the kernel
+
+2005-11-21 18:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.2-1mdk
+
+2005-11-21 16:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: ifw.pm, monitor.pm: use new DBus typing
+ facilities
+
+2005-11-21 15:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/pkgs.pm: fix rpmsrate negations when not installing
+ a live system
+
+2005-11-21 15:40 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/wa.po: updated Walloon file (better strings
+ in drakfont)
+
+2005-11-21 15:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/pkgs.pm: (read_rpmsrate) do not match
+ CAT_(KDE|GNOME|...) and ignore ! while installing a live system
+
+2005-11-21 15:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/pkgs.pm: (read_rpmsrate) let "build_live_system"
+ mode be selected by auto config file
+
+2005-11-21 15:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/make_live: typo fix
+
+2005-11-21 15:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/pkgs.pm: (read_rpmsrate) install all hardware
+ related packages when building a live system
+
+2005-11-21 14:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: ones less space
+
+2005-11-21 14:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_any.pm: (default_packages) better let
+ rpmsrate handle ALSA packages installation
+
+2005-11-21 14:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_any.pm: (default_packages) typo fix
+
+2005-11-21 13:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: install_steps_interactive.pm, harddrake/sound.pm,
+ share/rpmsrate, install_any.pm: install aoss too when installing
+ ALSA
+
+2005-11-21 13:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: perl_checker fix
+
+2005-11-21 13:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: refer to xorg.conf man page
+ instead of XF86Config (Yukiko Bando)
+
+2005-11-21 12:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/rpmsrate: bpalogin is required for Telstra's
+ BPA cable connections
+
+2005-11-21 11:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/mount_options.pm: simplify text for option
+ "users" (was not accurate and much too verbose) (see also
+ bugzilla #19848)
+
+2005-11-21 10:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: fix catching fs::dmraid::init() failure
+
+2005-11-19 16:51 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-11-18 17:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: add bug references in
+ 10.3-0.64.3.20060mdk's changelog
+
+2005-11-18 17:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: add bug references in 10.4.1-1mdk's
+ changelog
+
+2005-11-18 17:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix release number after removing
+ %mkrel
+
+2005-11-18 16:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: br.po, fr.po: update
+
+2005-11-18 16:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, am.po, ar.po, az.po,
+ be.po, bg.po, bn.po, br.po, bs.po, ca.po, cs.po, cy.po, da.po,
+ de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po,
+ fur.po, ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po, is.po,
+ it.po, ja.po, ko.po, ky.po, lt.po, ltg.po, lv.po, mk.po, mn.po,
+ ms.po, mt.po, nb.po, nl.po, nn.po, pa_IN.po, pl.po, pt.po,
+ pt_BR.po, ro.po, ru.po, sc.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tl.po, tr.po, uk.po,
+ uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: Updated POT
+ file
+
+2005-11-18 15:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4.1-1mdk
+
+2005-11-18 14:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.3.20060mdk
+
+2005-11-18 14:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: rename 10.3-0.1.20060mdk as
+ 10.3-0.2.20060mdk since till previously uploaded an update :-(
+
+2005-11-18 13:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: perl_checker compliance
+
+2005-11-18 12:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: add button "Label" (in
+ expert for now) to set the "volume label" (and so get LABEL= in
+ fstab and lilo.conf)
+
+2005-11-17 19:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-11-17 14:38 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: have the same kernel for alt0 on both CD and
+ all.img
+
+2005-11-16 16:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: remember 'restricted' wireless
+ mode
+
+2005-11-16 16:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: don't crash if mandi isn't
+ started
+
+2005-11-16 16:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: don't screw up eagle-usb devices if
+ the firmware is already loaded
+
+2005-11-16 16:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: don't screw up eagle-usb devices if
+ the firmware is already loaded
+
+2005-11-16 13:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: all_ide category: only list IDE drivers
+ *not* compiled as modules
+
+2005-11-16 13:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add new drivers: - IDE: cs5535, pata_amd,
+ pata_opti, pata_sil680, pata_triflex, pata_via - SCSI:
+ qlogicfas408
+
+2005-11-15 18:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/mount_options.pm: handle "users" the way "user"
+ is handled
+
+2005-11-15 18:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/: diskdrake/interactive.pm, fs/mount_options.pm:
+ handle "users" the way "user" is handled
+
+2005-11-15 17:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/printer/: main.pm, printerdrake.pm: adapt to new
+ cat_() only accepting files, ie not doing popen anymore
+
+2005-11-15 13:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-11-14 15:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: remember 'restricted' wireless
+ mode
+
+2005-11-14 14:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: don't crash if mandi isn't
+ started
+
+2005-11-14 12:04 Sharuzzaman Ahmat Raslan <sharuzzaman at myrealbox.com>
+
+ * perl-install/share/po/ms.po: Updated Malay translation
+
+2005-11-14 11:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/upgrade/conectiva.10/: map: fix upgrading
+ conectivaoffice pkg (bugzilla #18948)
+
+2005-11-12 18:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: monitor.pm: fix wireless network list
+ using iwlist (`` returns a defined empty string if the command
+ fails)
+
+2005-11-10 16:21 Pixel <pixel at mandriva.com>
+
+ * rescue/make_rescue_img: partimage_whole_disk takes care of
+ configuring network when needed
+
+2005-11-10 16:18 Pixel <pixel at mandriva.com>
+
+ * rescue/partimage_whole_disk: configure network if needed
+
+2005-11-10 15:55 Pixel <pixel at mandriva.com>
+
+ * rescue/: make_rescue_img, tree/etc/rc.sysinit, list.xml: minimal
+ i18n support
+
+2005-11-10 14:48 Pixel <pixel at mandriva.com>
+
+ * rescue/partimage_whole_disk: new option (bzip2), enabled by
+ default
+
+2005-11-10 09:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/: dmraid.pm: when calling dmraid, replace -ccs
+ and -ccr with -s -c -c and -r -c -c (the former doesn't work
+ anymore with dmraid 1.0.0 RC9) (cf #19654, thanks a lot to Thomas
+ Backlund)
+
+2005-11-08 17:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: fix zd1201 devices detection as
+ well
+
+2005-11-08 17:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: handle zd1201 as well
+
+2005-11-08 16:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.1.20060mdk
+
+2005-11-08 13:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/patch/patch-2006-fix-parsing-dmraid.pl: log is mixed
+ with valid data (bugzilla #19654)
+
+2005-11-08 13:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add aic94xx, mptfc, mptsas, snd-asihpi &
+ snd-cs5535audio drivers
+
+2005-11-08 13:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/Makefile: (check) pcitable is compressed now
+
+2005-11-08 11:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fsedit.pm, fs/dmraid.pm: do not call dmraid init()
+ by default, call it explictly (it helps patching dmraid)
+
+2005-11-08 11:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/: dmraid.pm: log is mixed with valid data
+ (bugzilla #19654)
+
+2005-11-07 19:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: br.po, ms.po, wa.po, zh_TW.po: update
+ translations from TRUNK
+
+2005-11-07 19:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4-0.3mdk
+
+2005-11-07 19:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: add bug reference in requires
+ explanations
+
+2005-11-07 18:17 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: use disconnected icon if no
+ route, even if wifi is associated
+
+2005-11-07 18:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/monitor.pm: don't log wpa_cli/iwgetid/iwlist
+ commands
+
+2005-11-07 18:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: don't duplicate variables (MTU,
+ NETMASK, IPADDR) in ifcfg files (#19325)
+
+2005-11-07 18:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: temporary workaround to have
+ device-independant config files in wireless.d
+
+2005-11-07 18:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: set hostname only after packages
+ have been installed, or else graphical urpmi may fail
+
+2005-11-07 18:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: fix rt2400/rt2500 devices
+ detection (workaround for their missing "device" link in sysfs)
+
+2005-11-07 18:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: don't let interfaces with
+ unknown drivers be configured
+
+2005-11-07 15:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: (install_server) properly handle
+ switch between nvidia & nvidia_legacy: prevent having both
+ nvidia_legacy-kerne and nvidia-kernel, thus resulting in having
+ two drivers with the same name:
+
+ The following packages have to be removed for others to be
+ upgraded: nvidia-7676-5mdk.i586 (en raison de conflit avec
+ nvidia_legacy-7174-3mdk.i586)
+
+ installing nvidia_legacy-7174-3mdk.i586.rpm
+ nvidia_legacy-kernel-2.6.12-12mdk-7174-1mdk.i586.rpm from
+ //mnt/disk/bin lemel nvidia-7676-5mdk.i586 Emaon o prienti ...
+ #############################################
+ 1/2: nvidia_legacy
+ #############################################
+
+ Relaunch XFdrake to configure your NVidia cards warning:
+ /etc/ld.so.conf.d/nvidia.conf saved as
+ /etc/ld.so.conf.d/nvidia.conf.rpmsave 2/2:
+ nvidia_legacy-kernel-2.6.12-12mdk#############################################
+
+ Error! This module/version combo is already installed for kernel:
+ 2.6.12-12mdk (i586) nvidia_legacy, 7174, 2.6.12-12mdk, i586:
+ installed (WARNING! Diff between built and installed module!)
+
+ root@du mdk/gi/perl-install # rpm -qa nvidia\*
+ nvidia_legacy-kernel-2.6.12-12mdk-7174-1mdk
+ nvidia-kernel-2.6.12-12mdk-7676-1mdk nvidia_legacy-7174-3mdk
+
+2005-11-07 15:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-11-07 15:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: add "Requires: perl-suid" for
+ fileshareset and filesharelist (bugzilla #17123)
+
+2005-11-07 15:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getSagem) handle new ueagle-atm
+ driver
+
+2005-11-07 15:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add ueagle-atm USB ADSL driver
+
+2005-11-05 15:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/monitor.pm: don't log wpa_cli/iwgetid/iwlist
+ commands
+
+2005-11-04 18:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: use mkrel
+
+2005-11-04 16:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ifw.pm: make sure Net::DBus::Binding::Value
+ is loaded
+
+2005-11-04 16:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: use $wnet variable name to
+ disambiguate wireless network and global net settings
+
+2005-11-04 14:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/authentication.pm: perl_checko cleanup
+
+2005-11-04 12:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps.pm:
+ (is_network_install) use it whenever possible
+
+2005-11-04 12:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/authentication.pm: (set_raw) restart ypbind in
+ install too (killing old todo)
+
+2005-11-04 11:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: don't duplicate variables (MTU,
+ NETMASK, IPADDR) in ifcfg files (#19325)
+
+2005-11-03 18:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: make it more readable
+
+2005-11-03 11:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/run_program.pm: don't use /root/tmp if /root doesn't
+ exist (fixes using it in rescue)
+
+2005-11-02 16:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: temporary workaround to have
+ device-independant config files in wireless.d
+
+2005-11-02 13:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: fix typo (thanks to Berthy)
+
+2005-11-02 12:22 berthy
+
+ * perl-install/share/po/fr.po: Updated French translation
+
+2005-10-31 13:32 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: - Fixed setting up printers with
+ pre-made Foomatic PPD in /usr/share/cups/model (bug #19524).
+
+2005-10-29 05:30 Sharuzzaman Ahmat Raslan <sharuzzaman at myrealbox.com>
+
+ * perl-install/share/po/ms.po: Updated Malay translation
+
+2005-10-28 18:05 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/: af.po, am.po, ar.po, az.po, be.po, bg.po,
+ bn.po, br.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po,
+ eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, fur.po, ga.po,
+ gl.po, he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po,
+ ko.po, ky.po, lt.po, ltg.po, lv.po, mk.po, mn.po, ms.po, mt.po,
+ nb.po, nl.po, nn.po, pa_IN.po, pl.po, pt_BR.po, pt.po, ro.po,
+ ru.po, sc.po, sk.po, sl.po, sq.po, sr@Latn.po, sr.po, sv.po,
+ ta.po, tg.po, th.po, tl.po, tr.po, uk.po, uz@Latn.po, uz.po,
+ vi.po, wa.po, zh_CN.po, zh_TW.po, DrakX.pot: Updated POT file.
+
+2005-10-28 15:34 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/wa.po: updated Walloon file
+
+2005-10-27 20:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: crappy workaround for
+ rt2400/rt2500 and their missing "device" link in sysfs
+
+2005-10-27 20:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: fix typo
+
+2005-10-27 19:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: don't let interfaces with
+ unknown drivers be configured
+
+2005-10-27 18:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: use standard 'mac' modifier in
+ iftab for IEEE1394, EUI64 and IRDA
+
+2005-10-25 06:02 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po file
+
+2005-10-24 12:53 renato
+
+ * perl-install/share/po/pt_BR.po: 1 fuzzy and 1 not translated
+ strings.1 fuzzy and 1 not translated strings.1 fuzzy and 1 not
+ translated strings.1 fuzzy and 1 not translated strings.1 fuzzy
+ and 1 not translated strings.1 fuzzy and 1 not translated
+ strings.1 fuzzy and 1 not translated strings.1 fuzzy and 1 not
+ translated strings.1 fuzzy and 1 not translated strings.1 fuzzy
+ and 1 not translated strings.1 fuzzy and 1 not translated
+ strings.
+
+2005-10-24 02:46 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated Contact Info
+
+2005-10-23 19:41 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po file
+
+2005-10-23 14:36 Sharuzzaman Ahmat Raslan <sharuzzaman at myrealbox.com>
+
+ * perl-install/share/po/ms.po: Updated Malay translation
+
+2005-10-22 14:46 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
+
+ * perl-install/share/po/pl.po: Translation update
+
+2005-10-22 13:56 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/: DrakX.pot, af.po, am.po, ar.po, az.po,
+ be.po, bg.po, bn.po, br.po, bs.po, ca.po, cs.po, cy.po, da.po,
+ de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po,
+ fur.po, ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po, is.po,
+ it.po, ja.po, ko.po, ky.po, lt.po, ltg.po, lv.po, mk.po, mn.po,
+ ms.po, mt.po, nb.po, nl.po, nn.po, pa_IN.po, pl.po, pt.po,
+ pt_BR.po, ro.po, ru.po, sc.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tl.po, tr.po, uk.po,
+ uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: Updated POT
+ file.
+
+2005-10-21 20:30 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates soft/initscripts/po/da.po
+ gi/perl-install/share/po/da.po
+
+2005-10-21 11:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: safer
+
+2005-10-21 11:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: ensure we don't load both
+ "/usr/X11R6/lib/modules/extensions/libglx.so" and
+ "/usr/X11R6/lib/modules/extensions/nvidia/libglx.so" (backported
+ from HEAD) (bugzilla #19285)
+
+2005-10-21 11:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: simplify (and make it more robust)
+
+2005-10-21 11:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: make it more easier to understand
+
+2005-10-20 20:14 Pixel <pixel at mandriva.com>
+
+ * rescue/: make_rescue_img, partimage_whole_disk: reboot if things
+ went nicely
+
+2005-10-20 19:54 Pixel <pixel at mandriva.com>
+
+ * rescue/make_rescue_img: fix reboot by creating /dev/initctl
+ (what's this??) (it was broken when called in rc.sysinit, it was
+ working otherwise)
+
+2005-10-20 19:51 Pixel <pixel at mandriva.com>
+
+ * rescue/partimage_whole_disk: install_bootloader should succeed
+ otherwise it's an error
+
+2005-10-20 19:05 Pixel <pixel at mandriva.com>
+
+ * rescue/partimage_whole_disk: make install_bootloader non
+ interactive
+
+2005-10-20 19:01 Pixel <pixel at mandriva.com>
+
+ * rescue/partimage_whole_disk: add ability to keep existing /home
+ (as requested by miura)
+
+2005-10-20 18:52 Pixel <pixel at mandriva.com>
+
+ * rescue/install_bootloader: doesn't display prompt if auto
+
+2005-10-20 18:51 Pixel <pixel at mandriva.com>
+
+ * rescue/install_bootloader: add option --auto to install without
+ prompting
+
+2005-10-20 18:34 Pixel <pixel at mandriva.com>
+
+ * rescue/partimage_whole_disk: simplify (remove code choosing best
+ master to restore from)
+
+2005-10-20 18:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/printer/detect.pm: old perl_checker compliance
+
+2005-10-20 18:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/printer/detect.pm: old perl_checker compliance
+
+2005-10-20 18:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/.perl_checker: need this to build po
+
+2005-10-20 18:08 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Fix test for dangling symlink
+
+2005-10-20 18:05 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: - perl_checker fix.
+
+2005-10-20 18:04 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
+
+ * perl-install/share/po/pl.po: Translation updates
+
+2005-10-20 18:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: old perl_checker compliance
+
+2005-10-20 16:05 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: printer/cups.pm, printer/data.pm,
+ printer/default.pm, printer/detect.pm, printer/gimp.pm,
+ printer/main.pm, printer/office.pm, printer/printerdrake.pm,
+ printer/services.pm, standalone/printerdrake: - Updated
+ printerdrake to the state of Mandriva 2006: o HPLIP support
+ o Gutenprint support o support for several other new drivers
+ o Printer communication error handling o Main window of
+ printerdrake comes up faster o Many bug fixes and detail
+ improvements
+
+2005-10-20 15:53 neoclust
+
+ * perl-install/share/po/fr.po: Updated French translation
+
+2005-10-20 14:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: add "Requires: perl-suid" for
+ fileshareset and filesharelist (bugzilla #17123)
+
+2005-10-20 14:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-10-20 08:47 Pixel <pixel at mandriva.com>
+
+ * rescue/partimage_whole_disk: make it an option to keep
+ empty_space_at_end_of_disk
+
+2005-10-19 19:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_interactive.pm: more meaningful message
+ (bugzilla #19249)
+
+2005-10-19 19:11 Pixel <pixel at mandriva.com>
+
+ * docs/comparisons: fix typo
+
+2005-10-19 19:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: increase "/" maxsize (bugzilla #19353)
+
+2005-10-19 13:25 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone/harddrake2: - use drakfirstboot wizard
+ instead of mdkonline
+
+2005-10-19 01:13 neoclust
+
+ * perl-install/share/po/fr.po: Updated French translation
+
+2005-10-18 19:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/bootsplash.pm: perl_checker cleanups
+
+2005-10-18 19:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: perl_checko cleanup
+
+2005-10-18 15:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4-0.2mdk
+
+2005-10-18 14:15 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: do not merge AGP section into
+ BRIDGES one (translation is availlable for quite a long time)
+
+2005-10-18 14:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: Club integration for
+ proprietary drivers: offer to subscribe to Mandriva Club if some
+ proprietary packages are needed and are not availlable, thus
+ allowing automatic download/installation of proprietary drivers
+ from Club
+
+2005-10-18 14:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add cassini (ethernet) & pdc_adma (SATA)
+ drivers
+
+2005-10-18 11:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/patch/patch-2006-existing-md.pl: "mdadm --detail
+ --brief" doesn't contain "devices=..." anymore (since mdadm
+ 1.12.0), it needs option "-v" to keep previous behaviour
+
+2005-10-18 10:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/: raid.pm: "mdadm --detail --brief" doesn't contain
+ "devices=..." anymore (since mdadm 1.12.0), it needs option "-v"
+ to keep previous behaviour
+
+2005-10-18 10:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fsedit.pm, c/Makefile.PL, c/stuff.xs.pl,
+ fs/type.pm: use vol_id to find device type (fs_type and pt_type)
+
+2005-10-18 08:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/type.pm: separate hpfs and ntfs entries (even if
+ they both use the same type id in partition table) (bugzilla
+ #19322) (and also remove the special ppc case which is useless
+ inside a /^i.86|x86_64/ condition)
+
+2005-10-18 02:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: perl_checker fix
+
+2005-10-17 21:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: use disconnected icon if no
+ route, even if wifi is associated
+
+2005-10-17 19:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: also describe drakconnect changes
+ in 10.4-0.1mdk's changelog
+
+2005-10-17 19:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.4-0.1mdk
+
+2005-10-17 18:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: make it somewhat clearer
+
+2005-10-17 18:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-10-17 18:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: do display the driver
+ description (#5403)
+
+2005-10-17 12:11 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-10-17 09:11 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: jorge
+
+2005-10-15 09:25 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/: af.po, am.po, ar.po, az.po, be.po, bg.po,
+ bn.po, br.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po,
+ eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, fur.po, ga.po,
+ gl.po, he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po,
+ ko.po, ky.po, lt.po, ltg.po, lv.po, mk.po, mn.po, ms.po, mt.po,
+ nb.po, nl.po, nn.po, pa_IN.po, pl.po, pt_BR.po, pt.po, ro.po,
+ ru.po, sc.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po,
+ ta.po, tg.po, th.po, tl.po, tr.po, uk.po, uz@Latn.po, uz.po,
+ vi.po, wa.po, zh_CN.po, DrakX.pot, zh_TW.po: Updated POT file.
+
+2005-10-14 18:06 Sharuzzaman Ahmat Raslan <sharuzzaman at myrealbox.com>
+
+ * perl-install/share/po/ms.po: Updated Malay translation
+
+2005-10-12 15:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: add a couple comments
+
+2005-10-12 14:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: commands, harddrake/data.pm, standalone/drakperm:
+ perl_checker cleanup
+
+2005-10-10 15:40 renato
+
+ * perl-install/share/po/pt_BR.po: Solved some fuzzy and not
+ translated strings.
+
+2005-10-10 15:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix typo (reported by PierreLag)
+
+2005-10-10 13:41 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po:
+ Updated Estonian translation.
+
+2005-10-10 10:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/patch/patch-2006-no-dmraid.pl: option "nodmraid" is
+ broken in mdv2006
+
+2005-10-10 09:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: fix typo
+
+2005-10-09 03:47 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-10-08 20:44 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/: af.po, am.po, ar.po, az.po, be.po, bg.po,
+ bn.po, br.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po,
+ eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, fur.po, ga.po,
+ gl.po, he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po,
+ ko.po, ky.po, ltg.po, lt.po, lv.po, mk.po, mn.po, ms.po, mt.po,
+ nb.po, nl.po, nn.po, pa_IN.po, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.po, sc.po, sk.po, sl.po, sq.po, sr@Latn.po, sr.po, sv.po,
+ ta.po, tg.po, th.po, tl.po, tr.po, uk.po, uz@Latn.po, uz.po,
+ vi.po, wa.po, zh_CN.po, zh_TW.po: Updated POT file
+
+2005-10-08 19:37 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/DrakX.pot: Updated POT file.
+
+2005-10-07 18:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/run_program.pm: fix previous commit so that
+ "prog1|prog2" like construction still work
+
+2005-10-07 10:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/run_program.pm: fix buggy previous commit, cleanup
+ and correctly indent. previous commit was: do not clober output
+ files (stdout or stderr) when binary cannot be found (#18987)
+
+2005-10-07 03:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/network.pm: (miscellaneous_choose) try
+ harder to explain (#17261)
+
+2005-10-07 03:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/run_program.pm: (raw) do not clober output files
+ (stdout or stderr) when binary cannot be found (#18987)
+
+2005-10-06 22:47 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: share/rpmsrate, lang.pm: scim-anthy-0.7 needs
+ kasumi
+
+2005-10-06 21:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules/interactive.pm: (config_window) properly
+ report no configurable parameter (#17579)
+
+2005-10-06 16:18 Pixel <pixel at mandriva.com>
+
+ * rescue/partimage_whole_disk: fix (same behaviour as before, but
+ option save_home_directory really mean what it says)
+
+2005-10-06 14:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: remove duplicate case
+
+2005-10-06 14:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: (libgl_config) - handle
+ nvidia_legacy - don't create files (and thus don't run ldconfig
+ when not needed)
+
+2005-10-06 14:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: (to_raw_X) make it more readable
+ and ensure only one glx is loaded: - factorize test -
+ set_load_module with test on DRI_GLX_SPECIAL doesn't work when
+ DRI_GLX_SPECIAL isn't set o remove vendor's glx when
+ DRI_GLX_SPECIAL is not set
+
+2005-10-06 14:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: (to_raw_X, install_server) fix X11
+ segfaulting with nvidia driver, aka prevent loading both Xorg's
+ glx and nvidia's glx (also prevent glixinfo from segfaulting when
+ using nv driver while nvidia packages're installed btw)
+
+2005-10-05 19:43 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/: card.pm: don't modify
+ /etc/ld.so.conf.d/{nvidia,ati}.conf if file does not exist
+ (otherwise at package install time, one gets a .rpmnew)
+
+2005-10-05 19:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (get_sysfs_usbpath_for_block)
+ introduce it in order to factorize code
+
+ (complete_usb_storage_info) use sane way for handling multiple
+ USB disks of the same vendor (aka compare hosts)
+
+2005-10-05 14:04 Pixel <pixel at mandriva.com>
+
+ * rescue/make_partimage_save_rest_all: acpi=ht is bad on some boxes
+ (=> sata_sis not working)
+
+2005-10-03 18:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules/any_conf.pm: (read_raw) explain (ie add
+ comments)
+
+2005-10-03 18:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: use /lib/firmware as default
+ firmware directory
+
+2005-10-03 18:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_any.pm: (default_packages) install powernowd
+ on x86_64 (since they've the cool&quiet technology) and athcool
+ on athlon32
+
+2005-10-03 18:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_any.pm: (default_packages) "alsa" doesn't
+ exists
+
+2005-10-03 11:39 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
+
+ * perl-install/share/po/pl.po: Translation updates
+
+2005-10-03 09:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/patch/patch-2006-new-dmraid.pl: allow using an
+ updated dmraid
+
+2005-10-02 16:02 Sharuzzaman Ahmat Raslan <sharuzzaman at myrealbox.com>
+
+ * perl-install/share/po/ms.po: Updated Malay translation
+
+2005-10-01 17:10 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/share/po/is.po: Small consistency changes
+
+2005-09-30 17:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakhelp: fallback nicely, trying english
+ if i18n doc not available (need a change in ctxhelp, but won't
+ fail worse than current behaviour without it)
+
+2005-09-30 17:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakhelp: cleanup
+
+2005-09-29 17:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: nvidia installer now
+ uses a new place
+
+2005-09-29 17:04 renato
+
+ * perl-install/share/po/pt_BR.po: 3 errors in pt_BR for
+ drakconf.po.
+
+2005-09-29 13:58 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Add stellarium
+
+2005-09-29 12:47 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/modules.pl: don't print empty rejected list
+
+2005-09-29 12:47 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/modules.pl: keep 2.4 compatibility aliases in modules list
+ for stage1
+
+2005-09-29 12:40 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/modules.pl: simplify (Pixel, me sux)
+
+2005-09-29 10:31 Pixel <pixel at mandriva.com>
+
+ * kernel/modules.pl: the perl_checker compliant way
+
+2005-09-29 01:27 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/modules.pl: factorize chomps
+
+2005-09-29 01:22 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/modules.pl: fix typo
+
+2005-09-29 01:21 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/modules.pl: restore disambiguating {; (even if
+ perl_checker doesn't support it)
+
+2005-09-28 23:31 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: test if
+ /etc/sysconfig/wizard_samba exist (commented)
+
+2005-09-28 19:38 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/modules.pl: perl_checker fixes
+
+2005-09-28 19:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ndiswrapper.pm: simplify
+
+2005-09-28 19:03 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
+
+ * perl-install/share/po/pl.po: Translation updates
+
+2005-09-28 17:32 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/modules.pl: reject unavailable modules in stage1 list
+ (#18803)
+
+2005-09-28 17:30 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/modules.pl: use correct directory to list modules when
+ called from another directory
+
+2005-09-28 17:02 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/modules.pl: split all_modules.tar listing in
+ get_main_modules()
+
+2005-09-28 16:34 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/modules.pl: use all_modules.tar to get modules list
+
+2005-09-28 16:19 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/modules.pl: handle kernel naming such as
+ kernel-i586-up-1GB-2.6*
+
+2005-09-28 16:18 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/modules.pl: use local RPMS directory (/RPMS isn't used
+ anywhere now)
+
+2005-09-28 14:57 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/share/rpmsrate: - Removed HPOJ and subpackages from
+ rpmsrate (obsolete, replaced by HPLIP). - Removed mtoolsfm
+ from rpmsrate (was only needed by HPOJ).
+
+2005-09-28 14:51 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: printer/detect.pm, printer/main.pm,
+ printer/printerdrake.pm, standalone/printerdrake: - Let parallel
+ HP printers be set up with HPLIP. - Removed HPOJ support (HPOJ
+ obsolete, now completely replaced by HPLIP). - Warn the user if
+ an HP printer is connected via a port which is not supported by
+ HPLIP. - Fixed printerdrake freezing when choosing a machine as
+ remote CUPS server (for daemon-less client) which does not
+ exist or does not run CUPS. - Let network printer detection
+ also work if the DNS is misconfigured. - Let "Printer options"
+ entry in printer editing menu only disapppear if there are
+ really no options (entry disappeared also for Sagem MF3625 with
+ empty manufacturer name in the PPD). - Fixed raw queue being
+ shown with "driver: PPD" and not "driver: raw". - Do not use
+ "Unknown model" and "Unknown Model", this somtimes broke
+ identifying a print queue as being for an unknown printer. - Do
+ not die if /usr/share/hplip/data/xml/models.xml (HPLIP printer
+ database) is missing, this allows creation of live distros
+ without HPLIP. - Fixed loop of determining the HPLIP device
+ URI for local printers in the "printer::main::start_hplip()"
+ function.
+
+2005-09-28 14:37 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: printer/detect.pm, printer/main.pm,
+ printer/printerdrake.pm, standalone/printerdrake: - Let parallel
+ HP printers be set up with HPLIP. - Removed HPOJ support (HPOJ
+ obsolete, now completely replaced by HPLIP). - Warn the user if
+ an HP printer is connected via a port which is not supported by
+ HPLIP. - Fixed printerdrake freezing when choosing a machine as
+ remote CUPS server (for daemon-less client) which does not
+ exist or does not run CUPS. - Let network printer detection
+ also work if the DNS is misconfigured. - Let "Printer options"
+ entry in printer editing menu only disapppear if there are
+ really no options (entry disappeared also for Sagem MF3625 with
+ empty manufacturer name in the PPD). - Fixed raw queue being
+ shown with "driver: PPD" and not "driver: raw". - Do not use
+ "Unknown model" and "Unknown Model", this somtimes broke
+ identifying a print queue as being for an unknown printer. - Do
+ not die if /usr/share/hplip/data/xml/models.xml (HPLIP printer
+ database) is missing, this allows creation of live distros
+ without HPLIP. - Fixed loop of determining the HPLIP device
+ URI for local printers in the "printer::main::start_hplip()"
+ function.
+
+2005-09-28 14:30 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
+
+ * perl-install/share/po/pl.po: Some translation corrections
+
+2005-09-27 19:57 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
+
+ * perl-install/share/po/pl.po: Some translation corrections
+
+2005-09-27 19:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: install2.pm: (main) do not stop bootsplash on
+ globetrotter
+
+2005-09-27 19:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: any.pm: (autologin) always show the autologing
+ config step for globetrotter
+
+2005-09-27 19:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: any.pm: (autologin) always enable autologin on
+ globetrotter
+
+2005-09-27 17:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/monitor.pm: backport 1.43 fix: add missing
+ chomp_
+
+2005-09-27 12:09 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/pt.po: fixed end of line
+
+2005-09-27 11:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/do_pkgs.pm: ensure we don't prompt things when we
+ are not interactive
+
+2005-09-27 11:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/patch/patch-2006-auto_install_LDAP_auth.pl: fix
+ error calling ask_okcancel on object install_steps_auto_install
+ when setting LDAP authentication
+
+2005-09-27 11:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: cleanup, and especially call
+ ensure_are_installed with parameter "auto" during install (esp.
+ to fix calling authentication::set with $o which is not
+ interactive)
+
+2005-09-27 11:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/do_pkgs.pm: get rid of "rpmq: no arguments given for
+ query" (eg: when calling ensure_are_installed with an empty list)
+
+2005-09-27 02:52 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Avoid wiping out user cron
+
+2005-09-27 00:56 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Add EA (xattr) to star
+ Optional view restore log Redo compression flag set code
+
+2005-09-26 22:40 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Extended ACL support user
+ star (#17761) Multiple email recipients (user requested feature)
+ Code cleanups, use do_pkgs->install Fix bug on restore with file
+ in 2 archives
+
+2005-09-26 18:57 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Install mkisofs if needed.
+ Refuse to creates images without a NIC.
+
+2005-09-26 17:22 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
+
+ * perl-install/share/po/pl.po: Some translation corrections
+
+2005-09-26 16:19 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
+
+ * perl-install/share/po/pl.po: Some translations corrections
+
+2005-09-26 15:59 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
+
+ * perl-install/share/po/pl.po: Some corrections
+
+2005-09-26 11:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: use compact by default, it is
+ strongly suggested in lilo's documentation even if it can lead to
+ bios issues.
+
+ to be disabled if it causes pbs
+
+2005-09-26 10:54 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Comment fix
+
+2005-09-26 10:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: - password entry field should not
+ show the password (bugzilla #18800) - fix typo
+
+2005-09-26 07:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * globetrotter/move.pm: (init) hotplug is obsoleted by udev
+
+2005-09-26 05:01 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-09-25 23:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/pl.po: fix obviously wrong translation
+ (#18831)
+
+2005-09-25 14:36 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Fix mis-sorted progress bars
+
+2005-09-25 14:18 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Fix mis-sorted progress bars
+
+2005-09-25 14:10 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Fix mis-sorted progress bars
+
+2005-09-25 14:01 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Fix mis-sorted progress bars
+
+2005-09-25 11:05 Karl Ove Hufthammer <karl at huftis.org>
+
+ * perl-install/share/po/nn.po: Updated translations.
+
+2005-09-24 18:11 Inigo Salvador Azurmendi <xalba at euskalnet.net>
+
+ * perl-install/share/po/eu.po: 20 itzulpen falta dira.
+
+2005-09-24 02:18 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Profile support (#17566)
+ Enhance cron support o weekday ranges (#18290) o multiple
+ cron jobs o use profiles
+
+2005-09-23 23:59 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/share/po/is.po: Almost done
+
+2005-09-23 15:44 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
+
+ * perl-install/share/po/pl.po: Some corrections
+
+2005-09-23 14:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: - fix skype ad - translate a few
+ more ads
+
+2005-09-23 11:20 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/po/: de.po, es.po, fr.po, it.po: fixed
+ translation for the skype string
+
+2005-09-23 01:54 Wanderlei Antonio Cavassin <cavassin at mandriva.com>
+
+ * perl-install/share/po/pt_BR.po: Using a better translation string
+ (interactive firewall).
+
+2005-09-22 18:11 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-09-22 17:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: cleanup sanitize_ver(), makes label
+ longer but cleaner
+
+2005-09-22 17:03 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
+
+ * perl-install/share/po/pl.po: Translation updates
+
+2005-09-22 15:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fsedit.pm, lvm.pm: fix typos (thanks to Arpad
+ Biro)
+
+2005-09-22 14:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: (interactive_mode) fix layout
+
+2005-09-22 14:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-09-22 14:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakfont: (license_msg) merge 2 similar
+ strings
+
+2005-09-22 13:44 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/mk.po: updated Macedonian file
+
+2005-09-22 13:41 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/mk.po: updated po file
+
+2005-09-21 23:40 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, am.po, ar.po, az.po,
+ be.po, bg.po, bn.po, br.po, bs.po, ca.po, cs.po, cy.po, da.po,
+ de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po,
+ fur.po, ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po, is.po,
+ it.po, ja.po, ko.po, ky.po, lt.po, ltg.po, lv.po, mk.po, mn.po,
+ ms.po, mt.po, nb.po, nl.po, nn.po, pa_IN.po, pl.po, pt.po,
+ pt_BR.po, ro.po, ru.po, sc.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tl.po, tr.po, uk.po,
+ uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot
+ file
+
+2005-09-21 23:11 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: updated translation
+
+2005-09-21 22:13 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: added "fo" keyboard
+
+2005-09-21 22:06 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/keyboard.pm: synchronized XKB keyboard names with
+ what is in latest xorg
+
+2005-09-21 14:05 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2005-09-21 13:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: set hostname only after packages
+ have been installed, or else graphical urpmi may fail
+
+2005-09-21 02:06 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/wa.po: updated Walloon file
+
+2005-09-20 19:47 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/tg.po: updated Tajik file
+
+2005-09-20 18:19 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/rpmsrate: mindawn default, a320raid pci ids
+ too
+
+2005-09-20 18:11 neoclust
+
+ * perl-install/share/po/de.po: Updated translation from Frank
+ K.ster
+
+2005-09-20 18:08 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: add skype
+
+2005-09-20 17:23 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/share/po/ru.po: updated translation
+
+2005-09-20 14:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: last inside a "do ... until ..." is bad
+
+2005-09-20 14:18 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/rpmsrate: put lisa in level 4
+
+2005-09-20 14:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: don't warn lisa (which is installed by
+ default)
+
+2005-09-20 13:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: typo fix
+
+2005-09-20 13:18 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
+
+ * perl-install/share/po/pl.po: Translation updates
+
+2005-09-20 13:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix dvb crash during install
+
+2005-09-20 12:50 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: fix discovery-icons-theme position
+
+2005-09-20 12:15 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: fix discovery-icons-theme position
+
+2005-09-20 12:00 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates
+ soft/menu-messages/main/da.po gi/perl-install/share/po/da.po
+
+2005-09-20 11:53 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: fix discovery-icons-theme duplicated
+
+2005-09-20 09:29 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: add various packs customization
+
+2005-09-20 07:47 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/sl.po: Updated sl translations.
+
+2005-09-20 05:58 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-09-20 00:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: show IFW button even if not
+ connected (#18708)
+
+2005-09-20 00:28 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po: * Sep 20 2005 Reinout van Schouwen
+ <reinout@cs.vu.nl> Last few strings in Dutch translation
+
+2005-09-19 23:19 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: jorge
+
+2005-09-19 22:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-09-19 22:08 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Do not auto-install
+ "sane-frontends" for MF devices.
+
+2005-09-19 21:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: detect_devices.pm, modules.pm: drop sr_mod
+ workarounds, it's now handled by udev coldplug
+
+2005-09-19 20:03 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/po/fr.po: fixes from marketing.
+
+2005-09-19 19:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: don't try to connect
+ auto-magically ethernet interfaces during configuration in
+ install
+
+2005-09-19 19:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: restart ethernet interface
+ for pppoe connections
+
+2005-09-19 19:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: add some reminders, fix
+ indentation
+
+2005-09-19 19:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-09-19 19:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.64mdk
+
+2005-09-19 19:17 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix typo
+
+2005-09-19 18:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/: various.pm: (setupFB) fix reading
+ bootloader config
+
+2005-09-19 18:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: test.pm, tools.pm: use mandriva.com for
+ connection tests
+
+2005-09-19 17:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: increase /usr max size
+
+2005-09-19 16:36 Wanderlei Antonio Cavassin <cavassin at mandriva.com>
+
+ * perl-install/share/po/pt_BR.po: Filled one more msg.
+
+2005-09-19 16:25 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: translate new ad
+
+2005-09-19 16:07 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po:
+ Updated Estonian translation.
+
+2005-09-19 15:39 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/: ta.po, tg.po, th.po, tl.po, tr.po, uk.po,
+ uz@Latn.po, uz.po, vi.po, wa.po, zh_CN.po, zh_TW.po: Updated POT
+ file
+
+2005-09-19 15:36 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/: pa_IN.po, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.po, sc.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po:
+ Updated POT file
+
+2005-09-19 15:32 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/: he.po, hi.po, hr.po, hu.po, id.po, is.po,
+ it.po, ja.po, ko.po, ky.po, lt.po, ltg.po, lv.po, mk.po, mn.po,
+ ms.po, mt.po, nb.po, nl.po, nn.po: Updated POT file
+
+2005-09-19 15:28 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/: af.po, am.po, ar.po, az.po, be.po, bg.po,
+ bn.po, br.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po,
+ eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, fur.po, ga.po,
+ gl.po: Updated POT file
+
+2005-09-19 15:20 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/DrakX.pot: Updated POT file.
+
+2005-09-19 14:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: update report.bug entries to have current
+ config files
+
+2005-09-19 14:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: (wait_msg) kill debug message
+
+2005-09-19 13:38 Warly <warly at mandriva.com>
+
+ * perl-install/share/advertising/list-dwd: fix skype and add intel
+
+2005-09-19 13:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: titi's patch is wrong, the
+ ->set_cursor being not done when selecting and exiting window on
+ the event (ie double clicking on the entry) we really would need
+ to do things more cleanly (i know on TextView ->scroll_to_mark
+ works better than ->scroll_to_cell)
+
+2005-09-19 13:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/detect_devices.pm: ensure titi has the good
+ tab-width
+
+2005-09-19 12:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: fs::proc_partitions::compare is no good
+ for dmraid, but we need to check if we agree with the kernel,
+ otherwise an uncatched error will occur (bugzilla #18655)
+
+2005-09-19 12:00 Warly <warly at mandriva.com>
+
+ * perl-install/share/advertising/: intel.pl, intel.png: add intel
+ ad
+
+2005-09-19 11:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: ugly hack: wait for usb-storage devices
+ to appear (bugzilla #13395)
+
+2005-09-19 11:00 Warly <warly at mandriva.com>
+
+ * perl-install/share/advertising/list-dwd: add skype add
+
+2005-09-19 10:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: fix hostap/orinoco driver
+ detection (#18294)
+
+2005-09-19 09:52 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: remove untranslated text
+
+2005-09-19 09:44 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: fix acroread rpmsrate completion
+
+2005-09-19 07:14 Sharuzzaman Ahmat Raslan <sharuzzaman at myrealbox.com>
+
+ * perl-install/share/po/ms.po: Updated Malay translation
+
+2005-09-19 07:11 Sharuzzaman Ahmat Raslan <sharuzzaman at myrealbox.com>
+
+ * perl-install/share/po/ms.po: Updated Malay translation
+
+2005-09-19 00:39 Michal Bukovjan <bukovjan at mbox.dkm.cz>
+
+ * perl-install/share/po/cs.po: Updated Czech translations.
+
+2005-09-18 23:53 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2005-09-18 22:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: add reminder
+
+2005-09-18 22:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: share/po/DrakX.pot, share/po/af.po,
+ standalone/draknfs, share/po/am.po, share/po/ar.po,
+ share/po/az.po, share/po/be.po, share/po/bg.po, share/po/bn.po,
+ share/po/br.po, share/po/bs.po, share/po/ca.po, share/po/cs.po,
+ share/po/cy.po, share/po/da.po, share/po/de.po, share/po/el.po,
+ share/po/eo.po, share/po/es.po, share/po/et.po, share/po/eu.po,
+ share/po/fa.po, share/po/fi.po, share/po/fr.po, share/po/fur.po,
+ share/po/ga.po, share/po/gl.po, share/po/he.po, share/po/hi.po,
+ share/po/hr.po, share/po/hu.po, share/po/id.po, share/po/is.po,
+ share/po/it.po, share/po/ja.po, share/po/ko.po, share/po/ky.po,
+ share/po/lt.po, share/po/ltg.po, share/po/lv.po, share/po/mk.po,
+ share/po/mn.po, share/po/ms.po, share/po/mt.po, share/po/nb.po,
+ share/po/nl.po, share/po/nn.po, share/po/pa_IN.po,
+ share/po/pl.po, share/po/pt_BR.po, share/po/pt.po,
+ share/po/ro.po, share/po/ru.po, share/po/sc.po, share/po/sk.po,
+ share/po/sl.po, share/po/sq.po, share/po/sr.po,
+ share/po/sr@Latn.po, share/po/sv.po, share/po/ta.po,
+ share/po/tg.po, share/po/th.po, share/po/tl.po, share/po/tr.po,
+ share/po/uk.po, share/po/uz.po, share/po/uz@Latn.po,
+ share/po/vi.po, share/po/wa.po, share/po/zh_CN.po,
+ share/po/zh_TW.po: typo fix
+
+2005-09-18 20:45 Thomas Backlund <tmb at mandrake.org>
+
+ * perl-install/share/po/sv.po: Updated translations, fully
+ translated, was 60 fuzzy, 147 untranslated.
+
+2005-09-18 18:20 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po: * Sep 18 2005 Reinout van Schouwen
+ <reinout@cs.vu.nl> Updated Dutch translation
+
+2005-09-18 03:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: force menu refresh when
+ interface status is modified (#18636)
+
+2005-09-18 02:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: share/po/DrakX.pot, share/po/af.po,
+ share/po/am.po, share/po/ar.po, share/po/az.po, share/po/be.po,
+ standalone/drakgw, share/po/bg.po, share/po/bn.po,
+ share/po/br.po, share/po/bs.po, share/po/ca.po, share/po/cs.po,
+ share/po/cy.po, share/po/da.po, share/po/de.po, share/po/el.po,
+ share/po/eo.po, share/po/es.po, share/po/et.po, share/po/eu.po,
+ share/po/fa.po, share/po/fi.po, share/po/fr.po, share/po/fur.po,
+ share/po/ga.po, share/po/gl.po, share/po/he.po, share/po/hi.po,
+ share/po/hr.po, share/po/hu.po, share/po/id.po, share/po/is.po,
+ share/po/it.po, share/po/ja.po, share/po/ko.po, share/po/ky.po,
+ share/po/lt.po, share/po/ltg.po, share/po/lv.po, share/po/mk.po,
+ share/po/mn.po, share/po/ms.po, share/po/mt.po, share/po/nb.po,
+ share/po/nl.po, share/po/nn.po, share/po/pa_IN.po,
+ share/po/pl.po, share/po/pt.po, share/po/pt_BR.po,
+ share/po/ro.po, share/po/ru.po, share/po/sc.po, share/po/sk.po,
+ share/po/sl.po, share/po/sq.po, share/po/sr.po,
+ share/po/sr@Latn.po, share/po/sv.po, share/po/ta.po,
+ share/po/tg.po, share/po/th.po, share/po/tl.po, share/po/tr.po,
+ share/po/uk.po, share/po/uz.po, share/po/uz@Latn.po,
+ share/po/vi.po, share/po/wa.po, share/po/zh_CN.po,
+ share/po/zh_TW.po: typo fix
+
+2005-09-18 01:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.63mdk
+
+2005-09-18 01:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-09-18 01:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: display cards that offer
+ additional parallep port in the system class rather than in the
+ "unknown" section
+
+2005-09-18 01:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: (custom_id) try harder to have a
+ sane name: before fallbacking to the class name (eg: "Printer"),
+ try to use the vendor name (eg for printers)
+
+2005-09-18 01:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: detect_devices.pm, modules.pm: add sr_mod in
+ modprobe.preload if needed (#18641)
+
+2005-09-18 00:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: typo fix
+
+2005-09-17 21:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: fix typo (pterjan)
+
+2005-09-17 19:19 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates
+ gi/perl-install/share/po/da.po
+
+2005-09-17 17:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: fix crash (ugtk2 dialog helpers
+ aren't imported)
+
+2005-09-17 16:34 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/sl.po: Updated sl translations.
+
+2005-09-17 14:29 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/detect.pm: - On USB printer hot-plugging
+ sometimes parallel printers are also shown in the window
+ popping up to ask whether the printer should be set up. Even
+ sometimes parallel printers which are not connected or turned
+ on any more were shown. Fixed.
+
+2005-09-17 13:18 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: jorge
+
+2005-09-17 11:28 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po:
+ Updated Estonian translation.
+
+2005-09-17 11:11 Funda Wang <fundawang at linux.net.cn>
+
+ * rescue/: make_partimage_save_rest_all, tree/etc/issue,
+ tree/etc/rc.sysinit: Mandrake -> Mandriva series.
+
+2005-09-17 04:31 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-09-17 04:04 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Remove unclear text (not
+ needed, #18619)
+
+2005-09-17 02:01 Keld Jørn Simonsen <keld at dkuug.dk>
+
+ * perl-install/share/po/da.po: updates soft/initscripts/po/da.po
+ gi/perl-install/share/po/da.po
+
+2005-09-17 00:59 Thomas Backlund <tmb at mandrake.org>
+
+ * perl-install/share/po/sv.po: Updated translations, was 89 fuzzy,
+ 245 untranslated, is now 60 fuzzy, 147 untranslated, will be 100%
+ tomorrow....
+
+2005-09-16 22:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-09-16 21:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: (wait_msg) workaround gtk+ not
+ displaying subdialog contents
+
+2005-09-16 21:36 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/sl.po: sl corrections from Jure Repinc
+ <jlp@holodeck1.com>.
+
+2005-09-16 21:35 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated zh_CN translation.
+
+2005-09-16 21:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2005-09-16 21:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (complete_usb_storage_info) using
+ a local value is just saner
+
+2005-09-16 21:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (complete_usb_storage_info)
+ delete {found} field once used
+
+2005-09-16 21:03 Wanderlei Antonio Cavassin <cavassin at mandriva.com>
+
+ * perl-install/share/po/pt_BR.po: Filled one untranslated msg.
+
+2005-09-16 20:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (complete_usb_storage_info) fix
+ getting data when multiple USB disks of the same vendor are
+ plugged
+
+ right thing would be to compare {host} but usb_probde() cannot
+ return SCSI host, thus descriptions might be switched if the
+ manufacturer altered them on latest discs
+
+ rationale:
+
+2005-09-16 19:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install2.pm: pppoe_modem device doesn't exist
+
+2005-09-16 18:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: adsl.pm, netconnect.pm: revert previous
+ simplification, it may break the unusual sagem over pppoe case
+
+2005-09-16 18:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: some modem configuration
+ programs modify modprobe.conf while drakconnect/the installer is
+ loaded, workaround it
+
+2005-09-16 18:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: (create_treeview_list) run timer
+ only once
+
+2005-09-16 18:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: (create_treeview_list)
+ workaround Gtk+ bug where it hides half the list (#18132)
+
+2005-09-16 18:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: install2.pm, install_any.pm,
+ install_steps_interactive.pm, network/adsl.pm: automatically
+ configure DSL connection on installation from DSL
+
+2005-09-16 17:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: make sure $net->{ifcfg}{ppp0}
+ is a hash
+
+2005-09-16 17:45 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, am.po, ar.po, az.po,
+ be.po, bg.po, bn.po, br.po, bs.po, ca.po, cs.po, cy.po, da.po,
+ de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po,
+ fur.po, ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po, is.po,
+ it.po, ja.po, ko.po, ky.po, lt.po, ltg.po, lv.po, mk.po, mn.po,
+ ms.po, mt.po, nb.po, nl.po, nn.po, pa_IN.po, pl.po, pt.po,
+ pt_BR.po, ro.po, ru.po, sc.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tl.po, tr.po, uk.po,
+ uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot
+ file
+
+2005-09-16 17:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (configure_kdeglobals) kill dead variable
+
+2005-09-16 17:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: space cleaning (thx
+ perl_checko)
+
+2005-09-16 17:32 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/crypto.pm: more x86_64 mirrors (works, tested as
+ lftp $url -e exit)
+
+2005-09-16 17:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: fix ugly typo
+
+2005-09-16 17:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: URPM/Resolve.pm diff 1.109: "Remove the
+ return value of compute_installed_flags"... but alas install
+ still use it, so doing here what was done in
+ compute_installed_flags
+
+2005-09-16 16:49 Warly <warly at mandriva.com>
+
+ * perl-install/share/po/fr.po: faicle->facile
+
+2005-09-16 16:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: fix probing of login name for pppoe
+ connections (peers file is more important than pppoe.conf)
+
+2005-09-16 16:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: don't use ifplugd for ethernet
+ devices associated with a pppoe/pptp connection
+
+2005-09-16 16:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: adsl.pm, netconnect.pm: simplify pppoe
+ configuration code
+
+2005-09-16 16:24 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po file
+
+2005-09-16 16:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: fix crash when only one
+ interface is configured
+
+2005-09-16 16:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: comment/dis-comment the content of
+ ld.so.conf.d/{nvidia,ati}.conf instead of symlinking to a hidden
+ file (implies the new ati/nvidia packages have config(noreplace)
+ for those files)
+
+2005-09-16 16:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: instead of symlinking, comment the
+ content of the ld.so.conf.d/*.conf
+
+2005-09-16 15:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: come on titi, no need to check
+ we're root here
+
+2005-09-16 15:55 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: fix draknfs banner
+
+2005-09-16 15:49 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/drakhosts: fix drakhosts banner
+
+2005-09-16 15:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/dmraid.pm: fix typo
+
+2005-09-16 15:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: if ESSID is hidden, add
+ brackets around AP MAC address
+
+2005-09-16 14:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: don't call $advertize on
+ "Details" click otherwise it may call $advertize when chrooted
+ which we don't want. So changing behaviour: the button now only
+ hide or show, it doesn't change the current ad
+
+2005-09-16 14:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/dmraid.pm: during install, don't use half working
+ dmraids (#18386)
+
+2005-09-16 14:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/network/ethernet.pm: (is_ifplugd_blacklisted) do not
+ blacklist anymore b44 since it now support reporting link status
+ according to Arnaud Monnet de Lorbeau
+
+2005-09-16 14:23 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-09-16 14:13 neoclust
+
+ * perl-install/share/po/it.po: Updated translation from Giuseppe
+ Levi
+
+2005-09-16 13:00 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Adapted file names to
+ check for to the changes on the HPIJ 0.91-8mdk packages.
+
+2005-09-16 11:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: don't load glx with fbdev (since
+ glx is used for various things nowadays, dixit fredl)
+
+2005-09-16 10:53 Warly <warly at mandriva.com>
+
+ * perl-install/share/advertising/: skype.pl, skype.png: add skype
+ ad
+
+2005-09-16 02:23 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/share/po/is.po: just continue
+
+2005-09-16 00:09 Wanderlei Antonio Cavassin <cavassin at mandriva.com>
+
+ * perl-install/share/po/pt_BR.po: Fixed wrong string g..fica
+ (thanks pixel).
+
+2005-09-15 23:10 Wanderlei Antonio Cavassin <cavassin at mandriva.com>
+
+ * perl-install/share/po/pt_BR.po: Fixed some strings and misuses of
+ "esse/essa/isso".
+
+2005-09-15 20:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/upgrade/conectiva.10/map: have drakconf when
+ there was task-webmin-desktop
+
+2005-09-15 19:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: increase timeout after a
+ wireless network is selected
+
+2005-09-15 19:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: don't vivify hash ref
+
+2005-09-15 18:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.62mdk
+
+2005-09-15 18:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: show the main window very
+ early. thus: - users feels it startups faster - both main
+ window's icon subdialogs' ones work smoothly
+
+2005-09-15 18:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: restart hsf/hcfpci services
+ when needed
+
+2005-09-15 17:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: allow to up/down any network
+ interface (backport of my 2005 patch for PSA)
+
+2005-09-15 17:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/bootloader-config: fix borking entry
+ "linux" (removing root=xxx) when removing a kernel
+
+2005-09-15 16:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: support madwifi drivers
+
+2005-09-15 15:19 Sharuzzaman Ahmat Raslan <sharuzzaman at myrealbox.com>
+
+ * perl-install/share/po/ms.po: Updated Malay translation
+
+2005-09-15 15:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps_gtk.pm, pkgs.pm: - call
+ installCallback() on "open" too - on "open" we are not chrooted -
+ setting advertising when chrooted could cause havoc if pango
+ wants to load a new font (eg: advertising #13 in pt_BR)
+
+2005-09-15 14:52 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/sl.po: language proof from Gregor Pirnaver
+ <gregor.pirnaver@sdm-si.org>.
+
+2005-09-15 13:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: - there is no more adverstising icon
+ - cleaning
+
+2005-09-15 13:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, install_steps.pm: - we do want
+ doPartitionDisks and formatPartitions to be done early on
+ upgrade, so that selectKeyboard is done when the partitions are
+ mounted - call set_all_default() (to fix fstab on upgrade) before
+ install packages so that {useSupermount} is correctly set
+ (maybe we could also move the set_all_default on install there)
+
+2005-09-15 13:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/upgrade/conectiva.10/map: ensure we have
+ gnome-volume-manager when we have gnome or kde (to handle cdrom
+ auto mounting)
+
+2005-09-15 13:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: since choosing keyboard is done after
+ mounting partition to upgrade, we can do things much more nicely
+ on upgrade: - keeping previous keyboard - or forcing prompting
+ keyboard when bad keyboard
+
+2005-09-15 12:20 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/sl.po: Updated sl translation from Jure
+ Repinc <jlp@holodeck1.com>.
+
+2005-09-15 11:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/monitor.pm: lower signal level given by
+ wpa_supplicant
+
+2005-09-15 08:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: don't try to update shorewall
+ configuration if it's disabled
+
+2005-09-15 07:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: drakconnect: update interfaces
+ list in shorewall
+
+2005-09-15 07:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: read shorewall net interface
+ from configuration file first
+
+2005-09-15 07:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: don't resize state icons
+
+2005-09-15 06:59 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: show refresh icon if network
+ isn't connected
+
+2005-09-15 06:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: show ESSID if already
+ configured for hidden ssid
+
+2005-09-15 06:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: move signal strength icon on
+ the left
+
+2005-09-15 06:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: refresh wireless networks
+ every minute only
+
+2005-09-15 06:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: don't automatically refresh
+ networks list
+
+2005-09-15 06:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/monitor.pm: fix hidden ssid always
+ recognized as current when using iwlist
+
+2005-09-15 06:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: use Managed mode if AP isn't
+ Ad-Hoc
+
+2005-09-15 06:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: better handling of ASCII WEP
+ keys (partial fix for #18558)
+
+2005-09-15 05:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: network/network.pm, standalone/drakroam:
+ drakconnect: write wireless settings in wireless.d/ as well
+
+2005-09-15 05:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: detect_devices.pm, network/monitor.pm,
+ standalone/drakroam, standalone/net_applet: fallback to wpa_cli
+ or iwlist/iwconfig when needed (#18516)
+
+2005-09-14 23:55 Wanderlei Antonio Cavassin <cavassin at mandriva.com>
+
+ * perl-install/share/po/pt_BR.po: Fixed typos and one fuzzy.
+
+2005-09-14 23:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: try to load all ppp modules, even
+ if one of them fails
+
+2005-09-14 23:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/adsl.pm: modprobe pppoatm for pppoa
+ connections
+
+2005-09-14 23:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install2.pm: write ethernet aliases (and iftab) on
+ upgrade, so that eth1394 doesn't mess up interface ordering after
+ install
+
+2005-09-14 23:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: network/ethernet.pm, network/network.pm,
+ standalone/service_harddrake: call
+ network::ethernet::update_iftab from
+ network::ethernet::configure_eth_aliases
+
+2005-09-14 23:26 Michael Scherer <misc at mandriva.org>
+
+ * perl-install/standalone/localedrake: - allow to use --apply
+ anywhere on the command line ( thanks ennael for spotting this )
+
+2005-09-14 21:50 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: updates from eskild
+
+2005-09-14 21:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: use nvidia legacy drivers for
+ TNT2/GeForce/GeForce2
+
+2005-09-14 19:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, pkgs.pm, share/list.xml,
+ share/upgrade-map.conectiva.10, share/upgrade/conectiva.10/map,
+ share/upgrade/conectiva.10/pre.merge-groups.sh,
+ share/upgrade/conectiva.10/pre.remove-conflicting-files.sh: add
+ upgrade script for conectiva
+
+2005-09-14 19:35 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/keyboard.pm: fixed Latin American (latam) and
+ Laotian (la) xkb keyboard names.
+
+2005-09-14 19:07 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
+
+ * perl-install/share/po/pl.po: translation updates
+
+2005-09-14 17:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: if we have dmraid devices, use grub,
+ and not only if the boot device is on dmraid (bugzilla #18386)
+
+2005-09-14 17:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/resize_ext2.pm: don't succeed if resize2fs
+ failed
+
+2005-09-14 16:35 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/drakxtools.spec: Make drakxtools require gtkdialogs
+ for urpmi --gui
+
+2005-09-14 15:30 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/: af.po, am.po, ar.po, az.po, be.po, bg.po,
+ bn.po, br.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po,
+ eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, fur.po, ga.po,
+ gl.po, he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po,
+ ko.po, ky.po, lt.po, ltg.po, lv.po, mk.po, mn.po, ms.po, mt.po,
+ nb.po, nl.po, nn.po, pa_IN.po, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.po, sc.po, sk.po, sl.po, sq.po, sr@Latn.po, sr.po, sv.po,
+ ta.po, tg.po, th.po, tl.po, tr.po, uk.po, uz@Latn.po, uz.po,
+ vi.po, wa.po, zh_CN.po, zh_TW.po: Updated POT file.
+
+2005-09-14 15:10 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/network/pxe.pm: add auto_install option
+
+2005-09-14 14:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: do have all useful info in selected leaves,
+ including base packages, it won't be much longer but we can
+ precise choices like lilo vs grub
+
+2005-09-14 14:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/run_program.pm: force our tmpdir to /root/tmp when
+ root and not isInstall (fixes installkernel being called with
+ sudo and not sudo -H) (thanks to fred crozat!)
+
+2005-09-14 13:52 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/DrakX.pot: Updated POT file.
+
+2005-09-14 13:31 Pixel <pixel at mandriva.com>
+
+ * advanced.msg.xml: - drop commenting option security=n - add
+ comment for nodmraid
+
+2005-09-14 13:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fsedit.pm, install2.pm: new option "nodmraid" do
+ ensure we don't use dmraid (useful since dmraid can be unused by
+ the user but still half working as far as dmraid knows)
+
+2005-09-14 13:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/dmraid.pm: log what dmraid -ccs and -ccr returns
+
+2005-09-14 12:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/isdn_consts.pm: support AVM FRITZ!Card DSL
+ USB v2.0
+
+2005-09-14 12:24 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/share/po/ru.po: updated translation
+
+2005-09-14 12:21 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: xorg 6.9
+
+2005-09-14 12:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: do log the prefered choice (esp. to debug
+ lilo vs grub)
+
+2005-09-14 11:10 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po:
+ Updated Estonian translation.
+
+2005-09-14 10:46 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/fr.po: Fix two typos
+
+2005-09-14 08:06 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/rpmsrate: add acroread7 l10n-* to be completed
+
+2005-09-14 02:59 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/share/po/is.po: Clean up fuzzy entries
+
+2005-09-13 23:27 Albert Astals Cid <astals11 at terra.es>
+
+ * perl-install/share/po/ca.po: updating drakx
+
+2005-09-13 22:48 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/lang.pm: There is no need manually specifying font
+ name, because we've already handled it perfectly in fontconfig.
+
+2005-09-13 22:38 rstandtke
+
+ * perl-install/share/po/de.po: update
+
+2005-09-13 21:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakgw: fix untranslated messages
+ (#17969)
+
+2005-09-13 20:22 Michal Bukovjan <bukovjan at mbox.dkm.cz>
+
+ * perl-install/share/po/cs.po: Updated Czech translation.
+
+2005-09-13 19:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: fix start/stop of interfaces that
+ are not set to start on boot
+
+2005-09-13 19:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: fix device path for HCF
+ modems
+
+2005-09-13 19:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update (Stéphane Teletchéa)
+
+2005-09-13 18:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps.pm: migrate fstab
+ when upgrading an alien distro (should be done always?)
+
+2005-09-13 18:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: better call
+ Xconfig::various::runlevel() directly since it's not always
+ called
+
+2005-09-13 18:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: it seems we don't need re-ordering
+ steps anymore for upgrading (otherwise we would need to have
+ miscellaneous before doPartitionDisks so that useSupermount is
+ correctly set)
+
+2005-09-13 17:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: when taking screenshot during pkgs
+ install, we can be chrooted
+
+2005-09-13 17:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: for now, disable FTP in
+ media_browser since we don't handle it (#16088)
+
+2005-09-13 17:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/upgrade-map.conectiva.10: remove a lot of
+ unneeded devel packages
+
+2005-09-13 17:11 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: add some log message about interface auto
+ detection
+
+2005-09-13 16:57 Warly <warly at mandriva.com>
+
+ * perl-install/share/logo-mandriva.png: new installation banner
+
+2005-09-13 16:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: when taking screenshot during pkgs
+ install, we can be chrooted, in that case the icon is not
+ accessible
+
+2005-09-13 16:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/: parse.pm, xfree.pm: handle DefaultDepth
+ (which is the same as DefaultColorDepth)
+
+2005-09-13 16:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.61mdk
+
+2005-09-13 16:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: allow forcing fbdev even if we
+ don't allowFB
+
+2005-09-13 15:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/upgrade-map.conectiva.10: try to have less
+ devel packages when conectiva's install didn't have them
+
+2005-09-13 15:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/upgrade-map.conectiva.10: - ensure msec is
+ there - ensure desktop-common-data is there when we have X - more
+ closer map to mandriva tools
+
+2005-09-13 15:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: !CAT_ICEWM is dangerous, replace it
+ with CAT_KDE || CAT_GNOME
+
+2005-09-13 15:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: sync japanese package list with rpmsrate
+
+2005-09-13 15:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install scim-qtimm for vi too
+
+2005-09-13 15:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: share/rpmsrate, lang.pm: vi: remove scim (already
+ selected by scim-m17n)
+
+2005-09-13 15:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: restore previous indentation and fix
+ a typo (hplip-hpijs)
+
+2005-09-13 15:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: use SCIM (scim-m17n & scim) by
+ default for Vietnamese users since x-unikey is broken
+
+2005-09-13 15:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: install scim-m17n & scim for vietnamese
+ users
+
+2005-09-13 15:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: use SCIM by default for Vietnamese users
+ since x-unikey is broken
+
+2005-09-13 15:24 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/share/rpmsrate: add some 32-bit compat packages
+ (galaxy-kde + j2re)
+
+2005-09-13 15:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: af.po, bs.po, ca.po, cy.po, da.po, de.po,
+ eo.po, es.po, eu.po, fi.po, ga.po: fix extra accelerators
+
+2005-09-13 15:02 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Fix previous errors
+
+2005-09-13 14:55 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Fix previous errors
+
+2005-09-13 14:53 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/crypto.pm: Update hardcoded mirror list (for FTP
+ suppl media)
+
+2005-09-13 14:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: - drop splashimage if file can't be
+ found (useful when upgrading) - internally splashimage is
+ preferably a file, not a grub file
+
+2005-09-13 14:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: - do not set QT_IM_MODDULE to
+ GTK_IM_MODDULE when not supported (eg: fix im-ja) - explicitely
+ set the right QT_IM_MODULE
+
+ (Yukiko Bando)
+
+2005-09-13 14:10 David Baudens <baudens at mandriva.com>
+
+ * perl-install/share/rpmsrate: Low ressources setup
+
+2005-09-13 13:01 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/standalone.pm: - fix typo
+
+2005-09-13 12:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: when upgrading by removing pkgs,
+ ensure we keep the previous runlevel
+
+2005-09-13 12:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps.pm: for
+ local_install we don't want use_root_part to do anything
+
+2005-09-13 12:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: background and foreground are valid
+ menu.lst commands
+
+2005-09-13 12:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: - rename
+ readBootloaderConfigBeforeInstall() to read_bootloader_config() -
+ call read_bootloader_config() after installing packages (for the
+ case of grub scripts fixing the configuration, ie creating
+ device.map and install.sh)
+
+2005-09-13 12:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: - create cleanup_entries() which
+ remove bad entries (and more verbosely than was done for
+ lilo.conf) and call it for all bootloaders (was only for lilo) -
+ keep removing duplicate labels only for lilo (and use uniq_)
+ (don't do it for grub since duplicate labels are allowed (???))
+
+2005-09-13 12:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: when upgrading and the keyboard config
+ is wrong, write the unsafe config
+
+2005-09-13 12:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: don't have title twice (we
+ already have it in the banner)
+
+2005-09-13 12:20 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/fr.po: Trim down message so it fits in the
+ window
+
+2005-09-13 12:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/: keyboard.pm, Xconfig/default.pm,
+ standalone/keyboarddrake: - keyboard::read() now returns false if
+ the value is not recognised - new function
+ keyboard::read_or_default() which always returns a valid value
+
+2005-09-13 11:44 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-09-13 11:31 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/crypto.pm: Need more coffee
+
+2005-09-13 11:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, Xconfig/main.pm: silently ignore
+ existing X config file if upgrading an alien distro
+
+2005-09-13 10:24 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/crypto.pm: When selecting mirrors in the mirror
+ list, if we find a mirror with the exact same architecture than
+ the current one, discard all other mirrors. This should avoid
+ listing i586 mirrors when installing on x86_64.
+
+2005-09-13 10:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: really skip setupBootloader in
+ local_install
+
+2005-09-13 01:22 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/share/po/is.po: Latest strings fixed
+
+2005-09-12 23:01 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/keyboard.pm: last round of keyboard fixes
+
+2005-09-12 22:15 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/keyboard.pm: cz_qwerty => cz(qwerty)
+
+2005-09-12 22:09 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/keyboard.pm: fixed some XKB keyboard names
+
+2005-09-12 22:07 neoclust
+
+ * perl-install/share/po/fr.po: updated by Berthy
+
+2005-09-12 21:39 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: jorge
+
+2005-09-12 19:12 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: af.po, bs.po, ca.po, cy.po, da.po, de.po,
+ eo.po, es.po, eu.po, fi.po, fr.po, ga.po: sync with KDE
+
+2005-09-12 18:53 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2005-09-12 18:43 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/ja.po: update (Yukiko Bando)
+
+2005-09-12 18:29 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/fr.po: Typo fix
+
+2005-09-12 18:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: cy.po, ga.po: update
+
+2005-09-12 18:00 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2005-09-12 17:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/sr.po: one more translation from KDE
+
+2005-09-12 17:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: af.po, ar.po, az.po, be.po, bg.po, bn.po,
+ bs.po, ca.po, da.po, de.po, el.po, eo.po, es.po, eu.po, fa.po,
+ fi.po, gl.po, he.po, hi.po, hr.po, is.po, it.po, ko.po, lt.po,
+ lv.po, mk.po, mn.po, ms.po, mt.po, ro.po, sq.po, sr.po, sv.po,
+ ta.po, tg.po, th.po, tr.po, uk.po, uz.po, vi.po, wa.po, zh_TW.po:
+ sync with KDE translations
+
+2005-09-12 17:32 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2005-09-12 17:29 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_steps.pm: Allow mini-iso install to install
+ urpmi properly
+
+2005-09-12 17:24 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated zh_CN translation.
+
+2005-09-12 17:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2005-09-12 17:15 Wanderlei Antonio Cavassin <cavassin at mandriva.com>
+
+ * perl-install/share/po/pt_BR.po: Fixed new messages.
+
+2005-09-12 17:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, am.po, ar.po, az.po,
+ be.po, bg.po, bn.po, br.po, bs.po, ca.po, cs.po, cy.po, da.po,
+ de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po,
+ fur.po, ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po, is.po,
+ it.po, ja.po, ko.po, ky.po, lt.po, ltg.po, lv.po, mk.po, mn.po,
+ ms.po, mt.po, nb.po, nl.po, nn.po, pa_IN.po, pl.po, pt.po,
+ pt_BR.po, ro.po, ru.po, sc.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tl.po, tr.po, uk.po,
+ uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: sync with
+ code
+
+2005-09-12 16:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: (row_setting_dialog) simplify
+
+2005-09-12 16:45 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: (row_setting_dialog) ensure
+ that both the user and the group are valid
+
+2005-09-12 16:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: (row_setting_dialog) remove
+ debug message
+
+2005-09-12 16:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakperm: (row_setting_dialog) prevent
+ entering a path that is not absolute
+
+2005-09-12 16:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, install_steps.pm: simplify
+
+2005-09-12 16:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/keyboard.pm: shift_toggle is now called
+ shifts_toggle
+
+2005-09-12 15:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.60mdk
+
+2005-09-12 15:13 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Made configuring of auto
+ queue setup mode also during installation (some $::prefix were
+ missing).
+
+2005-09-12 14:13 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakhosts: our policy is not do display
+ version number in taskbar
+
+2005-09-12 14:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draknfs: our policy is not do display
+ version number in taskbar
+
+2005-09-12 13:59 Pixel <pixel at mandriva.com>
+
+ * tools/Makefile: install drakx-in-chroot in misc
+
+2005-09-12 13:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: fix looking for backup-ed release file
+ first
+
+2005-09-12 13:26 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/fr.po: Some translations
+
+2005-09-12 11:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: create read_grub_menu_lst() and
+ read_grub_install_sh()
+
+2005-09-12 08:48 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-09-11 23:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: allow to write more modem
+ variables in ifcfg files
+
+2005-09-11 23:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: list and configure wireless
+ interfaces for which the firmware isn't available (#18195)
+
+2005-09-11 22:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: add more details when the
+ firmware file can't be found
+
+2005-09-11 22:46 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/rpmsrate: added klamav
+
+2005-09-11 22:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: misc documentation update,
+ fix some incorrect fields
+
+2005-09-11 22:12 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: check that required files are
+ available once the package is installed
+
+2005-09-11 22:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: require firmware version 2.3
+ for ipw2200 driver
+
+2005-09-11 20:41 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-09-11 13:58 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/fsedit.pm: Mask Xbox partitions hda50-54 during
+ install too.
+
+2005-09-11 00:05 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2005-09-10 15:24 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/vi.po: Updated vi translation from Larry
+ Nguyen <larry@vnlinux.org>.
+
+2005-09-10 03:12 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/install_messages.pm: Adopt new mandriva.com path
+
+2005-09-09 19:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (write) use qt-immodule again
+
+2005-09-09 19:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install scim-qtimm for CJK
+
+2005-09-09 19:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.59mdk
+
+2005-09-09 18:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: have same rpm config as when installing
+ pkgs
+
+2005-09-09 17:30 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/share/po/ru.po: updated translation
+
+2005-09-09 17:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: set META_CLASS"xxx" flag
+
+2005-09-09 17:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: have a progress bar when removing
+ packages
+
+2005-09-09 17:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: see if we have menu.lst first
+
+2005-09-09 17:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: play it safe (bugzilla #18390)
+
+2005-09-09 16:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: handle "module xxx" lines in menu.lst
+ (used for xen)
+
+2005-09-09 16:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksplash: perl_checker fixes
+
+2005-09-09 16:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-09-09 16:06 Wanderlei Antonio Cavassin <cavassin at mandriva.com>
+
+ * perl-install/share/po/pt_BR.po: More fixes for pt_BR.
+
+2005-09-09 16:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-09-09 15:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: support snd-intel8x0m by
+ writing SLMODEMD_MODULE in /etc/sysconfig/slmodemd
+
+2005-09-09 14:01 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/sl.po: Updated Slovenian translation from
+ Jure Repinc <jlp@holodeck1.com>.
+
+2005-09-09 13:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksplash: fix adjustments creation
+ (#18295)
+
+2005-09-09 12:30 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-09-09 12:29 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Remove commented code
+
+2005-09-09 12:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-09-09 12:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: replace mozilla-mail (no more) with
+ mozilla-thunderbird
+
+2005-09-09 11:49 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: When adding http suppl media,
+ repropose the last url entered. Very useful in case of typo in
+ the url
+
+2005-09-09 11:09 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/fr.po: More translations
+
+2005-09-09 11:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps_interactive.pm: pass
+ around wait_message with progress bar capability
+
+2005-09-09 10:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive.pm: allow the wait_message progress bar
+ to be used more than once
+
+2005-09-09 00:29 Reinout van Schouwen <reinout at cs.vu.nl>
+
+ * perl-install/share/po/nl.po: * Sep 9 2005 Reinout van Schouwen
+ <reinout@cs.vu.nl> Updated Dutch translation by Rob Teng
+ <mandrake.tips@free.fr>
+
+2005-09-08 23:27 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po:
+ Updated Estonian translation.
+
+2005-09-08 23:15 Michal Bukovjan <bukovjan at mbox.dkm.cz>
+
+ * perl-install/share/po/cs.po: Updated Czech translations.
+
+2005-09-08 22:21 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: adjust GUI ouput in
+ modify dialog box
+
+2005-09-08 19:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (Gtk2::Banner->new) fix banner's text
+ position since pixel has reduce its height
+
+2005-09-08 19:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (create_box_with_title) kill that dead
+ code path
+
+2005-09-08 19:09 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.58mdk
+
+2005-09-08 19:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: try not to use wrong "orinoco"
+ module (#18294)
+
+2005-09-08 18:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakids: allow to blacklist/whitelist
+ from the log window
+
+2005-09-08 18:38 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: rename openldap openldap-servers
+
+2005-09-08 18:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: force DEVICE field write for
+ ISDN configurations
+
+2005-09-08 18:08 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-09-08 17:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-09-08 17:49 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_steps.pm: Add a trace
+
+2005-09-08 17:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakids: use Close instead of Quit
+
+2005-09-08 17:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-09-08 17:06 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-09-08 16:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: fix typo
+
+2005-09-08 16:47 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/fr.po: Fix grammar
+
+2005-09-08 16:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: add reminder
+
+2005-09-08 16:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.57mdk
+
+2005-09-08 16:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: don't try to install both
+ source/precompiled dkms packages if one of them is installed
+
+2005-09-08 16:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: handle sata_mv
+
+2005-09-08 15:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/ja.po: update (Yukiko Bando)
+
+2005-09-08 15:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/drakfirewall.pm: only enable built-in IFW
+ rules for now (too late to add strings for custom rules)
+
+2005-09-08 15:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: netconnect.pm, wireless.pm: disable
+ roaming for rt2400/rt2500
+
+2005-09-08 15:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/modem.pm: really read system kppp
+ configuration (happy birthday little bug)
+
+2005-09-08 15:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: network/modem.pm, network/netconnect.pm,
+ standalone/drakconnect: do not let modem settings be overriden by
+ previous ppp0 settings
+
+2005-09-08 14:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: fix log
+
+2005-09-08 13:33 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/lang.pm: unset QT_IM_MODULE due to unsatisfied
+ qtimmodule support in Qt. If we don't touch QT_IM_MODULE, it
+ will cause KDE hangs up if upgrading from cooker to official.
+
+2005-09-08 13:26 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/rpmsrate: Drop scim-qtimm due to unsatisfied
+ qtimm support in qt3
+
+2005-09-08 12:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/main.pm: - when changing the card/monitor,
+ ensure the resolution is still valid - when switching to fbdev,
+ ensure we have a bios resolution
+
+2005-09-08 12:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: really fix sagem/speedtouch
+ detection
+
+2005-09-08 12:49 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/it.po: Updated it translation from Andrea
+ Celli <andrea.celli@libero.it>
+
+2005-09-08 12:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/logdrake: insensitive categories for
+ which file is missing, thus preventing crashing (#16935)
+
+2005-09-08 02:46 Wanderlei Antonio Cavassin <cavassin at mandriva.com>
+
+ * perl-install/share/po/pt_BR.po: Fixed a few more pt_BR messages.
+
+2005-09-07 19:25 Warly <warly at mandriva.com>
+
+ * perl-install/share/advertising/: 01.png, 02.png, 03.png, 04.png,
+ 05.png, 06.png, 07.png, 08.png, 09.png, 10.png, 11.png, 12.png,
+ 13.png, 14.png, 15.png, 16.png, 17.png, 18.png, 19.png, 20.png,
+ 21.png, 22.png, 23.png, 24.png, 25.png, 26.png: update images
+ with new true color ones
+
+2005-09-07 19:03 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/: ca.po, cs.po, cy.po: Updated POT.
+
+2005-09-07 18:58 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/: ga.po, gl.po, ta.po, tg.po, th.po, tl.po,
+ tr.po, pa_IN.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, ko.po,
+ ky.po: Updated POT.
+
+2005-09-07 18:54 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/: vi.po, wa.po, mk.po, mn.po, ms.po, mt.po,
+ ja.po, nb.po, nl.po, nn.po, lt.po, ltg.po, lv.po: Updated POT.
+
+2005-09-07 18:50 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/: el.po, eo.po, es.po, et.po, eu.po, fa.po,
+ fi.po, fr.po, fur.po, sc.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, id.po, is.po, it.po, he.po, hi.po, hr.po,
+ hu.po: Updated POT.
+
+2005-09-07 18:47 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/: zh_CN.po, zh_TW.po, af.po, am.po, ar.po,
+ az.po, be.po, bg.po, bn.po, br.po, bs.po, da.po, de.po, uk.po,
+ uz.po, uz@Latn.po: Updated POT.
+
+2005-09-07 18:38 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/: DrakX.pot, Makefile: Updated POT.
+
+2005-09-07 17:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: fix installation of eagle-usb
+ package
+
+2005-09-07 17:18 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Another 64-bit fix in
+ printerdrake. Now setup of HP's multi-function printers really
+ works on 64-bit boxes.
+
+2005-09-07 16:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: really preselect default
+ interface
+
+2005-09-07 16:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: show ppp/isdn interfaces as
+ well (#18303)
+
+2005-09-07 16:44 Pixel <pixel at mandriva.com>
+
+ * rescue/partimage_whole_disk: - install scsi and sata modules -
+ make save_home_directory optional (and is false by default)
+
+2005-09-07 16:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules/any_conf.pm: (remove_module) better written
+ this way
+
+2005-09-07 16:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: - split is_useful_interface out
+ of is_lan_interface - split get_all_net_devices out of getNet -
+ add get_net_interfaces to include isdn/dsl interfaces
+
+2005-09-07 16:29 Albert Astals Cid <astals11 at terra.es>
+
+ * perl-install/share/po/ca.po: updates
+
+2005-09-07 16:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/modules/any_conf.pm: (remove_module) prevent wiping
+ /etc/modprobe.preload if module is unset (#16181)
+
+2005-09-07 16:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: silent error when ahci or ata_piix
+ insmod fail (ahci fails on vmware)
+
+2005-09-07 15:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: our hsf package is called
+ hsfmodem, not hsflinmodem
+
+2005-09-07 13:06 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: mirror list support for http method
+
+2005-09-07 13:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.56mdk
+
+2005-09-07 13:00 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/url.c: http redirection support
+
+2005-09-07 12:41 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: blacklist audio too
+ (#12731)
+
+2005-09-07 11:49 Pixel <pixel at mandriva.com>
+
+ * advanced.msg.xml: exporting display is for network installs
+ (bugzilla #18286)
+
+2005-09-07 11:31 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Give also access to the
+ CUPS auto administration dialog during installation.
+
+2005-09-07 00:44 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_TW.po: Updated zh_TW translation from
+ You-Cheng Hsieh <yochenhsieh@xuite.net>
+
+2005-09-06 23:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.55mdk
+
+2005-09-06 21:26 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draksec: install chkrootkit if needed
+ (#17896)
+
+2005-09-06 21:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake.sh: fix status message
+ (#16925)
+
+2005-09-06 20:16 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/probing.c: fix lame bug preventing usb and firewire
+ controllers to be recognized
+
+2005-09-06 19:10 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: data.pm, main.pm, printerdrake.pm: - Made
+ printerdrake working on 64-bit systems, with /usr/lib64.
+
+2005-09-06 17:57 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-09-06 17:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: we prefer engine arts for amarok,
+ don't let the install choose arbitrarily
+
+2005-09-06 17:34 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: data.pm, printerdrake.pm: - Install
+ "desktop-printing" only on sytems with installed gnome-panel,
+ Discovery does not ship GNOME and also not desktop-printing.
+
+2005-09-06 17:04 Frederic Crozat <fcrozat at mandriva.com>
+
+ * perl-install/share/rpmsrate: Don't install gnome-alsa-mixer when
+ detecting alsa, gstreamer-alsa is enough
+
+2005-09-06 16:52 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Fixed endless loop when
+ clicking "Back" in model selection, when by autodetection no
+ model was found.
+
+2005-09-06 16:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: sm56 support
+
+2005-09-06 16:42 Olivier Blin <oblin at mandriva.com>
+
+ * kernel/list_modules.pm: add sm56 in network/modem
+
+2005-09-06 15:50 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Some fixes in handling
+ unknown printers.
+
+2005-09-06 15:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/install2.pm: do summaryBefore() only once (this will
+ reduce damage caused in bugzilla #18277)
+
+2005-09-06 15:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: allow to run perl code as
+ post command
+
+2005-09-06 14:30 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/fr.po: A few missing strings
+
+2005-09-06 14:28 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Remove a misleading comment
+
+2005-09-06 14:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/drakfirewall.pm: fix typo (Rafael)
+
+2005-09-06 13:58 Daouda Lo <daouda at mandriva.com>
+
+ * perl-install/Makefile.config: - don't package drakvpn as it is
+ unusable
+
+2005-09-06 13:11 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: - Do not set margins in CUPS when
+ HPIJS is the driver, for this driver the margins are already
+ well set. - Also match model name with added lower-case "hp"
+ with HPLIP XML database.
+
+2005-09-06 13:04 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/detect.pm: - When auto-detecting network
+ printer models via SNMP, guess manufacturer name from model
+ name
+
+2005-09-06 11:35 Vincent Guardiola <vguardiola at mandriva.com>
+
+ * perl-install/authentication.pm: Remove Encrytion type for AD with
+ SFU (not tested) Change Label for AD Winbind (more explicit)
+
+2005-09-06 10:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: different entries are same even if
+ readonly value is not the same (since we dropped setting
+ readonly)
+
+2005-09-06 10:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: display in MBytes the
+ sizes instead of Bytes (not changing the string since the po is
+ frozen)
+
+2005-09-06 03:42 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/rpmsrate: forgot to add CAT_BOOKS in previous
+ commit :p
+
+2005-09-05 19:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-09-05 19:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: br.po: minor update
+
+2005-09-05 19:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-09-05 19:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: fix port range parser
+
+2005-09-05 19:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: use Image_using_pixmap to
+ display adverstising (nicer rendering on 16bpp displays)
+
+2005-09-05 19:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: new "Image_using_pixmap" which is
+ rendered using DITHER_MAX which is much better on 16bpp displays
+
+2005-09-05 18:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-09-05 18:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.54mdk
+
+2005-09-05 18:34 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/rpmsrate: documentation packages are not named
+ as mandriva-doc-LL, cause we have already splitted them by
+ manuals/books.
+
+2005-09-05 17:39 Pavel Maryanov <acid_jack at ukr.net>
+
+ * perl-install/share/po/ru.po: updated translation
+
+2005-09-05 16:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2005-09-05 16:36 Wanderlei Antonio Cavassin <cavassin at mandriva.com>
+
+ * perl-install/share/po/pt_BR.po: Fixed missing DrakX pt_BR
+ messages: msgcat'ed an old po and them merged with actual POT.
+ Now we have 100% translated (3861 msgs).
+
+2005-09-05 16:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/pixmaps/steps_done.png: better image (soft border)
+
+2005-09-05 15:56 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/zh_TW.po: Fix newlines, once again
+
+2005-09-05 15:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/rpmsrate: add mandi-ifw in install section
+
+2005-09-05 15:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: br.po, cy.po, ga.po: update
+
+2005-09-05 15:32 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/: install_any.pm, pkgs.pm: At some point, an empty
+ hashref is autovivified in $packages->{medium}. So, protect the
+ loops that iterate over this hash, in application of the belt and
+ suspenders doctrine.
+
+2005-09-05 14:41 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/ja.po: Updated translation from Yukiko
+ Bando <ybando@k6.dion.ne.jp>.
+
+2005-09-05 14:34 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_TW.po: Updated Traditional translation
+ from You-Cheng Hsieh <yochenhsieh@xuite.net>.
+
+2005-09-05 12:19 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: Don't crash when
+ xorg-x11 is not available
+
+2005-09-05 11:57 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/install_any.pm: Proper detection of network
+ interface at supplementary media setup
+
+2005-09-05 11:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: perl_checker fixes
+
+2005-09-05 11:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/: authentication.pm, standalone/drakauth,
+ standalone/finish-install: handle required package(s) not
+ installed correctly (bugzilla #18180)
+
+2005-09-05 11:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/do_pkgs.pm: create ->ensure_are_installed (alike
+ ->ensure_is_installed)
+
+2005-09-05 01:05 Tibor Pittich <Tibor.Pittich at phuture.sk>
+
+ * perl-install/share/po/sk.po: updated slovak translation
+
+2005-09-04 22:57 Michal Bukovjan <bukovjan at mbox.dkm.cz>
+
+ * perl-install/share/po/cs.po: Updated Czech translation
+
+2005-09-04 17:49 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/: af.po, am.po, ar.po, az.po, be.po, bg.po,
+ bn.po, br.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po,
+ eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, fur.po, ga.po,
+ gl.po, he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po,
+ ko.po, ky.po, lt.po, ltg.po, lv.po, mk.po, mn.po, ms.po, mt.po,
+ nb.po, nl.po, nn.po, pa_IN.po, pl.po, pt.po, pt_BR.po, ro.po,
+ ru.po, sc.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po,
+ ta.po, tg.po, th.po, tl.po, tr.po, uk.po, uz.po, uz@Latn.po,
+ vi.po, wa.po, DrakX.pot, zh_CN.po, zh_TW.po: Updated POT file.
+
+2005-09-04 16:05 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/: printer/printerdrake.pm,
+ standalone/draksambashare: Corrected typos.
+
+2005-09-04 15:13 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/ja.po: Updated Japanese translation from
+ Yukiko Bando <ybando@k6.dion.ne.jp>.
+
+2005-09-04 15:00 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
+
+ * perl-install/share/po/pl.po: Translation updates
+
+2005-09-04 13:50 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-09-04 13:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/ftp.pm: fix typo
+
+2005-09-03 19:47 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation.
+
+2005-09-03 19:37 Sharuzzaman Ahmat Raslan <sharuzzaman at myrealbox.com>
+
+ * perl-install/share/po/ms.po: Updated Malay translation
+
+2005-09-03 18:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: set SSID for rt2400/rt2500
+ cards using WPA with an iwpriv command (#18205)
+
+2005-09-03 18:13 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/printerdrake: - Used Glib::Timeout->add()
+ function for auto-refreshing remote printer list.
+
+2005-09-03 15:35 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/printerdrake: - Fixed printer list
+ filtering in the main window, now one can also filter on the
+ state field, and pressing <Enter> after typing in the filter
+ string does not cause the filter being lost when hitting the
+ refresh button or doing some action. - Taken care that
+ auto-refreshing does not happen when the refresh function is
+ running.
+
+2005-09-03 15:03 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/printerdrake: - Auto-refresh the list of
+ remote printers in the main windows every 5 seconds.
+
+2005-09-03 00:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.53mdk
+
+2005-09-03 00:17 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/detect.pm: - Made reloading of parallel port
+ kernel modules (for auto-detection) also working if "ppdev"
+ module is loaded.
+
+2005-09-02 23:43 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: printer/cups.pm, standalone/printerdrake: - Make
+ building of main window of printerdrake much faster.
+
+2005-09-02 23:40 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/services.pm: - Check for CUPS daemon running
+ without console output.
+
+2005-09-02 23:39 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/detect.pm: - Let also network printers be
+ found which do not answer to a broadcast ping (most newer HP).
+ This is done only in class C and smaller networks, to not scan
+ too many machines.
+
+2005-09-02 19:55 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/: af.po, am.po, ar.po, az.po, be.po, bg.po,
+ bn.po, br.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po,
+ eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, fur.po, ga.po,
+ gl.po, he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po,
+ ko.po, ky.po, lt.po, ltg.po, lv.po, mk.po, mn.po, ms.po, mt.po,
+ nb.po, nl.po, nn.po, pa_IN.po, pl.po, pt_BR.po, pt.po, ro.po,
+ ru.po, sc.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po,
+ ta.po, tg.po, th.po, tl.po, tr.po, uk.po, uz.po, uz@Latn.po,
+ vi.po, wa.po, DrakX.pot, zh_CN.po, zh_TW.po: Updated POT file.
+
+2005-09-02 19:15 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: add discovery-icons-theme for disco
+ in KDE
+
+2005-09-02 18:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.52mdk
+
+2005-09-02 18:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: don't exec new binary on
+ update
+
+2005-09-02 18:22 Pixel <pixel at mandriva.com>
+
+ * tools/install-xml-file-list: replace /lib/tls with /lib for
+ libraries collected using collect_needed_libraries (it was
+ already done for files collected using ldd)
+
+2005-09-02 18:17 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakhelp: perl_checker fix
+
+2005-09-02 17:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakhelp: prefix file path with file://
+ (mozilla-firefox needs a valid url)
+
+2005-09-02 17:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/: common.pm, install_any.pm, install_steps.pm,
+ pkgs.pm, share/list.xml, share/upgrade-map.conectiva.10: - new
+ functionality: upgrade_by_removing_pkgs, enabled when upgrading
+ redhat and conectiva distributions - add file
+ upgrade-map.conectiva.10 for precise choice of packages - save
+ /etc/xxx-release into /root/drakx/xxx-release.upgrading when
+ starting - release_file(): look for xxx-release.upgrading first -
+ find_root_parts(): better logging about upgrade_by_removing_pkgs,
+ and factorize code - when all packages are installed, remove
+ xxx-release.upgrading and rename
+ pkgs::removed_pkgs_to_upgrade_file()
+
+2005-09-02 17:34 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Workaround : Don't call method directly
+
+2005-09-02 16:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, install_any.pm: move code to
+ create_minimal_files()
+
+2005-09-02 14:44 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/share/rpmsrate: - Removed hplip-hpijs-ppds, this
+ package is not really required.
+
+2005-09-02 14:31 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Use printer name
+ determined by HPLIP to auto-select PPD file of a network
+ printer where the model name was not determined by SNMP.
+
+2005-09-02 13:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/rpmsrate: don't install hotplug anymore
+
+2005-09-02 12:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps_gtk.pm,
+ install_steps_interactive.pm: cleanup
+
+2005-09-02 12:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: we want the release
+ extension
+
+2005-09-02 12:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: allow upgrading a local_install
+ (no need to call use_root_part)
+
+2005-09-02 12:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: set
+ {upgrade_by_removing_pkgs} when upgrading conectiva and redhat
+
+2005-09-02 12:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, pkgs.pm: rename
+ pkgs::rpmDbOpenForInstall() to pkgs::open_rpm_db_rw()
+
+2005-09-02 12:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: allow verbose removing of packages
+
+2005-09-02 11:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps.pm, pkgs.pm: opening
+ rpm db in selectPackage(), so remove some rpmDbOpen()
+
+2005-09-02 11:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps_interactive.pm,
+ pkgs.pm: new function select_by_package_names()
+
+2005-09-02 11:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps.pm,
+ install_steps_interactive.pm: hoist things in install_any
+
+2005-09-02 11:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps_interactive.pm,
+ interactive.pm, diskdrake/interactive.pm, fs/format.pm:
+ fs::format::wait_message() is now
+ ->wait_message_with_progress_bar (on interactive objects)
+
+2005-09-02 01:54 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/pt_BR.po: Updated pt_BR translation from
+ Arthur R. Mello <renato@conectiva.com.br>.
+
+2005-09-01 23:58 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo corrigido
+
+2005-09-01 22:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.51mdk
+
+2005-09-01 22:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_steps.pm: enable Ifw by default in high
+ security levels and enable the psd rule
+
+2005-09-01 21:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ifw.pm: require dbus_object only when needed
+
+2005-09-01 21:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: network/drakfirewall.pm, network/shorewall.pm,
+ share/rpmsrate: install and configure Interface Firewall in
+ drakfirewall
+
+2005-09-01 21:45 Warly <warly at mandriva.com>
+
+ * perl-install/share/advertising/: 13.pl, 13.png: forgotten
+ pictures
+
+2005-09-01 21:29 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Do not display or use the
+ description field of the IEEE-1284 ID string of a printer if it
+ is shorter than 5 characters (Many HP printers have a 4-digit
+ number there).
+
+2005-09-01 19:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: create remove_raw(), remove() now retries
+ with option noscripts
+
+2005-09-01 18:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: run drakids on click if an
+ alert is still available
+
+2005-09-01 18:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: drivers/fglrx_drv.o is now
+ drivers/fglrx_drv.so
+
+2005-09-01 17:43 Warly <warly at mandriva.com>
+
+ * perl-install/: bootsplash.pm, standalone/draksplash: add few
+ parameters
+
+2005-09-01 16:27 Vincent Guardiola <vguardiola at mandriva.com>
+
+ * perl-install/authentication.pm: Change definition for Active
+ Directory with SFU and Active Directory Winbind Remove idmap ldap
+ backend for winbind AD (obsolete, see Samba 3.0.20)
+
+2005-09-01 16:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: interactive is unused
+
+2005-09-01 15:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: fix return value (thanks to blino for
+ finding the pb)
+
+2005-09-01 15:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_monitor: use window instead of
+ rwindow, they're equivalent
+
+2005-09-01 14:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: perl_checker compliance
+
+2005-09-01 14:23 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/ja.po: Updated Japanese translation from
+ Yukiko Bando <ybando@k6.dion.ne.jp>
+
+2005-09-01 14:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: allow Active Directory even on
+ non corporate product (requested by our commercial team)
+
+2005-09-01 13:53 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/po/pt.po: Fix newline in translation
+
+2005-09-01 13:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: preferred packages: - remove packages not
+ existing anymore - add nail and glibc-devel
+
+2005-09-01 12:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: help debugging packageCallbackChoices()
+
+2005-09-01 12:24 Vincent Guardiola <vguardiola at mandriva.com>
+
+ * perl-install/authentication.pm: Remove default_tgs_enctypes,
+ default_tkt_enctypes, permitted_enctypes from /etc/krb5.conf for
+ winbind configuration, Buzgilla 15232
+
+2005-09-01 12:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: handle "=" between keyword and value
+ (esp. useful for reading conectiva's menu.lst) (bugzilla #18090)
+
+2005-09-01 11:34 Pixel <pixel at mandriva.com>
+
+ * perl-install/authentication.pm: allow removing lines in
+ krb5_conf_update() (for vguardiola)
+
+2005-09-01 11:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: set TMPDIR and TMP during install
+ (bugzilla #18088)
+
+2005-09-01 11:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: cleanup
+
+2005-09-01 10:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix include path (#18103)
+
+2005-09-01 01:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: short-circuit and fix embedded
+ mode
+
+2005-08-31 22:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: avoid warning
+
+2005-08-31 22:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: don't display keyring icon if
+ the wireless network doesn't need a key (thanks to Couriousous)
+
+2005-08-31 20:39 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-08-31 20:31 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: - When having added one's own PPD
+ file now it gets pre-selected in the printer/driver list.
+
+2005-08-31 18:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: install_any.pm, install_steps.pm: initial
+ deployment server support
+
+2005-08-31 18:27 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated plus added new Translator
+
+2005-08-31 18:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: - new advertising - nicer
+ "Details" mode
+
+2005-08-31 18:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: simpler and better code, allowing forcing
+ scrolling to bottom
+
+2005-08-31 18:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: use "to_bottom" functionality from mygtk2
+ (note that scroll_to_iter is no good for this, scroll_to_mark is
+ better (cf gtk's doc))
+
+2005-08-31 17:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: allow ScrolledWindow around TextView to
+ be automatically scrolled down on new text insert
+
+2005-08-31 17:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: allow file_ref to be false at Image
+ creation
+
+2005-08-31 17:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: allow adding text to a TextView with
+ gtkadd
+
+2005-08-31 17:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: add "text_ref" for Label's
+
+2005-08-31 17:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: add Label_Left
+
+2005-08-31 17:44 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: add ProgressBar
+
+2005-08-31 17:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: handle hide_ref and show_ref
+
+2005-08-31 17:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: perl_checker fix
+
+2005-08-31 17:20 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/detect.pm: - Fixed retrieval of parallel
+ port base address.
+
+2005-08-31 16:36 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/detect.pm: - Fixed parallel printer
+ auto-detection and registered IEEE-1284 ID string for Mandriva
+ hardware database. - Fixed USB IEEE-1284 ID string output.
+
+2005-08-31 16:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: add get_current_gateway_interface
+
+2005-08-31 15:30 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/detect.pm: - Added recording of IEEE-1284
+ device ID string, for USB printers.
+
+2005-08-31 14:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: ensure Gtk2::Banner::set_pixmap can be
+ used to change the text
+
+2005-08-31 14:57 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: - Fixed recognition of alredy set
+ up queues for auto queue setup, for several Xerox Phaser
+ printers the user was asked again and again to set up a print
+ queue.
+
+2005-08-31 14:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: ethernet.pm, netconnect.pm: move
+ is_ifplugd_blacklist in network::ethernet (and get rid of
+ madwifi_pci, it's wifi and supported by ifplugd)
+
+2005-08-31 13:55 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: updated
+
+2005-08-31 13:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: set isUpgrade to
+ conectiva when we found a conectiva release file
+
+2005-08-31 13:33 Warly <warly at mandriva.com>
+
+ * perl-install/share/advertising/: 01.pl, 01.png, 02.pl, 02.png,
+ 03.pl, 03.png, 04.pl, 04.png, 05.pl, 05.png, 06.pl, 06.png,
+ 07.pl, 07.png, 08.pl, 08.png, 09.pl, 09.png, 10.pl, 10.png,
+ 11.pl, 11.png, 12.pl, 12.png, 13-a.pl, 13-a.png, 13-b.pl,
+ 13-b.png, 14.pl, 14.png, 15.pl, 15.png, 16.pl, 16.png, 17.pl,
+ 17.png, 18.pl, 18.png, 19.pl, 19.png, 20.pl, 20.png, 21.pl,
+ 21.png, 22.pl, 22.png, 23.pl, 23.png, 24.pl, 24.png, 25.pl,
+ 25.png, 26.pl, 26.png, 27.pl, 27.png, 28.pl, 28.png, 29.pl,
+ 29.png, 30.pl, 30.png, list-dis, list-dwd, list-ppp, list-pwp,
+ lpi.pl, lpi.png: add new advertising pictures
+
+2005-08-31 13:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/common.pm: also look for conectiva-release
+
+2005-08-31 13:12 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps.pm, install_steps_gtk.pm,
+ install_steps_interactive.pm, pkgs.pm: instead of dirtying
+ pkgs::installCallback, use install_steps::installCallback (still
+ not clean, but better)
+
+2005-08-31 13:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: fix bad handle of the elapsed
+ time
+
+2005-08-31 13:03 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: fix typo
+
+2005-08-31 12:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps.pm, pkgs.pm: create
+ remove_marked_ask_remove() and use it
+
+2005-08-31 11:07 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
+
+ * perl-install/share/po/pl.po: Translation update
+
+2005-08-31 01:46 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: - Support for HPLIP URIs with
+ "?device=...", possible fix for bug #18041 and bug #18053.
+
+2005-08-30 23:36 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: use Combo instaed of
+ ComboBoxEntry to fiw 2 rows heigh bug
+
+2005-08-30 22:57 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: jorge
+
+2005-08-30 21:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix isdn config in manage
+ interface
+
+2005-08-30 20:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.50mdk
+
+2005-08-30 20:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: network/netconnect.pm, share/po/DrakX.pot,
+ share/po/af.po, share/po/am.po, share/po/ar.po,
+ standalone/drakconnect, share/po/az.po, share/po/be.po,
+ share/po/bg.po, share/po/bn.po, share/po/br.po, share/po/bs.po,
+ share/po/ca.po, share/po/cs.po, share/po/cy.po, share/po/da.po,
+ share/po/de.po, share/po/el.po, share/po/eo.po, share/po/es.po,
+ share/po/et.po, share/po/eu.po, share/po/fa.po, share/po/fi.po,
+ share/po/fr.po, share/po/fur.po, share/po/ga.po, share/po/gl.po,
+ share/po/he.po, share/po/hi.po, share/po/hr.po, share/po/hu.po,
+ share/po/id.po, share/po/is.po, share/po/it.po, share/po/ja.po,
+ share/po/ko.po, share/po/ky.po, share/po/lt.po, share/po/ltg.po,
+ share/po/lv.po, share/po/mk.po, share/po/mn.po, share/po/ms.po,
+ share/po/mt.po, share/po/nb.po, share/po/nl.po, share/po/nn.po,
+ share/po/pa_IN.po, share/po/pl.po, share/po/pt.po,
+ share/po/pt_BR.po, share/po/ro.po, share/po/ru.po,
+ share/po/sc.po, share/po/sk.po, share/po/sl.po, share/po/sq.po,
+ share/po/sr.po, share/po/sr@Latn.po, share/po/sv.po,
+ share/po/ta.po, share/po/tg.po, share/po/th.po, share/po/tl.po,
+ share/po/tr.po, share/po/uk.po, share/po/uz.po,
+ share/po/uz@Latn.po, share/po/vi.po, share/po/wa.po,
+ share/po/zh_CN.po, share/po/zh_TW.po: use lower case 'i' in
+ iwconfig/iwpriv/iwspy (#18031)
+
+2005-08-30 19:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: don't translate strings here
+
+2005-08-30 19:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: really allow to select the
+ network
+
+2005-08-30 19:08 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - When setting up new queue
+ with HPLIP old HPOJ config was not deleted during installation.
+ Fixed.
+
+2005-08-30 18:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: network/monitor.pm, network/network.pm,
+ network/wireless.pm, standalone/drakroam: - configure
+ wpa_supplicant correctly for shared or passwordless connections -
+ split write_interface_setttings out of
+ network::network::write_interface_conf - wpa_supplicant may list
+ some networks twice, handle it - rewrite drakroam to use
+ wpa_supplicant
+
+2005-08-30 18:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: make MagicWindow re-entrant again (was
+ broken due to only one banner, eg. for drakx summary)
+
+2005-08-30 18:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: - use noborderWhenEmbedded
+ instead of dirtying directly in WizardTable - use
+ children_centered to cleanly and correctly size the progress bar
+
+2005-08-30 18:23 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: add children_centered (was already
+ children_tight, children_loose and children)
+
+2005-08-30 17:56 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/crypto.pm: Update mirrorlist
+
+2005-08-30 17:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: i remember someone telling me gdm
+ should now be used instead of xdm when neither GNOME nor KDE are
+ selected. but it seems i've heard a ghost (or something alike),
+ so reverting
+
+2005-08-30 17:28 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: put comboxentry in a VBox (to
+ avoid 2 rows bug in comboboxentry)
+
+2005-08-30 17:21 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/drakxtools.spec: require xtest instead of the
+ /usr/X11R6/bin/xtest file
+
+2005-08-30 17:02 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: remove icon on all buttons
+
+2005-08-30 16:58 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: updated translations
+
+2005-08-30 16:38 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Restart CUPS after
+ installing HPLIP for a network printer.
+
+2005-08-30 16:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/: mygtk2.pm, ugtk2.pm: we don't want global vars in
+ mygtk2, move $::noborderWhenEmbedded to ugtk2
+
+2005-08-30 16:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: if_ is *not* short-circuit
+
+2005-08-30 16:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: allow net_applet to use vlan/alias
+ interfaces (thanks to Michael Scherer)
+
+2005-08-30 14:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: fix metric parser
+
+2005-08-30 14:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: ensure /boot/message-text exists (useful
+ when switching from grub to lilo)
+
+2005-08-30 13:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakboot: vga_fb expects the vga mode,
+ not a boolean, fixing
+
+2005-08-30 13:49 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/: af.po, am.po, ar.po, az.po, be.po, bg.po,
+ bn.po, br.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po,
+ eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, fur.po, ga.po,
+ gl.po, he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po,
+ ko.po, ky.po, ltg.po, lt.po, lv.po, mk.po, mn.po, ms.po, mt.po,
+ nb.po, nl.po, nn.po, pa_IN.po, pl.po, pt_BR.po, pt.po, ro.po,
+ ru.po, sc.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po,
+ ta.po, tg.po, th.po, tl.po, tr.po, uk.po, uz.po, uz@Latn.po,
+ vi.po, wa.po, zh_CN.po, DrakX.pot, zh_TW.po: Updated POT file
+
+2005-08-30 13:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/: interactive.pm, interactive/gtk.pm,
+ interactive/newt.pm, interactive/stdio.pm: cleanup (translate
+ late, and move methods to upper class)
+
+2005-08-30 13:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/standalone/drakboot: propose to create a default
+ bootloader configuration when no bootloader is found
+
+2005-08-30 13:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: fix ugly typo
+
+2005-08-30 13:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive.pm: fix "Cancel" in ask_okcancel
+
+2005-08-30 13:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: handle {message_text} not set but
+ /boot/message-text existing
+
+2005-08-30 12:52 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: create suggest_message_text()
+
+2005-08-30 12:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: display wireless link icon in
+ net_applet if connected through wireless
+
+2005-08-30 12:27 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: in case of all_squash use
+ anongid=65534 and anongid=65534
+
+2005-08-30 12:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: tell writeandclean_ldsoconf happened
+
+2005-08-30 12:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: cleanup (remove duplicates)
+
+2005-08-30 12:07 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/probing.c: support for alternate modules (allows to
+ load both ahci and ata_piix)
+
+2005-08-30 11:33 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: check wireless every 20
+ seconds only
+
+2005-08-30 11:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: ahci says "ahci: probe of %s failed with
+ error %d", but succeeds anyway, so we need to handle the
+ ahci/ata_piix case otherwise
+
+2005-08-30 09:02 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
+
+ * perl-install/share/po/pl.po: Translation updates
+
+2005-08-30 00:37 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: reverse xdm-config logic
+ for XDMCP
+
+2005-08-29 21:21 Karl Ove Hufthammer <karl at huftis.org>
+
+ * perl-install/share/po/nn.po: Updated translation.
+
+2005-08-29 19:39 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/rpmsrate: add prism2-utils in INSTALL section,
+ required for wlan-ng cards
+
+2005-08-29 19:00 Pixel <pixel at mandriva.com>
+
+ * perl-install/ugtk2.pm: smaller banner during install (as required
+ by warly & helene)
+
+2005-08-29 17:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: finish commit 1.387
+
+2005-08-29 17:40 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: create dir if it does not exist
+
+2005-08-29 17:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: put Cancel and Details button
+ on the right of the main progress bar
+
+2005-08-29 17:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: on 2002/07/10 (1.347), selected_leaves()
+ behaviour was broken, listing all packages. restoring it
+ (bugzilla #18000)
+
+2005-08-29 16:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: handle parsing of more complicated
+ setup line in install.sh
+
+2005-08-29 15:12 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksambashare: enhance typo fix
+
+2005-08-29 15:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksambashare: fix typo (#17978)
+
+2005-08-29 14:05 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: we don't want drakxtools-backend to
+ depend on perl-URPM
+
+2005-08-29 13:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/: fsedit.pm, c/stuff.xs.pl, share/list.xml: use
+ vol_id to get filesystem label (we only handled the equivalenet
+ of e2label)
+
+2005-08-29 13:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: fix typo (thanks to perl_checker)
+
+2005-08-29 13:04 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: handle things like append="foo=\"bar
+ boo\"" (bugzilla #17937)
+
+2005-08-29 12:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: handle reading & writing \" in
+ lilo.conf
+
+2005-08-29 12:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakgw: remove wrong test
+
+2005-08-29 11:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: s/apache2/apache/ (bugzilla #17951)
+
+2005-08-29 11:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: better logging of ahci vs ata_piix
+ special code
+
+2005-08-29 05:35 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-08-29 00:10 Inigo Salvador Azurmendi <xalba at euskalnet.net>
+
+ * perl-install/share/po/eu.po: eguneraketa
+
+2005-08-28 23:52 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/: ka.c, ka.h: ka support (initially from Antoine
+ Ginies and Erwan Velu)
+
+2005-08-28 23:38 Olivier Blin <oblin at mandriva.com>
+
+ * make_boot_img, kernel/modules.pl, mdk-stage1/Makefile,
+ mdk-stage1/config-stage1.h, mdk-stage1/network.c,
+ mdk-stage1/network.h, mdk-stage1/stage1.c, mdk-stage1/stage1.h,
+ mdk-stage1/stage1-data/stage1-with-ka.tar.bz2,
+ rescue/tree/etc/rc.sysinit, rescue/tree/ka/gen_modules_conf.pl,
+ rescue/tree/ka/hostnames, rescue/tree/ka/install.sh,
+ rescue/tree/ka/ka-d-client, rescue/tree/ka/make_initrd,
+ rescue/tree/ka/setup_network.sh, rescue/tree/ka/tftpserver: ka
+ support (initially from Antoine Ginies and Erwan Velu)
+
+2005-08-28 22:38 Inigo Salvador Azurmendi <xalba at euskalnet.net>
+
+ * perl-install/share/po/eu.po: eguneraketa
+
+2005-08-28 21:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: improve "dsl type" message
+ (thanks to Andreas)
+
+2005-08-28 20:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: restart associated ethernet
+ device for dsl connections needing it
+
+2005-08-28 19:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: rephrase "DSL connection
+ type" message, the preselected type has better to be kept
+
+2005-08-28 19:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: netconnect.pm, wireless.pm: move
+ %wireless_enc_modes in network::wireless
+
+2005-08-28 17:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: use new wireless icons
+
+2005-08-28 15:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: don't blacklist ifplugd for
+ pcmcia interfaces
+
+2005-08-28 15:28 Sharuzzaman Ahmat Raslan <sharuzzaman at myrealbox.com>
+
+ * perl-install/share/po/ms.po: Updated Malay translation
+
+2005-08-28 14:38 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2005-08-28 12:30 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/: af.po, am.po, ar.po, az.po, be.po, bg.po,
+ bn.po, br.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po, el.po,
+ eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po, fur.po, ga.po,
+ gl.po, he.po, hi.po, hr.po, hu.po, id.po, is.po, it.po, ja.po,
+ ko.po, ky.po, lt.po, ltg.po, lv.po, mk.po, mn.po, ms.po, mt.po,
+ nb.po, nl.po, nn.po, pa_IN.po, pl.po, pt_BR.po, pt.po, ro.po,
+ ru.po, sc.po, sk.po, sl.po, sq.po, sr.po, sr@Latn.po, sv.po,
+ ta.po, tg.po, th.po, tl.po, tr.po, uk.po, uz.po, uz@Latn.po,
+ vi.po, wa.po, zh_CN.po, zh_TW.po, DrakX.pot: Updated POT file.
+ Sorry about that :(
+
+2005-08-28 00:27 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/autosetupprintqueues: - When doing
+ automatic queue setup with windows on the user's screen, do not
+ only source the users .i18n, but also the system's
+ /etc/sysconfig/i18n, so that the language is also correct when
+ the user uses the system's default language.
+
+2005-08-27 19:07 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po file
+
+2005-08-27 17:46 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
+
+ * perl-install/share/po/pl.po: translation updates
+
+2005-08-27 15:51 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: now just we just need to
+ press enter to modify a file share
+
+2005-08-27 15:46 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: add popup menu to easily
+ modify/remove share
+
+2005-08-27 13:21 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
+
+ * perl-install/share/po/pl.po: translation updates
+
+2005-08-27 12:05 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po:
+ Updated Estonian translation.
+
+2005-08-27 11:06 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/: drakhosts, draknfs: use new icons
+
+2005-08-27 10:37 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/drakhosts: cosmetix fix
+
+2005-08-27 10:32 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: various perl_checker fix
+
+2005-08-27 09:59 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: remove unused code
+
+2005-08-27 05:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: any.pm, install_steps_gtk.pm,
+ install_steps_interactive.pm, services.pm, interactive/gtk.pm,
+ network/drakfirewall.pm, network/network.pm, security/level.pm:
+ fill in missing titles for banners and specify icons
+
+2005-08-27 05:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: (installPackages) ensure
+ there's no margin around advertisements (IHM request)
+
+2005-08-27 05:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (create_box_with_title) disable that code
+ path
+
+2005-08-27 05:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: remove spurious comma
+
+2005-08-27 05:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (new) add a banner at install time
+
+2005-08-27 05:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mygtk2.pm: (_gtk__MagicWindow) add a banner w/o
+ margin if provided one
+
+2005-08-27 05:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/pixmaps/: banner-adduser.png, banner-bootL.png,
+ banner-exit.png, banner-generic-ad.png, banner-languages.png,
+ banner-license.png, banner-part.png, banner-pw.png,
+ banner-security.png, banner-summary.png, banner-sys.png,
+ banner-update.png: add banner icons
+
+2005-08-27 05:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: typo fix
+
+2005-08-27 01:29 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: cosmetic fix
+
+2005-08-27 01:25 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: add an about menu
+
+2005-08-27 00:55 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/drakbug: add drakhosts, draknfs,
+ draksambashare, set wrap width to 3 to show mandriva tools
+
+2005-08-27 00:35 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: add icon in user, share,
+ printer notebook
+
+2005-08-27 00:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/v4l.pm: sync list with latest saa7134
+ driver
+
+2005-08-27 00:10 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: install_steps_gtk.pm,
+ install_steps_interactive.pm: add a cople missing titles
+
+2005-08-26 23:16 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: update icon (thx ln)
+
+2005-08-26 23:12 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/icons/ic82-users-16.png: add user icon
+ (16x)
+
+2005-08-26 23:03 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/icons/IC-sambaprt-16.png: add
+ sambaprinter icon
+
+2005-08-26 21:06 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/icons/: IC-Dhost-48.png, IC-Dssh-48.png,
+ IC-NFS-48.png, IC-winacces1-48.png, IC-winacces2-16.png: add new
+ icons
+
+2005-08-26 21:02 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: use drakgw icon
+
+2005-08-26 20:47 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: add pixbuf image
+
+2005-08-26 19:23 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: check user in valid_list,
+ write_list ....
+
+2005-08-26 19:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * docs/HACKING: fix requires (gtk+-1.x => gtk+-2.x)
+
+2005-08-26 19:01 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Removed "Do not print
+ testy page" in test page step of add printer wizard (bug
+ #15861).
+
+2005-08-26 18:59 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: various fix in add user
+
+2005-08-26 18:44 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Fixed message window in
+ the case that no local printer was found when running the add
+ printer wizard in beginner's mode (bug #16757).
+
+2005-08-26 18:13 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: add a samba user without
+ passwd
+
+2005-08-26 18:06 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: fix double-click pb in
+ user tab
+
+2005-08-26 18:05 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: add user tab
+
+2005-08-26 17:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/list.xml: xorg modules: replace .a and .o with
+ .so
+
+2005-08-26 17:23 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: add user tab
+
+2005-08-26 17:18 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: - Gutenprint does not print
+ correctly when margins are set in the CUPS configuration, so do
+ not set margins when creating a queue with Gutenprint, or
+ remove the margins when switching the driver of an existing
+ queue to Gutenprint.
+
+2005-08-26 16:59 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: test if printer share
+ already exist
+
+2005-08-26 16:55 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: lshw is not that important
+
+2005-08-26 16:54 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: - don't open advanced languages by default -
+ replace "Advanced" button with "Multi languages"
+
+2005-08-26 16:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: gdm must only be installed when
+ CAT_X is selected
+
+2005-08-26 16:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: handle nvidia's libglx.so being now
+ in extensions/nvidia instead of extensions (when there is
+ extensions/libglx.a, it means extensions/libglx.so is not xorg's
+ libglx, so it may be nvidia's)
+
+2005-08-26 16:43 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: update printer_list from
+ printer dialog box
+
+2005-08-26 16:25 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: major adjustemnt in
+ printer dialog box
+
+2005-08-26 16:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: add a few more icons in order to
+ desambiguate some categories that were using the same icon
+
+2005-08-26 16:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/icons/harddrake2/: hw-keyboard.png,
+ hw-memory.png, hw-pcmcia.png, hw-smbus.png, hw-usb.png: add a few
+ more icons for harddrake GUI
+
+2005-08-26 15:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_gtk.pm: (update_steps_position) render
+ passed steps as bold and current step as bold italic as requested
+ by IHM team
+
+2005-08-26 15:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/pixmaps/: wifi-020.png, wifi-040.png, wifi-060.png,
+ wifi-080.png, wifi-100.png: add new neat wifi icons from Hélène
+
+2005-08-26 15:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_gtk.pm: (create_steps_window) leave around
+ references on text widget and on unmarked text for steps
+
+2005-08-26 15:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_gtk.pm: (create_steps_window) underline step
+ categories (and render them as bold btw)
+
+2005-08-26 15:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/install_gtk.pm: (create_steps_window) precreate
+ pixbuf for 'done' state too
+
+2005-08-26 15:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/themes-galaxy.rc: use the same background
+ under category as in root window
+
+2005-08-26 15:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/themes-galaxy.rc: new step category's color
+ (on IHM team request)
+
+2005-08-26 15:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/themes-galaxy.rc: new background color (on IHM
+ team request)
+
+2005-08-26 15:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/themes-galaxy.rc: at install time, banner text
+ is blue
+
+2005-08-26 15:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (Gtk2::Banner->new) use proper style for
+ banner at install time
+
+2005-08-26 15:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (Gtk2::Banner->new) banners are smaller at
+ install time
+
+2005-08-26 15:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (Gtk2::Banner->new) use proper GC (text_gc
+ is for rendering on editable widgets whereas fg_gc is for
+ rendering on non editable widgets)
+
+2005-08-26 15:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (Gtk2::Banner->new) use bold font on
+ banners (IHM team request)
+
+2005-08-26 15:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (Gtk2::Banner->new) translating it is
+ useless w/o a require on common
+
+2005-08-26 15:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/pixmaps/steps_done.png: add new icon for 'done'
+ state for steps
+
+2005-08-26 15:49 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: reduce font size (especially for latin
+ scripts) at install time b/c of new gtk+/cairo
+
+2005-08-26 15:37 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: fix printer wizard
+
+2005-08-26 15:07 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: now we can modify first
+ entry
+
+2005-08-26 14:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: fix missing prefix
+ when reading sysconfig bootsplash
+
+2005-08-26 13:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: more precise log_size during install
+
+2005-08-26 13:05 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: fix pb with $path
+
+2005-08-26 13:04 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: some perl_checker fix
+ (why mine is not up to date, while i am running cooker ?)
+
+2005-08-26 13:00 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: now display share name in
+ modification dialog box
+
+2005-08-26 12:45 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: re-enable set_rules_hint
+
+2005-08-26 12:38 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: use simpleList to display
+ share
+
+2005-08-26 11:58 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: improvement in perl code
+ (use Gtk::SimpleList)
+
+2005-08-26 06:38 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-08-25 22:44 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: add printer wizard
+
+2005-08-25 22:09 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: add special printer
+ section
+
+2005-08-25 22:02 Karl Ove Hufthammer <karl at huftis.org>
+
+ * perl-install/share/po/: nn.po: Updated translation.
+
+2005-08-25 21:56 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: few adjustement
+
+2005-08-25 20:33 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: bah, DrakX finished for real *grml*
+
+2005-08-25 19:14 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: disableadd pdf-gen and
+ add printer
+
+2005-08-25 18:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (get_scsi_driver) kill dead
+ variable
+
+2005-08-25 18:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: since ldetect runs gzip, time
+ spent in some of these detect functions was a significant part of
+ mcc's startup time
+
+2005-08-25 17:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (get_scsi_driver) find driver of
+ host controller from sysfs in all cases (not just usb-storage
+ case)
+
+2005-08-25 17:56 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: use file share instead of
+ disk share
+
+2005-08-25 17:54 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: various improvement in
+ printers tab
+
+2005-08-25 17:04 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: finished translation :)
+
+2005-08-25 16:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: remove now unused variable (cf previous
+ commit)
+
+2005-08-25 16:53 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: add notebook support and
+ printers tab
+
+2005-08-25 16:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: br.po, fr.po: update
+
+2005-08-25 16:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: don't kill "runaway" processes anymore, it
+ should not be needed for ejecting cd (?)
+
+2005-08-25 16:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, am.po, ar.po, az.po,
+ be.po, bg.po, bn.po, br.po, bs.po, ca.po, cs.po, cy.po, da.po,
+ de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po,
+ fur.po, ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po, is.po,
+ it.po, ja.po, ko.po, ky.po, lt.po, ltg.po, lv.po, mk.po, mn.po,
+ ms.po, mt.po, nb.po, nl.po, nn.po, pa_IN.po, pl.po, pt.po,
+ pt_BR.po, ro.po, ru.po, sc.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tl.po, tr.po, uk.po,
+ uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: sync with
+ copyright bumping
+
+2005-08-25 16:15 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksplash: fix lame errors
+ (perl_checker)
+
+2005-08-25 16:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksplash: restrict mouse motion to
+ image
+
+2005-08-25 15:58 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/pkgs.pm: Strange typing bug workaround
+
+2005-08-25 15:24 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: first step to integrate
+ printers share
+
+2005-08-25 15:17 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakfont: allow to import Windows Fonts
+ (#15531)
+
+2005-08-25 15:07 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: cosmetic fix
+
+2005-08-25 14:47 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/Makefile.config: add draksambashare tool
+
+2005-08-25 14:43 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: enable empty path for
+ homes share
+
+2005-08-25 14:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/partition_table/raw.pm: conectiva 10's grub
+ detection (thanks to bogdano)
+
+2005-08-25 14:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: perl_checker compliance
+
+2005-08-25 14:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/fs/mount_options.pm: (help) document 'encrypted'
+ option (#13562)
+
+2005-08-25 14:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: rephrase IFW
+ interactive/automatic checkbox label in the settings menu
+
+2005-08-25 13:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/fs/mount_options.pm: typo fix (Per Oyvind Karlsen)
+
+2005-08-25 13:41 Pixel <pixel at mandriva.com>
+
+ * mdk-stage1/pci-resource/Makefile,
+ mdk-stage1/usb-resource/Makefile, perl-install/share/list.xml,
+ rescue/list.xml: ldetect-lst tables are now compressed
+
+2005-08-25 13:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: install grub stage files in
+ install_grub(), not write_grub() (bugzilla #17830) (thanks to
+ herton)
+
+2005-08-25 12:07 Pixel <pixel at mandriva.com>
+
+ * tools/drakx-in-chroot: - allow to easy clean existing chroot -
+ more fuzzy detection of mounted loop (to "losetup -d" it) -
+ better log message for loop
+
+2005-08-25 11:50 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: fix profiles pb, add a
+ wizard to add a share, some ergo adjustement
+
+2005-08-25 10:31 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: try to fix undeclared
+ variable
+
+2005-08-25 10:08 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: use err_diag instead of
+ ask_warn
+
+2005-08-25 09:51 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: various perl_checker fix
+
+2005-08-25 09:07 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: translated more new strings
+
+2005-08-25 02:09 Alice Lafox <alice at lafox.com.ua>
+
+ * perl-install/share/po/ru.po: Updated
+
+2005-08-24 23:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, am.po, ar.po, az.po,
+ be.po, bg.po, bn.po, br.po, bs.po, ca.po, cs.po, cy.po, da.po,
+ de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po,
+ fur.po, ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po, is.po,
+ it.po, ja.po, ko.po, ky.po, lt.po, ltg.po, lv.po, mk.po, mn.po,
+ ms.po, mt.po, nb.po, nl.po, nn.po, pa_IN.po, pl.po, pt_BR.po,
+ pt.po, ro.po, ru.po, sc.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tl.po, tr.po, uk.po,
+ uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: Grub really
+ is named GRUB (and it makes the pull-down menu more consistent
+ btw...)
+
+2005-08-24 23:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: share/po/br.po, share/po/ca.po, share/po/cs.po,
+ share/po/cy.po, share/po/de.po, share/po/et.po, share/po/eu.po,
+ share/po/fr.po, bootloader.pm, share/po/id.po, share/po/is.po,
+ share/po/ja.po, share/po/nb.po, share/po/nn.po, share/po/pl.po,
+ share/po/pt.po, share/po/pt_BR.po, share/po/zh_CN.po: Grub really
+ is named GRUB (and it makes the pull-down menu more consistent
+ btw...)
+
+2005-08-24 22:55 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: dont write unused var in
+ smb.conf
+
+2005-08-24 22:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: share/po/DrakX.pot, share/po/af.po,
+ share/po/am.po, share/po/ar.po, share/po/az.po, share/po/be.po,
+ share/po/bg.po, share/po/bn.po, share/po/br.po, share/po/bs.po,
+ share/po/ca.po, share/po/cs.po, share/po/cy.po, share/po/da.po,
+ share/po/de.po, share/po/el.po, share/po/eo.po, share/po/es.po,
+ share/po/et.po, share/po/eu.po, share/po/fa.po, share/po/fi.po,
+ share/po/fr.po, share/po/fur.po, share/po/ga.po, share/po/gl.po,
+ share/po/he.po, share/po/hi.po, share/po/hr.po, share/po/hu.po,
+ share/po/id.po, share/po/is.po, share/po/it.po, share/po/ja.po,
+ share/po/ko.po, share/po/ky.po, share/po/ltg.po, share/po/lt.po,
+ share/po/lv.po, share/po/mk.po, share/po/mn.po, share/po/ms.po,
+ share/po/mt.po, share/po/nb.po, share/po/nl.po, share/po/nn.po,
+ share/po/pa_IN.po, share/po/pl.po, share/po/pt.po,
+ share/po/pt_BR.po, share/po/ro.po, share/po/ru.po,
+ share/po/sc.po, share/po/sk.po, share/po/sl.po, share/po/sq.po,
+ share/po/sr.po, share/po/sr@Latn.po, share/po/sv.po,
+ share/po/ta.po, share/po/tg.po, share/po/th.po, share/po/tl.po,
+ share/po/tr.po, share/po/uk.po, share/po/uz.po,
+ share/po/uz@Latn.po, share/po/vi.po, share/po/wa.po,
+ share/po/zh_CN.po, share/po/zh_TW.po, standalone/drakgw: typo fix
+
+2005-08-24 22:02 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: enable change in smb.conf
+
+2005-08-24 21:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-08-24 21:53 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Seems "X -ac" is required
+ (Diogo)
+
+2005-08-24 21:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ifw.pm: handle additionnal parameter to
+ differentiate processed alerts and notifications from automatic
+ mode
+
+2005-08-24 21:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ifw.pm: rename for new mandi API
+
+2005-08-24 21:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: preset automatic mode in
+ popup
+
+2005-08-24 21:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.49mdk
+
+2005-08-24 21:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: allow to whitelist attackers
+ in popup
+
+2005-08-24 20:38 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ifw.pm: show attacks of unknown type
+
+2005-08-24 20:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: network/ifw.pm, standalone/drakids,
+ standalone/net_applet: - net_applet: stop icon blink when an
+ Interactive Firewall alert isn't processed - drakids: add log tab
+ - drakids: allow to clear logs - net_applet: stop icon blinking
+ when drakids is run or clear logs - net_applet: present drakids
+ window on click on menu if drakids is already run - factorize
+ packet reading to network::ifw::attack_to_hash
+
+2005-08-24 18:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/.perl_checker: blacklist packdrake again
+
+2005-08-24 18:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/.perl_checker: put back packdrake
+
+2005-08-24 18:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: ahci and ata_piix handle the same
+ hardware, it only depends on the bios configuration, so try each
+ one...
+
+2005-08-24 18:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/modules.pm: rewrite code to allow next commit
+
+2005-08-24 17:32 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: printer/printerdrake.pm, standalone/scannerdrake:
+ - Reverted workarounds for bug #17718, the bug is now really
+ fixed, the problem was in /usr/lib/libDrakX/interactive/gtk.pm.
+
+2005-08-24 17:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: do not crash in
+ create_treeview_tree with allow_empty_list and really empty list
+ (#17718)
+
+2005-08-24 16:52 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: add share name
+
+2005-08-24 16:11 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: fix inherit_permission pb
+
+2005-08-24 16:08 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: ergo fix in modify dialog
+ box, add more advanced options, re-enable add button (launch a
+ wizard)
+
+2005-08-24 15:11 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Don't use "X -ac" for thin
+ clients (Diogo)
+
+2005-08-24 15:03 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Fixed problem of current
+ printer/driver not chosen in printer/driver list when choosing
+ "Printer manufacturer, model, driver" in the printer editing
+ menu (occured mainly in expert mode and with printers with
+ manufacturer-supplied PPD).
+
+2005-08-24 14:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/.perl_checker: blacklist a few packages for
+ draksambashare
+
+2005-08-24 14:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/.perl_checker: packdrake is now perl_checker aware
+
+2005-08-24 13:58 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: - Support for one pre-built PPD
+ being linked from multiple printer database entries.
+
+2005-08-24 13:06 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: cosmetics fix
+
+2005-08-24 12:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/keyboard.pm: small timeout when calling xmodmap (for
+ drakx-in-chroot)
+
+2005-08-24 10:43 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: Updated translations
+
+2005-08-24 04:14 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: - Added support for pre-built PPDs
+ for non-PostScript drivers, especially PCL-XL PPDs from Ricoh.
+
+2005-08-23 21:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakfont: perl_checker cleanup,
+ $select_font_msg is unused
+
+2005-08-23 19:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: auto allocate on the
+ current LV first (only partially fix bug #16175 since it will
+ also auto allocate on other drives)
+
+2005-08-23 17:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: don't write /etc/udev/conf.d/mouse.conf,
+ udev now handles it using /etc/sysconfig/mouse
+
+2005-08-23 17:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: for bestKernelPackage(), sort kernels to
+ have higher version first
+
+2005-08-23 17:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/ga.po: update
+
+2005-08-23 16:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/rpmsrate: fluxbox is in main now
+
+2005-08-23 16:18 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: adjust modify dialog box
+ (ergo)
+
+2005-08-23 16:12 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draksambashare: first release, need
+ various debug/improvement/test
+
+2005-08-23 15:03 Pixel <pixel at mandriva.com>
+
+ * rescue/list.xml: - grub files have moved - add *_stage1_5 grub
+ files
+
+2005-08-23 14:56 Pixel <pixel at mandriva.com>
+
+ * Makefile: [ ... ] && ... exits false if the cond is false, this
+ is not what we want here
+
+2005-08-23 14:52 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: don't create isolinux/xbox if we don't have a xbox
+ kernel available
+
+2005-08-23 14:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: be safer
+
+2005-08-23 14:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: fix sort
+
+2005-08-23 14:39 Warly <warly at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: use the current
+ theme name
+
+2005-08-23 14:32 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakbackup: Enable tape hardware
+ compression (17565) Request window size for standalone
+
+2005-08-23 12:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: fix network restart condition
+ for 6to4
+
+2005-08-23 12:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/keyboard.pm: making us-intl the default console
+ keyboard mapping (it was introduced in console-tools by Andreas
+ to allow: compose '\'' 'c' to 'ç')
+
+2005-08-23 10:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: use wext driver for ipw cards
+ in wpa_supplicant
+
+2005-08-23 10:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: remove deprecated comment
+
+2005-08-23 01:21 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Code cleanups Clear main
+ window on tab change Suggestions from Diago: Offer to install
+ i586 kernel for old clients Progress display while creating all
+ kernel images Move dhcpd config to more logical area
+
+2005-08-23 01:03 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/printerdrake: - Updated version number
+ (bug #17719).
+
+2005-08-23 00:51 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: printer/printerdrake.pm, standalone/scannerdrake:
+ - Fixed bug #17718 in both printerdrake and scannerdrake.
+
+2005-08-22 23:07 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/pt_BR.po: updated Brazilian file
+
+2005-08-22 20:58 Karl Ove Hufthammer <karl at huftis.org>
+
+ * perl-install/share/po/nn.po: Updated Norwegian Nynorsk
+ translation.
+
+2005-08-22 17:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: add diskdrake fix in 10.3-0.48mdk
+
+2005-08-22 17:07 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: enhance grub device.map parsing
+ (bugzilla #17732)
+
+2005-08-22 16:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.48mdk
+
+2005-08-22 16:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: function $advertize must work
+ when chrooted or not, we can't really know if we're chrooted or
+ not
+
+2005-08-22 16:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/network/modem.pm: devfssymlinkf handle this case
+
+2005-08-22 16:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: don't use a udev rule, this doesn't always
+ work for input/mice, and never for ttySL0
+
+2005-08-22 14:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: simplify previous commit (the /tty/ was
+ there for serial mice)
+
+2005-08-22 14:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/any.pm: add udev rule for mouse back
+
+2005-08-22 13:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/any.pm: make clear that KERNEL is a match in udev
+ rule
+
+2005-08-22 13:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix Mandrivalinux to Mandriva Linux
+ (thanks to Eskild Hustvedt)
+
+2005-08-21 13:36 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
+
+ * perl-install/share/po/pl.po: string translations
+
+2005-08-20 23:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.47mdk
+
+2005-08-20 23:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: do not show drakids in menu
+ if Interactive Firewall isn't available
+
+2005-08-20 16:14 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
+
+ * perl-install/share/po/pl.po: some typos corrections
+
+2005-08-20 12:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: do not fail to start if
+ messagebus is down
+
+2005-08-19 22:43 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Ignore config file for
+ First Time Wizard, assume defaults (17673)
+
+2005-08-19 18:12 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakids: try to get protocol as text
+
+2005-08-19 17:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: use Gtk2::NotificationBubble
+ (and drop Gtk2::Balloon)
+
+2005-08-19 17:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: typo fix (this message is confusing
+ since any.pm really expect a number and loudly complains when
+ given a string)
+
+2005-08-19 17:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: enable to select scim+pinyin
+
+2005-08-19 17:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/drakx-in-chroot: prevent packdrake faillure on creating
+ temporary files
+
+2005-08-19 16:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: do not crash when unexpanding
+ details in Interactive Firewall window
+
+2005-08-19 15:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/themes-galaxy.rc: enforce no stock icon policy
+ (Frederic Crozat)
+
+2005-08-19 01:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.46mdk
+
+2005-08-19 01:16 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: New strings translated
+
+2005-08-19 01:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/service_harddrake: use the new way to
+ blacklist modules (#12731)
+
+2005-08-19 00:41 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Client tree edit fix
+ (17653), Write to floppy (17655)
+
+2005-08-18 23:06 Karl Ove Hufthammer <karl at huftis.org>
+
+ * perl-install/share/po/nn.po: Updated translation.
+
+2005-08-18 20:13 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: cosmetic fixes (use ugtk2 to
+ have nice borders, shrink window on expander hide, reorder
+ buttons)
+
+2005-08-18 20:12 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ifw.pm: add get_protocol
+
+2005-08-18 19:18 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/: drakids, net_applet: switch to
+ Interactive Firewall
+
+2005-08-18 18:52 Frederic Crozat <fcrozat at mandriva.com>
+
+ * perl-install/share/rpmsrate: bump priority for gstreamer-alsa
+
+2005-08-18 17:39 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: (simple_read_rpmsrate) only
+ install HW packages of weigh 4 or 5
+
+2005-08-18 17:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/rpmsrate: Interactive Firewall is mandatory
+
+2005-08-18 17:17 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: activefw -> ifw
+
+2005-08-18 17:06 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: main.pm, printerdrake.pm: - Removed stuff
+ for automatic print queue setup when starting CUPS. - Small menu
+ text improvement.
+
+2005-08-18 16:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: install bpalogin if needed
+ only
+
+2005-08-18 16:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: update naughtyServers for new distro
+
+2005-08-18 16:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.45mdk
+
+2005-08-18 16:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: log more precisely the "naughty
+ servers" unselected
+
+2005-08-18 16:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: network/activefw.pm, network/ifw.pm,
+ standalone/drakids, standalone/net_applet: new name is
+ Interactive Firewall
+
+2005-08-18 15:09 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - When printerdrake's
+ first-time dialog appears on plugging a USB printer, the user
+ can now also turn off print queue auto-setup before starting
+ printerdrake and so without needing the printing infrastructure
+ to be installed.
+
+2005-08-18 14:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakids: use "Allowed addresses" instead
+ of "Attacker" in whitelist
+
+2005-08-18 06:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: (naughtyServers_list): those packages don't
+ exist anymore
+
+2005-08-17 19:22 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: main.pm, printerdrake.pm: - Added
+ automatic setup of Ethernet-connected HP printers with HPLIP. -
+ Taken into account that HPLIP sometimes uses model names with
+ "HP" in the beginning and sometimes not. - Fixed problem of
+ cursor in printer model list pointing to random, completely
+ unrelated printer when no model name was auto-detected. - For
+ setting the cursor onto the correct model in the printer model
+ list also taken into account a model name detected only by HPLIP.
+ - When one chooses "Printer Connection Type" in the "Edit" menu
+ of an Ethernet-connected printer which is under the control of
+ HPLIP or HPOJ, "LOCAL" was pre-selected as connection type and
+ not "SOCKET". Fixed. - Replaced "Windows 95/98/NT" by simply
+ "Windows" in the connection type menu. There are many more
+ Windows versions than 95, 98, and NT currently. - Made
+ matching of detected printer model name with HPLIP database
+ more reliable.
+
+2005-08-17 14:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/cy.po: update
+
+2005-08-17 13:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/ga.po: update
+
+2005-08-17 13:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-08-17 12:45 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: lsof is nice
+
+2005-08-17 12:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/unused/migrate-ugtk2-to-mygtk2.pl: allow using from
+ far away, not only gi/perl-install
+
+2005-08-17 11:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * docs/HACKING: we need xfsdump for /sbin/dump.xfs
+
+2005-08-17 09:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: add missing spaces
+
+2005-08-17 09:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/list.xml: have gdb when debugging
+
+2005-08-17 09:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: (install_server) fix installing ati
+ packages
+
+2005-08-17 08:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps_gtk.pm, pkgs.pm: don't fork anymore
+ to install rpms
+
+2005-08-17 07:06 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: do not tag rpmsrate as an
+ executable
+
+2005-08-17 06:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: during install, use "nofsync" for rpm
+ database (=> speedup x2)
+
+2005-08-17 06:56 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: do not tag harddrake init script as
+ config file
+
+2005-08-17 06:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix prereq
+
+2005-08-17 06:49 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: cleanup
+
+2005-08-17 05:39 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: scim-qtimm was already mentioned
+
+2005-08-17 05:35 Pixel <pixel at mandriva.com>
+
+ * make_boot_img: new kernel is bigger, so we need a bigger all.img
+
+2005-08-16 19:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: add some more commented
+ resolutions (also see bugzilla #17526)
+
+2005-08-16 19:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: don't have digikam (and some more)
+ twice
+
+2005-08-16 18:47 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: printer/main.pm, printer/printerdrake.pm,
+ standalone/autosetupprintqueues: - Improved the auto queue setup
+ pop-up window display on the user's desktop according to the
+ suggestions in bug #17370. - Ask the user whether he wants
+ really have a new printer set up before doing the auto queue
+ setup. - Do always a fully non-interactive auto queue setup when
+ X is not installed - First-time dialog could show garbage as
+ printer model name for some models. Fixed. - Separated "Print
+ no test pages" entry on the wizard page for printing test
+ pages. - Changed the defaults for automatic re-enabling of
+ disabled queues to "no", due to the new CUPS backend wrapper
+ queues should not get disabled automatically any more. - Typo
+ corrections.
+
+2005-08-16 14:34 Inigo Salvador Azurmendi <xalba at euskalnet.net>
+
+ * perl-install/share/po/eu.po: eguneraketa
+
+2005-08-16 10:40 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/share/rpmsrate: - Let digiKam get installed on KDE
+ systems. For KDE it is the default application when plugging a
+ digital camera now.
+
+2005-08-16 09:09 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/de.po: updated German file
+
+2005-08-16 08:59 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/type.pm: add reiser4 to the true_local_fs_types()
+
+2005-08-16 08:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, install_any.pm: fix typo
+
+2005-08-16 08:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/rpmsrate: required for easy-wifi
+
+2005-08-16 07:35 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: fix "Mouse" button in summary
+ doing nothing
+
+2005-08-15 22:20 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/: main.pm, printerdrake.pm: - Added
+ per-printer configurable handling of CUPS backend errors. This
+ way CUPS does not disable print queues automatically any more
+ (for example if printer not turned on).
+
+2005-08-14 19:00 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/rpmsrate: Install scim-qtimm for locales that
+ use scim as their default IM.
+
+2005-08-14 09:36 Sharuzzaman Ahmat Raslan <sharuzzaman at myrealbox.com>
+
+ * perl-install/share/po/ms.po: Updated Malay translation
+
+2005-08-14 00:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/ga.po: update
+
+2005-08-14 00:05 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-08-13 15:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install scim-tomoe for japanese
+ users
+
+2005-08-13 15:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: fix installing laptop-mode-tools on
+ laptops
+
+2005-08-13 15:16 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: jorge
+
+2005-08-12 17:42 rstandtke
+
+ * perl-install/share/po/de.po: some fixes
+
+2005-08-12 14:12 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: perl_checker fixes
+
+2005-08-12 14:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: - store attack details in a
+ hash - add a Gtk2::Balloon custom pseudo-widget - use balloons to
+ notify attacks - show attack window on balloon click
+
+2005-08-12 14:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakids: use gtkadd
+
+2005-08-12 14:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakids: improve list removal workaround
+ using a copying grep
+
+2005-08-12 04:54 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po:
+ Updated Estonian translations.
+
+2005-08-12 01:16 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/rpmsrate: install laptop-mode-tools on laptops
+
+2005-08-11 15:23 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/keyboard.pm: Revert removal of keyboard layout
+ weight of zh. (bug#16873)
+
+2005-08-11 13:30 Michal Bukovjan <bukovjan at mbox.dkm.cz>
+
+ * perl-install/share/po/cs.po: Fix bug #17383
+
+2005-08-11 13:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: (install_server) install
+ ati_igp-kernel too
+
+2005-08-11 10:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-08-11 08:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-24.5.102mdk
+
+2005-08-11 08:17 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.44mdk (and add a warning
+ about CVS)
+
+2005-08-11 08:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/do_pkgs.pm: (check_kernel_module_packages) handle
+ ati_igp
+
+2005-08-11 08:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: (install_server) ati-igp was
+ renamed ati_igp
+
+2005-08-11 08:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: (install_server) install
+ alternative ATI driver if needed (again)
+
+2005-08-10 17:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, install_any.pm: - if we have a lot of
+ memory, keep the clp in tmpfs - check the size available in
+ $::prefix/tmp for the case it's on its own filesystem (bug
+ #15377) - also check the size available in other cases
+
+2005-08-10 16:20 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: create clp_on_tmpfs() for future use
+
+2005-08-10 13:31 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.43mdk
+
+2005-08-10 12:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (floppies) in standalone mode,
+ usb-storage is loaded by hotplug. manually loading it just slows
+ down harddrake service startup
+
+2005-08-10 11:15 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: please perl_checker
+
+2005-08-10 11:14 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: special option for RS480 using
+ fglrx
+
+2005-08-10 11:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: network/monitor.pm, standalone/net_applet: compute
+ approx_level in network::monitor::list_wireless
+
+2005-08-10 08:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/any.pm: - our udev rules must come before standard
+ mandriva rules to be able to shadow them - special mouse rule
+ *is* needed for serial mouse
+
+2005-08-10 06:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: (install_server) there's only one
+ ati package again
+
+2005-08-10 06:16 Pixel <pixel at mandriva.com>
+
+ * perl-install/do_pkgs.pm: be a little safer and shorter
+
+2005-08-10 06:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/pkgs.pm: on upgrade, have not only the upgraded
+ packages, but also the installed packages in package_list.pl
+ (bugzilla #15296)
+
+2005-08-10 06:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: doc was renamed
+
+2005-08-10 05:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: ask the encrypt_key when
+ we have "encrypted" set but we don't have the encrypt_key
+
+2005-08-10 05:33 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/mount_options.pm: i don't know if it's really the
+ best choice here, but that way it always allow to select
+ "encrypted"
+
+2005-08-10 05:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/type.pm: {bad_fs_type_magic} is wrong info when
+ we have "encryption" (bugzilla #16893 is about this too)
+
+2005-08-10 04:32 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/interactive.pm: don't be sure of anything
+ of setting encryption (it may help bugzilla #16893)
+
+2005-08-10 04:22 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/mount.pm: remove encryption=xxx and encrypted
+ option before passing them to mount() since we take care of the
+ encrypted loopback ourself (bugzilla #17142)
+
+2005-08-09 17:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, interactive.pm: image2f has slightly
+ changed
+
+2005-08-09 17:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: really make ComboBox with tree
+ inside work
+
+2005-08-09 17:17 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: modify ComboBox with a tree
+ inside to follow previous __create_tree_model() change
+
+2005-08-09 17:11 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: fix indentation
+
+2005-08-09 17:10 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: better that way
+
+2005-08-09 17:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: revamp code
+
+2005-08-09 16:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: simplify
+
+2005-08-09 11:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: no need to explicitly show
+
+2005-08-09 10:54 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/pt_BR.po: updated Brazilian po file
+
+2005-08-09 10:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.42mdk
+
+2005-08-09 10:01 Gwenole Beauchesne <gbeauchesne at mandriva.com>
+
+ * perl-install/c/smp-dmi.c: map more closely to dmidecode
+ behaviour's, aka mmap(/dev/mem) and find/read the raw DMI table
+ in a whole.
+
+2005-08-09 09:51 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/ga.po: update
+
+2005-08-09 09:39 Pixel <pixel at mandriva.com>
+
+ * docs/README: fix
+
+2005-08-09 09:38 Pixel <pixel at mandriva.com>
+
+ * docs/README: replace mandrake with mandriva
+
+2005-08-09 09:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: readd lost comments
+
+2005-08-09 09:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: we can't differentiate all the scim+xxx
+ IMs, so we ensure we prefer "scim+(default)"
+
+2005-08-09 09:06 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_steps.pm, install_steps_interactive.pm,
+ lang.pm, standalone/finish-install, standalone/localedrake:
+ create lang::write_and_install() which takes a $do_pkgs
+
+2005-08-09 08:40 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: fix typo
+
+2005-08-09 08:08 Frederic Lepied <flepied at mandriva.com>
+
+ * perl-install/share/rpmsrate: tuxracer => ppracer
+
+2005-08-09 08:01 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: there's no kernel-enterprise anymore
+
+2005-08-09 06:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: simplify
+
+2005-08-09 06:09 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: - it's better to use $locale->{lang}
+ whenever possible - less generic name for %locale2encoding
+
+2005-08-09 06:02 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: move %IM2packages into %IM_config
+
+2005-08-09 05:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: - get rid of %IM_XIM_program, replacing it
+ with a more powerful XIM_PROGRAM field - in read(), use more
+ fields to recognise the IM
+
+2005-08-09 04:53 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: - move extra scim combinations in
+ %IM_config - drop set_default_im(), moving data directly in
+ %IM_config
+
+2005-08-09 04:38 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: simplify (we access get_default_im with
+ short lang name)
+
+2005-08-09 04:31 rstandtke
+
+ * perl-install/share/po/de.po: some fixes
+
+2005-08-09 04:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: remove wrong unused line
+
+2005-08-09 03:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: simplify (not useful since values and main
+ key are equal)
+
+2005-08-09 02:57 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, lang.pm: - simplify IM choice using
+ {format} to its full power - {IM} is '' instead of either '' or
+ 'None'
+
+2005-08-09 02:48 Pixel <pixel at mandriva.com>
+
+ * perl-install/interactive/gtk.pm: don't apply {format} twice
+
+2005-08-09 02:27 Pixel <pixel at mandriva.com>
+
+ * perl-install/lang.pm: cleanup IM2packages()
+
+2005-08-08 17:21 Pixel <pixel at mandriva.com>
+
+ * perl-install/diskdrake/smbnfs_gtk.pm: differentiate (nfs)servers
+ on ip first to have less dups (bugzilla #17236)
+
+2005-08-08 17:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: keep MS_DNS1, MS_DNS2 and DOMAIN
+ variables in ifcfg files
+
+2005-08-08 17:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: netconnect.pm, network.pm: initial IPv6
+ support (6to4 tunnel)
+
+2005-08-08 16:56 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/keymaps.tar.bz2: rebuild keymaps with
+ NR_KEYS==256 when it was previously 255
+
+2005-08-08 15:46 Pixel <pixel at mandriva.com>
+
+ * perl-install/: any.pm, drakxtools.spec: in standalone, use
+ monitor-edid's new option --try-in-console
+
+2005-08-08 13:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: do not write aliases interfaces
+ in iftab
+
+2005-08-08 11:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: typo fix
+
+2005-08-08 10:53 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/drakhosts: fix bug #17255
+
+2005-08-08 10:52 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: fix bug #17255 (modify empty
+ /etc/exports file)
+
+2005-08-08 10:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install2.pm, raid.pm: write /etc/mdadm.conf when
+ creating a new md (bugzilla #15502)
+
+2005-08-08 08:03 Pixel <pixel at mandriva.com>
+
+ * rescue/list.xml: add dump* and restore* (as required by Giuseppe
+ Ghibò)
+
+2005-08-08 07:47 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: fix update_for_renumbered_partitions
+ (bugzilla #16786)
+
+2005-08-08 07:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: handle pcmcia modems
+
+2005-08-08 06:42 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/diskdrake.rc: fix color for selected item
+
+2005-08-08 05:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/common.pm: move is_xbox from common to
+ detect_devices
+
+2005-08-08 05:17 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: fix User ID help (#17321)
+
+2005-08-08 05:16 Olivier Blin <oblin at mandriva.com>
+
+ * Makefile.config: use Mandriva Linux as distrib name
+
+2005-08-08 05:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps_interactive.pm: when we have only one
+ "best" keyboard to propose, we don't display it, but in that case
+ we must not remove it from the list of proposed keyboards
+ (bugzilla #16873)
+
+2005-08-08 04:51 Pixel <pixel at mandriva.com>
+
+ * perl-install/bootloader.pm: catch error earlier (bugzilla #16993)
+ (doesn't really fix the pb as wanted in bugzilla report, but i've
+ not time for it)
+
+2005-08-08 04:28 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/list.xml: add mandriva macros for rpm so that
+ _hkp_keyserver_query is nil
+
+2005-08-08 03:36 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: really make the wizard banner icon a
+ warning instead of an error
+
+2005-08-08 03:30 Pixel <pixel at mandriva.com>
+
+ * perl-install/mygtk2.pm: more explicit error
+
+2005-08-08 03:25 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/list.xml: help debugging
+
+2005-08-08 03:19 Pixel <pixel at mandriva.com>
+
+ * perl-install/fsedit.pm: have the ability to prefer primary
+ partitions in auto_installs
+
+2005-08-08 03:18 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: cleanup "alternative IMs" already
+ listed with flag 5 (and anyway, warly says this listing of
+ "alternative IMs" is not the right way to achieve having them on
+ CDs)
+
+2005-08-08 03:13 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_steps.pm: acpi=on on every recent bios, not
+ only laptops
+
+2005-08-08 02:41 Pixel <pixel at mandriva.com>
+
+ * perl-install/: do_pkgs.pm, network/netconnect.pm,
+ standalone/drakgw: it's better to warn package installation
+ failure in ensure_is_installed than each callers (bugzilla
+ #17251)
+
+2005-08-08 02:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/install_any.pm: cleanup
+
+2005-08-07 02:06 Sharuzzaman Ahmat Raslan <sharuzzaman at myrealbox.com>
+
+ * perl-install/share/po/ms.po: Updated Malay translation
+
+2005-08-06 08:08 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakboot: translate "Graphical boot
+ mode:" (#17333)
+
+2005-08-06 06:56 Michal Bukovjan <bukovjan at mbox.dkm.cz>
+
+ * perl-install/share/po/cs.po: Updated Czech translations.
+
+2005-08-05 20:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix translation
+
+2005-08-05 20:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update (Berthy)
+
+2005-08-05 15:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: handle access point roaming
+ using wpa_supplicant
+
+2005-08-05 15:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: handle prefix
+
+2005-08-05 15:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: overwrite previous
+ wpa_supplicant entries with same ssid or bssid
+
+2005-08-05 14:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.41mdk
+
+2005-08-05 14:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: better handling for hex keys in
+ wpa_supplicant
+
+2005-08-05 10:27 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/scanner.pm: - Bug fixes in scanner::detect()
+ function o Fixed 'grep' filter to filter out non-scanner
+ devices by the "driver" field (in the very end of the
+ function) o Fixed franglish in a warning message - Suppressed
+ console message of "ls" in the scanner::resolve_symlinks()
+ function.
+
+2005-08-05 10:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/lang.pm: (configure_kdeglobals) fix kde config when
+ switching between ar && uz
+
+2005-08-05 09:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: do not detect PCI/USB modems
+ twice (as modems and as unknown devices)
+
+2005-08-05 07:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/ja.po: update (Yukiko Bando)
+
+2005-08-05 06:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: any.pm, bootloader.pm, detect_devices.pm,
+ install_any.pm, install_steps_gtk.pm, keyboard.pm, mouse.pm,
+ pkgs.pm, Xconfig/monitor.pm, Xconfig/resolution_and_depth.pm,
+ Xconfig/xfree.pm, diskdrake/interactive.pm, harddrake/sound.pm,
+ partition_table/raw.pm: move is_xbox from common to
+ detect_devices
+
+2005-08-05 05:08 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/keyboards.tar.bz2: keycode 211 is the abnt2
+ specific key, adding it (bugzilla #16942)
+
+2005-08-05 00:29 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: pl.po, pt_BR.po: updated Polish and
+ Brazilian files
+
+2005-08-04 21:12 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/printerdrake.pm: - Added special handling
+ for the "capt" driver (Canon LBP-810/1120 winprinters).
+
+2005-08-04 18:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: netconnect.pm, wireless.pm: allow to use
+ WEP keys in wpa_supplicant
+
+2005-08-04 18:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: use ifplugd for wireless
+ interfaces
+
+2005-08-04 18:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: make is_ifplugd_blacklisted
+ return a boolean
+
+2005-08-04 18:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: s/hotplug/ifplugd/
+
+2005-08-04 17:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: perl_checker fixes
+
+2005-08-04 12:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: netconnect.pm, tools.pm: use ifup/ifdown
+ with the boot option to handle ifplugd
+
+2005-08-04 09:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/data.pm: fix keyboardrake path (thus
+ enabling to run a config tool for keyboards)
+
+2005-08-04 09:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: do not offer to configure
+ driver of keyboards and mice (#17254)
+
+2005-08-04 09:16 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getUPS) blacklist all keyboards
+
+2005-08-04 08:53 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/: v4l.pm: (config) do not set radio but
+ for bttv driver
+
+2005-08-04 08:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksplash: make sure hex colors are 6
+ chars long
+
+2005-08-04 08:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/bootsplash.pm: load progress bar color from config
+ file
+
+2005-08-04 08:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: bootsplash.pm, standalone/draksplash: directly use
+ # as color prefix
+
+2005-08-04 07:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksplash: don't warn if automatic image
+ loading fails
+
+2005-08-04 07:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/bootsplash.pm: read progress bar settings
+
+2005-08-04 07:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/bootsplash.pm: really write progress bar color in
+ configuration files
+
+2005-08-04 07:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksplash: update progress bar
+ adjustments from preview
+
+2005-08-04 07:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksplash: fix progress bar color
+
+2005-08-04 07:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/v4l.pm: (config) do not set radio but for
+ bttv driver
+
+2005-08-04 07:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksplash: fix typo (really handle
+ progress bar color)
+
+2005-08-04 07:02 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksplash: make sure jpegtopnm is
+ available (thanks to Anne Nicolas)
+
+2005-08-04 07:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksplash: simplify
+
+2005-08-03 12:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: galaxy was renamed
+
+2005-08-03 11:50 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/xfree.pm: don't have empty ModeLines lying
+ around (bugzilla #16960)
+
+2005-08-03 10:43 Warly <warly at mandriva.com>
+
+ * kernel/: list_modules.pm, modules.pl: revert changes
+
+2005-08-03 10:39 Warly <warly at mandriva.com>
+
+ * perl-install/share/list.xml: revert changes
+
+2005-08-03 10:33 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Clarify client type
+ selection, fix cropped text in wizard.
+
+2005-08-03 10:32 Warly <warly at mandriva.com>
+
+ * Makefile, perl-install/authentication.pm: revert changes
+
+2005-08-03 10:14 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/standalone/autosetupprintqueues: - Fixed bug of
+ warning being issued when autosetupprintqueues is triggered
+ while no one is logged in on the X console (bug #17264). -
+ Removed logging into a file with constant name. This was only
+ there as an aid for the development.
+
+2005-08-03 10:05 Warly <warly at mandriva.com>
+
+ * Makefile, isolinux-graphic.bmp.parameters,
+ kernel/list_modules.pm, kernel/modules.pl,
+ perl-install/authentication.pm, perl-install/crypto.pm,
+ perl-install/share/list.xml: some x86_64 build fixes
+
+2005-08-03 09:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/list.xml: fix running drakx on x86_64
+
+2005-08-03 09:54 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Makefile: (get_needed_files) fix build on x86_64
+
+2005-08-03 09:37 Pixel <pixel at mandriva.com>
+
+ * perl-install/: install_gtk.pm, share/logo-mandrake.png,
+ share/logo-mandriva.png: - rename logo to have a mandriva name -
+ its size is bigger, so adapt to it
+
+2005-08-03 09:36 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/list.xml: we've multiple
+ /etc/gtk-2.0/gdk-pixbuf.loaders.* & /etc/gtk-2.0/gtk.immodules.*
+ on x86_64
+
+2005-08-03 09:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.40mdk
+
+2005-08-03 09:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * mdk-stage1/Makefile: fix build on x86_64
+
+2005-08-03 09:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_gtk.pm: use ctrl+alt+home instead of
+ ctrl+alt+del to restart install
+
+2005-08-03 09:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/drakx-in-chroot: make it work on x86_64 too
+
+2005-08-03 08:38 Pixel <pixel at mandriva.com>
+
+ * tools/install-xml-file-list: don't need /lib/tls files anymore
+ (since rpm works without nptl)
+
+2005-08-03 08:34 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * docs/HACKING: - update - make it arch neutral
+
+2005-08-03 08:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-08-03 07:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: apply gateway modifications
+ (#17260)
+
+2005-08-03 07:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: don't save configuration
+ dozens of times
+
+2005-08-03 07:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: use apply()
+
+2005-08-03 07:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: fix typo (#17253, me sux)
+
+2005-08-03 06:26 Pixel <pixel at mandriva.com>
+
+ * perl-install/timezone.pm: add some ntp servers from brazil
+ (bugzilla #16879)
+
+2005-08-03 05:29 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/: format.pm, type.pm: minimal (and quite hidden)
+ reiser4 support in diskdrake (bugzilla #15839)
+
+2005-08-03 05:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakconnect: remove deprecated code
+
+2005-08-03 04:24 Pixel <pixel at mandriva.com>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: suggest 1280x1024
+ instead of 1280x960 which causes pbs (backported from HEAD)
+
+2005-08-02 18:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_steps_gtk.pm: load xpad module for xbox
+ (Stew)
+
+2005-08-02 15:52 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/data.pm: - Removed automatic installation of
+ "hplip-hpijs-ppds" package, the PPDs in this package are
+ already generated with the installed Foomatic data.
+
+2005-08-02 15:34 Albert Astals Cid <astals11 at terra.es>
+
+ * perl-install/share/po/ca.po: updates
+
+2005-08-02 14:04 Warly <warly at mandriva.com>
+
+ * perl-install/share/rpmsrate: add kat in KDE
+
+2005-08-02 12:13 Warly <warly at mandriva.com>
+
+ * isolinux-graphic.bmp, isolinux-graphic.bmp.parameters: new logo
+
+2005-08-02 10:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/ga.po: update
+
+2005-08-02 09:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakgw: make sure shorewall gets enabled
+
+2005-08-02 08:11 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/data.pm: Made "desktop-printing" package
+ being installed automatically when CUPS is used with a local
+ daemon.
+
+2005-08-02 07:58 Pixel <pixel at mandriva.com>
+
+ * perl-install/share/rpmsrate: gdm (and so gdm-themes) is special,
+ but not gnome-icon-theme and the like
+
+2005-08-02 07:41 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: ip isn't localized
+
+2005-08-02 07:39 Warly <warly at mandriva.com>
+
+ * perl-install/share/logo-mandrake.png: new installation banner
+
+2005-08-02 07:31 Pixel <pixel at mandriva.com>
+
+ * perl-install/fs/: mount.pm, mount_options.pm: workaround missing
+ nls_xxx module during install differently
+
+2005-08-01 16:15 José JORGE <jjorge at free.fr>
+
+ * perl-install/share/po/pt.po: melo
+
+2005-08-01 10:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: don't package dbus stuff in
+ drakxtools-backend
+
+2005-08-01 10:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: don't package finish-install in
+ drakxtools-newt
+
+2005-08-01 08:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/crypto.pm: fix rediris.es paths (Yukiko Bando)
+
+2005-08-01 07:19 Frederic Crozat <fcrozat at mandriva.com>
+
+ * perl-install/share/rpmsrate: Fix GNOME default applications
+
+2005-08-01 07:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix ndiswrapper translation
+
+2005-07-31 16:04 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/share/po/zh_CN.po: Updated Simplified Chinese
+ translation
+
+2005-07-31 10:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: fix last commit
+
+2005-07-31 10:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/any.pm: (devfssymlinkf) do not write rules
+ conflicting with udev ones (blacklist dvd and mouse, only
+ accepting modem for now)
+
+2005-07-31 10:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-07-31 09:18 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: updated
+
+2005-07-30 11:29 Marek Laane <bald at starman.ee>
+
+ * perl-install/share/po/et.po:
+ Updated Estonian translation.
+
+2005-07-30 10:37 Sharuzzaman Ahmat Raslan <sharuzzaman at myrealbox.com>
+
+ * perl-install/share/po/ms.po: Updated Malay translation
+
+2005-07-29 15:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm, perl-install/harddrake/sound.pm: add new
+ snd-ad1889 driver from ALSA CVS
+
+2005-07-29 12:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: handle snd-riptide
+
+2005-07-29 12:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add new snd-riptide driver (from ALSA
+ CVS)
+
+2005-07-29 10:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: put wireless items in a
+ submenu
+
+2005-07-29 10:02 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: cy.po, ga.po: update
+
+2005-07-29 08:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: allow winmodems to be
+ configured
+
+2005-07-29 08:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: new sysfs structure
+
+2005-07-29 08:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ndiswrapper.pm: new sysfs structure
+
+2005-07-29 07:49 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ndiswrapper.pm: if sysfs is broken, don't
+ match
+
+2005-07-29 07:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakhosts: - perl_checker fixes - reuse
+ common - drop interactive dependancy
+
+2005-07-29 07:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/.perl_checker: blacklist constant
+
+2005-07-29 07:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakhosts: fix obvious bug, thus fixing
+ drakxtools build
+
+2005-07-29 07:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-07-29 07:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.39mdk
+
+2005-07-29 07:26 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: use mandriva
+
+2005-07-29 07:21 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: one more fix (drakconnect) in
+ 10.2-24.4.102mdk
+
+2005-07-29 07:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: test.pm, tools.pm: use mandriva.com
+ instead of mandrakesoft.com to test network connection
+
+2005-07-29 07:01 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.2-24.4.102mdk
+
+2005-07-29 07:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 24.3.102mdk was released for
+ globetrotter
+
+2005-07-29 06:59 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: install2.pm, install_steps_gtk.pm: merge in
+ globetrotter changes
+
+2005-07-29 06:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/Xconfig/card.pm: (install_server) install
+ alternative ATI driver if needed
+
+2005-07-29 06:30 Olivier Blin <oblin at mandriva.com>
+
+ * Makefile: merge xbox stuff to have the upload function declared,
+ but do not mix shell and Makefile syntax
+
+2005-07-29 06:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/share/po/fr.po: fix typo (spotted by François
+ Bandet)
+
+2005-07-29 06:13 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/drakhosts: fix i18n DrakX/drakhost pb
+ (pablo)
+
+2005-07-29 05:31 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: do not crash if automatic mode isn't used
+
+2005-07-29 05:28 rstandtke
+
+ * perl-install/share/po/de.po: some additions and fixes
+
+2005-07-29 04:22 Warly <warly at mandriva.com>
+
+ * perl-install/share/: compssUsers.pl, rpmsrate: add THEMES
+ category
+
+2005-07-28 12:06 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: don't corrupt the choice variable
+
+2005-07-28 12:02 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/tools.c: use thirdparty mode if the "thirdparty"
+ automatic keyword is specified
+
+2005-07-28 11:32 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/network.c: fix indentation
+
+2005-07-28 08:26 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/activefw.pm: don't needlessly swap bytes
+
+2005-07-28 08:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/: drakids, net_applet: simplify error
+ messages
+
+2005-07-28 07:18 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * Makefile: Fix make syntax error
+
+2005-07-28 06:57 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/: make_lang_png_transparent.c, shift_img.c: bump copyright
+ notices
+
+2005-07-28 06:48 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: emphasize if drivers are OSS or
+ ALSA based (#15902)
+
+2005-07-28 03:39 Frederic Crozat <fcrozat at mandriva.com>
+
+ * perl-install/share/rpmsrate: install xsettings-kde when
+ installing KDE
+
+2005-07-27 18:22 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/crypto.pm: oups; fixed bad change
+
+2005-07-27 18:20 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/: crypto.pm, lang.pm: fixed KDE font for extended
+ cyrillic languages
+
+2005-07-27 18:19 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, am.po, ar.po, az.po,
+ be.po, bg.po, bn.po, br.po, bs.po, ca.po, cs.po, cy.po, da.po,
+ de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po,
+ fur.po, ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po, is.po,
+ it.po, ja.po, ko.po, ky.po, lt.po, ltg.po, lv.po, mk.po, mn.po,
+ ms.po, mt.po, nb.po, nl.po, nn.po, pa_IN.po, pl.po, pt.po,
+ pt_BR.po, ro.po, ru.po, sc.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tl.po, tr.po, uk.po,
+ uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: updated pot
+ file
+
+2005-07-27 16:59 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: printer/main.pm, printer/printerdrake.pm,
+ standalone/printerdrake: - Added dialog to configure automatic
+ queue creating and automatic queue re-enabling
+
+2005-07-27 13:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/security/msec.pm: forward #14364/#15049 fix:
+
+ (load_values) fix getting value when it's defined but 0
+
+ (get_function_value) fix getting value when it's 0
+
+2005-07-27 12:58 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getUPS) blacklist all WingMan
+ devices (#16995)
+
+2005-07-27 12:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/detect_devices.pm: (getUPS) do not detect Logitech
+ devices as UPSes (#16994)
+
+2005-07-27 12:14 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakids: handle dbus failures
+
+2005-07-27 12:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: allow to run drakids
+
+2005-07-27 11:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: any.pm, bootloader.pm, devices.pm, fsedit.pm,
+ install2.pm, install_any.pm, fs/dmraid.pm, fs/type.pm,
+ partition_table/raw.pm: backport of dmraid support
+
+2005-07-27 11:40 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2005-07-27 11:38 Pixel <pixel at mandriva.com>
+
+ * Makefile: fix xbox upload
+
+2005-07-27 10:25 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/standalone/draknfs: corrected small typo
+
+2005-07-27 10:08 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/: printer/detect.pm, printer/printerdrake.pm,
+ standalone/autosetupprintqueues, standalone/printerdrake: -
+ Started implementation of configurable, partially interactive
+ print queue auto setup.
+
+2005-07-27 09:49 Till Kamppeter <till at mandriva.com>
+
+ * perl-install/printer/main.pm: - Fixed "config_sane()" function,
+ it did not add the backend name to /etc/sane.d/dll.conf
+
+2005-07-27 09:46 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.38mdk
+
+2005-07-27 07:54 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/share/rpmsrate: bd deserves better treatment.
+
+2005-07-27 07:14 Stew Benedict <sbenedict at mandriva.com>
+
+ * make_boot_img: remove unused xromwell sub
+
+2005-07-27 06:20 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (create_okcancel) enforce GNOME button
+ order when not under KDE (aka rollback old IHM team request since
+ they never achieved to complete the plan ie enforcing the same
+ button order in both GNOME and KDE)
+
+2005-07-26 14:13 Warly <warly at mandriva.com>
+
+ * perl-install/fs/mount_options.pm: workarround ntfs mount bug
+
+2005-07-26 13:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: don't write alias interfaces
+ in shorewall interfaces file
+
+2005-07-26 13:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/shorewall.pm: run shorewall clear if
+ firewall is stopped (#17046)
+
+2005-07-26 12:44 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/rpmsrate: install eva for chinese users (Funda
+ Wang)
+
+2005-07-26 10:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: fix variable declaration
+
+2005-07-26 10:10 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: kill(signal, <empty string>)
+ sends the signal to the calling process, avoid it
+
+2005-07-26 08:16 Olivier Blin <oblin at mandriva.com>
+
+ * make_boot_img: mandriva switch
+
+2005-07-26 08:10 Olivier Blin <oblin at mandriva.com>
+
+ * help.msg.xml: mandriva switch
+
+2005-07-26 07:14 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-07-26 06:10 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: no_all_squash as default
+
+2005-07-25 09:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/ja.po: update (Yukiko Bando)
+
+2005-07-25 09:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: revert wrong fix (DESKTOP contains
+ KDE when xinit.d scripts are run)
+
+2005-07-25 08:19 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/share/po/is.po: Sync of messages
+
+2005-07-25 04:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: fix alps touchpads detection
+
+2005-07-25 04:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/: gencryptofiles, genmodparm, hd_grub.cgi: last mdk->mdv
+ switches
+
+2005-07-25 04:07 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/: gencryptofiles, genmodparm, make_lang_png_transparent.c,
+ shift_img.c, syncrpms: fix email addressses in copyright and bump
+ them
+
+2005-07-25 04:04 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/mailchangelog.pl: fix ml addresss
+
+2005-07-25 04:00 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * tools/: cvslog2changelog.pl, mailchangelog.pl: fix email
+ addressses
+
+2005-07-24 05:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: wait a second for ifplugd to be
+ actually killed
+
+2005-07-24 05:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: write hosts in correct order in
+ /etc/hosts
+
+2005-07-23 12:19 Sharuzzaman Ahmat Raslan <sharuzzaman at myrealbox.com>
+
+ * perl-install/share/po/ms.po: Updated Malay translation
+
+2005-07-22 14:08 Funda Wang <fundawang at linux.net.cn>
+
+ * perl-install/Xconfig/resolution_and_depth.pm: Adopt to new
+ mandriva-theme package naming schema, see bug#16977.
+
+2005-07-22 12:30 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/: network.c, doc/TECH-INFOS: if interface is "auto",
+ try to detect the first interface with a link beat
+
+2005-07-22 06:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: really use ap address for
+ hidden ssid
+
+2005-07-22 06:25 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: split
+
+2005-07-22 06:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: use has_wireless
+
+2005-07-22 06:00 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: improve User id mapping, keep 4
+ options (no_all_squash is the default one)
+
+2005-07-22 05:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: simplify
+
+2005-07-22 05:56 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: run drakroam to configure a
+ wireless network when selected (if not already configured)
+
+2005-07-22 05:55 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: use run_program
+
+2005-07-22 05:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: select a wireless network for
+ association on click
+
+2005-07-22 05:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/monitor.pm: allow to select a wireless
+ network
+
+2005-07-22 05:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/monitor.pm: add some comments, use
+ meaningfull variable names
+
+2005-07-22 05:08 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: remove duplicate entry in access
+ list
+
+2005-07-22 05:07 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/monitor.pm: use ssid from configuration if
+ found for the MAC address (useful for hidden essid)
+
+2005-07-22 05:05 Frederic Crozat <fcrozat at mandriva.com>
+
+ * perl-install/share/rpmsrate: mandrake_desk is now
+ desktop-common-data
+
+2005-07-21 13:55 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/harddrake/sound.pm: typo fix (#16944)
+
+2005-07-21 11:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: write module aliases if needed
+
+2005-07-21 11:50 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: revert, that's not needed after all
+
+2005-07-21 11:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/c/stuff.xs.pl: add volume_set_id
+
+2005-07-21 11:35 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/: adsl.pm, isdn.pm, netconnect.pm: don't use
+ global $in (fix ISDN configuration)
+
+2005-07-21 08:23 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: show only users/group ID > 500,
+ fix secure label.
+
+2005-07-21 08:12 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/drakhosts: remove "apply" button (not
+ really needed)
+
+2005-07-21 05:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/pxe.pm: don't translate vga resolution
+
+2005-07-20 14:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: enable activefw by default
+ and catch errors
+
+2005-07-20 14:03 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: add bug reference in 10.3-0.37mdk's
+ changelog
+
+2005-07-20 13:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/activefw.pm: new dbus naming scheme
+
+2005-07-20 13:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: handle activefw init
+
+2005-07-20 13:31 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: icons are really nicer with
+ 24x24 resolution
+
+2005-07-20 08:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/monitor.pm: get network ids and current
+ network
+
+2005-07-20 08:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: show active wireless network
+ in the menu
+
+2005-07-20 06:40 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: use $0 instead of hardcoded
+ path
+
+2005-07-20 06:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: use
+ wpa_supplicant_add_network_simple
+
+2005-07-20 06:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/wireless.pm: allow to read/write
+ wpa_supplicant config files
+
+2005-07-19 15:35 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/ugtk2.pm: (create_dialog) make dialogs transient if
+ possible
+
+2005-07-19 15:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.37mdk
+
+2005-07-19 15:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draknfs: fix phrasing
+
+2005-07-19 15:24 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: harddrake2, printerdrake: do not draw a
+ border around the main window while embedded
+
+2005-07-19 15:23 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/mygtk2.pm: (_gtk__MagicWindow) fix layout for
+ programms embedded with their menubar through the newly
+ introduced $::noborderWhenEmbedded flag
+
+2005-07-19 12:27 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * perl-install/mygtk2.pm: Don't put a border around embbeded
+ rpmdrake
+
+2005-07-19 11:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/thirdparty.pm: fix ipw data structure and
+ add firmware url
+
+2005-07-19 10:49 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: remove ipnet/32 in access_list
+
+2005-07-19 07:50 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: really reap zombie children;
+ side-effect: we can now run a second config tool again (#16851)
+
+2005-07-19 07:47 Willy Sudiarto Raharjo <willysr at gmail.com>
+
+ * perl-install/share/po/id.po: Updated
+
+2005-07-19 07:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/harddrake2: let's work with "perl -w"
+
+2005-07-18 14:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: drakxtools.spec, Makefile.config: add drakids
+
+2005-07-18 13:52 Olivier Blin <oblin at mandriva.com>
+
+ * mdk-stage1/pci-resource/update-pci-ids.pl: add pcmcia network
+ card ids in the pci table, so that cardbus card get a chance to
+ be automatically loaded
+
+2005-07-18 13:37 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: cy.po, ga.po: update
+
+2005-07-18 13:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: cy.po, ga.po: update
+
+2005-07-18 12:53 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: remove useless test
+
+2005-07-18 12:52 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/br.po: update
+
+2005-07-18 12:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: fix typo
+
+2005-07-18 12:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: update menu if interface has
+ been modified
+
+2005-07-18 12:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: factorize code to
+ netMonitor() and use $current_interface
+
+2005-07-18 12:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/fr.po: update
+
+2005-07-18 12:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: really check for new version
+
+2005-07-18 12:36 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: check for new version every
+ minute instead of every 2 seconds
+
+2005-07-18 12:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: simplify
+
+2005-07-18 12:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: don't use actions submenu
+ when no wireless network is detected
+
+2005-07-18 12:30 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: use common::md5file
+
+2005-07-18 12:29 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/: DrakX.pot, af.po, am.po, ar.po, az.po,
+ be.po, bg.po, bn.po, br.po, bs.po, ca.po, cs.po, cy.po, da.po,
+ de.po, el.po, eo.po, es.po, et.po, eu.po, fa.po, fi.po, fr.po,
+ fur.po, ga.po, gl.po, he.po, hi.po, hr.po, hu.po, id.po, is.po,
+ it.po, ja.po, ko.po, ky.po, lt.po, ltg.po, lv.po, mk.po, mn.po,
+ ms.po, mt.po, nb.po, nl.po, nn.po, pa_IN.po, pl.po, pt.po,
+ pt_BR.po, ro.po, ru.po, sc.po, sk.po, sl.po, sq.po, sr.po,
+ sr@Latn.po, sv.po, ta.po, tg.po, th.po, tl.po, tr.po, uk.po,
+ uz.po, uz@Latn.po, vi.po, wa.po, zh_CN.po, zh_TW.po: update
+ strings from CVS
+
+2005-07-18 12:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/common.pm: import md5file from
+ net_applet/mdkonline/userdrake
+
+2005-07-18 12:18 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: fix 10.3-0.36mdk's changelog
+
+2005-07-18 12:17 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.36mdk
+
+2005-07-18 10:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_steps.pm: do not die and loop on the
+ exitInstall step if the install images can't be saved (#16881)
+
+2005-07-18 09:37 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draksplash: do not die if loaded file
+ isn't an image (#16829)
+
+2005-07-18 09:23 Pablo Saratxaga <pablo at mandriva.com>
+
+ * perl-install/share/po/eu.po: updated Basque file
+
+2005-07-18 08:54 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: require perl-Net-DBus (for
+ net_applet and drakids)
+
+2005-07-18 08:26 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: KDE is now lowercased in the
+ DESKTOP variable
+
+2005-07-18 08:06 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/ethernet.pm: get_eth_card_mac_address:
+ handle firewire mac_addresses again
+
+2005-07-18 07:11 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * kernel/list_modules.pm: add qla2xxx
+
+2005-07-18 05:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakhosts: (add_modify_entry) improve
+ layout (especially hidden buttons)
+
+2005-07-18 05:28 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draknfs: advanced help: - ensure labels
+ are named the same way on buttons and in help (and thus that
+ help is consistent with the GUI, which wasn't), and speak about
+ labels not actual option names in config file, - split in small
+ paragraphs in order to ease translators' job - fix text phrasing
+ - improve layout
+
+2005-07-18 05:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/draknfs: (help_b) fix displaying help the
+ second time
+
+2005-07-18 05:27 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/: drakhosts, draknfs: make sub dialogs
+ modal and transcient to their main window
+
+2005-07-18 04:44 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakxtv: really show a warning if no tv
+ card is detected
+
+2005-07-17 12:26 Karl Ove Hufthammer <karl at huftis.org>
+
+ * perl-install/share/po/nn.po: Updated translation.
+
+2005-07-15 11:58 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/draknfs: don't translate the empty string
+
+2005-07-15 11:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.35mdk
+
+2005-07-15 10:42 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: rescale pixbufs to 16x16, use
+ default.png if wifi- images aren't available
+
+2005-07-15 10:28 Warly <warly at mandriva.com>
+
+ * perl-install/install_any.pm: workarround problem in supplementary
+ media
+
+2005-07-15 10:11 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/monitor.pm: new naming scheme
+
+2005-07-15 07:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: don't add submenu if only one
+ choice exists (and really do it)
+
+2005-07-15 07:23 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: don't show choices menus if
+ only one choice is possible
+
+2005-07-15 07:19 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: put settings and actions in
+ submenus when needed
+
+2005-07-14 14:30 Shiva Huang <blueshiva at giga.net.tw>
+
+ * perl-install/share/po/zh_TW.po: updated po files
+
+2005-07-14 05:21 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: new translations
+
+2005-07-13 16:24 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/tools.pm: don't have a random result, sort
+
+2005-07-13 11:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: handle signal levels greater
+ than 100
+
+2005-07-13 11:28 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: don't try to remove newly
+ added widgets
+
+2005-07-13 10:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: remove spurious spaces
+
+2005-07-13 10:47 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: po fix
+
+2005-07-13 10:46 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: simplify
+
+2005-07-13 10:43 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: don't destroy wireless
+ menuitems on menu destroy
+
+2005-07-13 08:34 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: show wireless options only if
+ a wireless card is present
+
+2005-07-13 08:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakroam: use
+ detect_devices::has_wireless()
+
+2005-07-13 08:32 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/detect_devices.pm: add has_wireless
+
+2005-07-13 08:29 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: fix typo
+
+2005-07-13 08:05 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: reorganize interface
+
+2005-07-13 07:52 Per Øyvind Karlsen <peroyvind at mandriva.org>
+
+ * perl-install/share/po/nb.po: new strings translated
+
+2005-07-13 07:04 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/network.pm: make net_applet reload the
+ configuration
+
+2005-07-13 05:52 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: first draft of wireless
+ support
+
+2005-07-13 05:51 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/monitor.pm: initial import
+
+2005-07-13 05:48 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/: network/activefw.pm, standalone/drakids,
+ standalone/net_applet: use dbus_object;
+
+2005-07-13 05:45 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/dbus_object.pm: initial import
+
+2005-07-13 03:20 Warly <warly at mandriva.com>
+
+ * Makefile.config: fix Mandrakiva typo
+
+2005-07-13 00:41 Sharuzzaman Ahmat Raslan <sharuzzaman at myrealbox.com>
+
+ * perl-install/share/po/ms.po: Updated Malay translation
+
+2005-07-12 15:24 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/drakhosts: various improvements in GUI
+
+2005-07-12 12:43 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: add an entry in menu to
+ write_conf
+
+2005-07-12 12:40 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: add a popup with users and
+ groups when using anonuid and anongid (FACORAT Fabrice idea)
+
+2005-07-12 08:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakgw: fix bad phrasing
+
+2005-07-12 08:22 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakgw: move wait message after package
+ installation (or else the interface isn't active)
+
+2005-07-12 07:55 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: move menu above banner, use
+ expander to show/hide advanced options, remove empty value in
+ advanced option, change draknfs tittle (thx Facorat fabrice)
+
+2005-07-12 06:09 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: typo fix
+
+2005-07-12 06:07 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: add exit on ok button
+
+2005-07-12 03:28 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: ensure nfs-utils is installed
+
+2005-07-11 20:06 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: Add/remove entries to
+ default PXE config.
+
+2005-07-11 11:00 Warly <warly at mandriva.com>
+
+ * make_boot_img: s/Mandrakelinux/Mandriva/ for bootsplash
+
+2005-07-11 10:23 Warly <warly at mandriva.com>
+
+ * Makefile.config: update to 2006
+
+2005-07-11 10:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakids: perl_checker fixes
+
+2005-07-11 10:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakids: use standalone
+
+2005-07-11 10:00 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/drakids: remove interface tests, this is
+ filtered before
+
+2005-07-11 09:57 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/standalone/net_applet: remove interface tests, this
+ is filtered before
+
+2005-07-11 09:03 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/activefw.pm: Mandrakesoft -> Mandriva in
+ DBus names
+
+2005-07-11 09:01 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/activefw.pm: don't use undefined variable
+
+2005-07-11 08:21 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.34mdk
+
+2005-07-11 05:20 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: really write modem/adsl ifcfg
+ files (fix ONBOOT setting)
+
+2005-07-11 05:09 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/network/netconnect.pm: don't restart network service
+ at drakconnect startup
+
+2005-07-08 17:24 Stew Benedict <sbenedict at mandriva.com>
+
+ * perl-install/standalone/drakTermServ: don't try to manipulate PXE
+ stuff if the directory isn't present
+
+2005-07-08 16:41 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: always display ok_cancel button
+
+2005-07-08 16:39 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: add a checkbox to enable/disable
+ advanced options
+
+2005-07-08 12:19 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakedm: do not write in /nohup.out
+ (#16768)
+
+2005-07-08 10:42 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/drakxtools.spec: 10.3-0.33mdk
+
+2005-07-08 10:38 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/: lvm.pm, scanner.pm, network/ipsec.pm,
+ printer/cups.pm, printer/main.pm, printer/printerdrake.pm: reduce
+ the overall perl_checker warnings
+
+2005-07-08 09:33 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/share/po/ja.po: update
+
+2005-07-08 08:27 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_steps.pm: don't open any port by default in
+ the firewall
+
+2005-07-08 08:20 Antoine Ginies <aginies at mandriva.com>
+
+ * perl-install/standalone/draknfs: various adjustement in main
+ windows
+
+2005-07-08 08:16 Olivier Blin <oblin at mandriva.com>
+
+ * perl-install/install_steps.pm: always enable firewall if security
+ level >= 3 (even if no ports have to be opened)
+
+2005-07-07 18:05 Pjetur G. Hjaltason <pjetur at pjetur.net>
+
+ * perl-install/share/po/is.po: Latest updates
+
+2005-07-07 16:22 Thierry Vignaud <tvignaud at mandriva.com>
+
+ * perl-install/standalone/drakvpn: fix untranslated strings
+ (#16736)
+
+2005-07-07 16:16 Stew Benedict <sbenedict at mandriva.com>